Compare commits
122 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
05a48ef125 | |
|
|
81442f521c | |
|
|
67dc851fd0 | |
|
|
04913bf8b4 | |
|
|
431d8244b9 | |
|
|
731810a0b2 | |
|
|
ce163f1bd0 | |
|
|
65ff769712 | |
|
|
7676ee45c3 | |
|
|
13e07788c3 | |
|
|
93b3065760 | |
|
|
e627358800 | |
|
|
f3907549c0 | |
|
|
d08e74d508 | |
|
|
6caffc027f | |
|
|
5ca6b4261c | |
|
|
26f2baf371 | |
|
|
816584d751 | |
|
|
bd6a9cdb28 | |
|
|
88a59ef567 | |
|
|
725e0a0c83 | |
|
|
72b17970f1 | |
|
|
0214421522 | |
|
|
bee46d591d | |
|
|
50b00b0d9d | |
|
|
32d0f1ee53 | |
|
|
3a4600cd30 | |
|
|
a21622a82a | |
|
|
cff2623eb2 | |
|
|
290b84eb53 | |
|
|
f20be8bedc | |
|
|
2d88b9ec79 | |
|
|
468c8e7b1f | |
|
|
d65f32d9f1 | |
|
|
d377893d9f | |
|
|
9618f0c4d4 | |
|
|
888f22cd21 | |
|
|
809f6d3f0f | |
|
|
f31f35a717 | |
|
|
70e23381ad | |
|
|
d6ed6eaae0 | |
|
|
120663aa05 | |
|
|
955b9205fd | |
|
|
be61a18045 | |
|
|
00b28ebdec | |
|
|
fe16c8e9dc | |
|
|
4fc03629b2 | |
|
|
ce495514e1 | |
|
|
7387db734f | |
|
|
9d758fe456 | |
|
|
c611da8a15 | |
|
|
add9c2ad31 | |
|
|
599571424d | |
|
|
65b8848ff9 | |
|
|
5a2e699eb7 | |
|
|
b4454775dd | |
|
|
80e141384d | |
|
|
59839f91e4 | |
|
|
da171354d4 | |
|
|
9be9d310f4 | |
|
|
a6a0bd630e | |
|
|
4284bc78bc | |
|
|
73dd1e89fd | |
|
|
68e8a18dc1 | |
|
|
fddc7cd1e2 | |
|
|
3f6e005d05 | |
|
|
d545362250 | |
|
|
91ab817865 | |
|
|
7345335cc0 | |
|
|
ee8238297e | |
|
|
d0f28c519a | |
|
|
fb8711bdff | |
|
|
367371aac6 | |
|
|
cda1bbbbcc | |
|
|
b3410a0241 | |
|
|
5b338f0cbc | |
|
|
3fb2ebda49 | |
|
|
04bc2b3610 | |
|
|
6081d41904 | |
|
|
b105f2c31a | |
|
|
0fefe175b3 | |
|
|
9d77c29c2c | |
|
|
9fa7f1e55b | |
|
|
c23fc68f25 | |
|
|
1332c15217 | |
|
|
87fd9f385a | |
|
|
a9c047dfc0 | |
|
|
83976886f6 | |
|
|
1d8279345e | |
|
|
b968087637 | |
|
|
6cfb9aba46 | |
|
|
35841b5899 | |
|
|
4e5c37c017 | |
|
|
bc3a6eaa3b | |
|
|
78fccaa520 | |
|
|
996af1a1a9 | |
|
|
58f4534c92 | |
|
|
8ec72aeef9 | |
|
|
38e3cc14be | |
|
|
553522e30c | |
|
|
6ab28edbfb | |
|
|
88bd12d1af | |
|
|
3a01bae5e6 | |
|
|
09e10948c3 | |
|
|
8df23f459d | |
|
|
bed8dbf3b9 | |
|
|
a505059b54 | |
|
|
f6f23e5169 | |
|
|
4b1e714cf8 | |
|
|
0f2c010bf8 | |
|
|
e0d36238e5 | |
|
|
e6dd474f22 | |
|
|
096e9939e5 | |
|
|
44bf1633ce | |
|
|
9ad1443b0b | |
|
|
4259087590 | |
|
|
374b679186 | |
|
|
33e531f734 | |
|
|
410bd874aa | |
|
|
12bdf18b15 | |
|
|
3120a8d784 | |
|
|
cf84e0f544 |
|
|
@ -0,0 +1,13 @@
|
|||
name: apiCheck
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
api-check:
|
||||
uses: linuxdeepin/.github/.github/workflows/api-check.yml@master
|
||||
secrets: inherit
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
name: Auto Release
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: 'Release version (e.g., 1.0.0)'
|
||||
type: string
|
||||
required: false
|
||||
name:
|
||||
description: 'The name of the person to release the version'
|
||||
type: string
|
||||
required: false
|
||||
email:
|
||||
description: 'The email of the person to release the version'
|
||||
type: string
|
||||
required: false
|
||||
timezone:
|
||||
description: 'The timezone in the debian changelog file'
|
||||
required: false
|
||||
type: string
|
||||
default: 'Asia/Shanghai'
|
||||
workflow_call:
|
||||
inputs:
|
||||
version:
|
||||
description: 'Release version (e.g., 1.0.0)'
|
||||
type: string
|
||||
required: true
|
||||
name:
|
||||
description: 'The name of the person to release the version'
|
||||
type: string
|
||||
required: false
|
||||
email:
|
||||
description: 'The email of the person to release the version'
|
||||
type: string
|
||||
required: false
|
||||
timezone:
|
||||
description: 'The timezone in the debian changelog file'
|
||||
required: false
|
||||
type: string
|
||||
default: 'Asia/Shanghai'
|
||||
|
||||
jobs:
|
||||
auto_release:
|
||||
uses: linuxdeepin/.github/.github/workflows/auto-release.yml@master
|
||||
secrets: inherit
|
||||
with:
|
||||
version: ${{ inputs.version }}
|
||||
name: ${{ inputs.name }}
|
||||
email: ${{ inputs.email }}
|
||||
timezone: ${{ inputs.timezone }}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
name: debianCheck
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
debian-check:
|
||||
uses: linuxdeepin/.github/.github/workflows/debian-check.yml@master
|
||||
secrets: inherit
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
name: staticCheck
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
static-check:
|
||||
uses: linuxdeepin/.github/.github/workflows/static-check.yml@master
|
||||
secrets: inherit
|
||||
|
|
@ -16,13 +16,6 @@ test_build:
|
|||
- x86_64
|
||||
- aarch64
|
||||
|
||||
- name: debian
|
||||
paths:
|
||||
- target_project: deepin:CI
|
||||
target_repository: debian_sid
|
||||
architectures:
|
||||
- x86_64
|
||||
|
||||
- name: archlinux
|
||||
paths:
|
||||
- target_project: deepin:CI
|
||||
|
|
|
|||
16
.reuse/dep5
16
.reuse/dep5
|
|
@ -4,7 +4,7 @@ Upstream-Contact: UnionTech Software Technology Co., Ltd. <>
|
|||
Source: https://github.com/linuxdeepin/dtkwidget
|
||||
|
||||
# ci
|
||||
Files: .github/* .gitlab-ci.yml output/results.txt .obs/*
|
||||
Files: .github/* .gitlab-ci.yml output/results.txt .obs/* .tx/*
|
||||
Copyright: None
|
||||
License: CC0-1.0
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ Copyright: None
|
|||
License: CC0-1.0
|
||||
|
||||
# xml toml json conf yaml
|
||||
Files: *.toml *.json *conf *.yaml
|
||||
Files: *.toml *.json *conf *.yaml .tx/transifex.yaml
|
||||
Copyright: None
|
||||
License: CC0-1.0
|
||||
|
||||
|
|
@ -54,7 +54,7 @@ Copyright: 2023 deepin doc doc go SIG
|
|||
License: CC-BY-4.0
|
||||
|
||||
# Project file
|
||||
Files: *.pro *.prf *.pri *.qrc *CMakeLists.txt *.cmake *.in
|
||||
Files: *.pro *.prf *.pri *.qrc *CMakeLists.txt *.cmake *.in VERSION
|
||||
Copyright: None
|
||||
License: CC0-1.0
|
||||
|
||||
|
|
@ -97,3 +97,13 @@ License: LGPL-3.0-or-later
|
|||
Files: tests/data/*
|
||||
Copyright: None
|
||||
License: CC0-1.0
|
||||
|
||||
|
||||
Files: toolGenerate/**/*
|
||||
Copyright: None
|
||||
License: CC0-1.0
|
||||
|
||||
# translations
|
||||
Files: */translations/*.ts
|
||||
Copyright: UnionTech Software Technology Co., Ltd.
|
||||
License: LGPL-3.0-or-later
|
||||
|
|
|
|||
|
|
@ -9,3 +9,5 @@
|
|||
# are always ignored
|
||||
linglong.yaml
|
||||
conanfile.py
|
||||
VERSION
|
||||
CHANGELOG.md
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
minimum_perc = 80
|
||||
mode = developer
|
||||
|
||||
[o:linuxdeepin:p:deepin-tool-kit:r:dwidget]
|
||||
|
||||
[o:linuxdeepin:p:deepin-tool-kit:r:656c086e604038efa2bb99f59767da6f]
|
||||
file_filter = src/translations/dtkwidget_<lang>.ts
|
||||
source_file = src/translations/dtkwidget.ts
|
||||
source_lang = en
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
filters:
|
||||
- filter_type: file
|
||||
source_file: src/translations/dtkwidget.ts
|
||||
file_format: QT
|
||||
source_language: en
|
||||
translation_files_expression: src/translations/dtkwidget_<lang>.ts
|
||||
settings:
|
||||
pr_branch_name: transifex_update_<br_unique_id>
|
||||
104
CHANGELOG.md
104
CHANGELOG.md
|
|
@ -1,3 +1,107 @@
|
|||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [5.7.25] - 2025-10-30
|
||||
|
||||
### Added
|
||||
|
||||
- Add support for custom line edit icon margin
|
||||
|
||||
### Changed
|
||||
|
||||
- Improve navigation widget styling
|
||||
|
||||
### Fixed
|
||||
|
||||
- Correct button order in settings dialog
|
||||
- Handle font change events in dialog
|
||||
- Adjust feature item widget height calculation
|
||||
- Improve dialog sizing and remove unused event filter
|
||||
|
||||
## [5.7.24] - 2025-10-16
|
||||
|
||||
### Added
|
||||
|
||||
- Support Qt 6.10
|
||||
|
||||
### Changed
|
||||
|
||||
- Translate dtkwidget.ts in sq
|
||||
|
||||
### Fixed
|
||||
|
||||
- Clear DCi icon state when setting other icon types
|
||||
|
||||
## [5.7.23] - 2025-09-25
|
||||
|
||||
### Changed
|
||||
|
||||
- Enhance window effect support detection
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix search icon color inconsistency in DSearchEdit
|
||||
|
||||
## [5.7.22] - 2025-09-04
|
||||
|
||||
### Changed
|
||||
|
||||
- I18n: [dtkwidget] Updates for project Deepin Tool Kit (#681)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Prevent potential tab index out of bounds crash
|
||||
|
||||
## [5.7.21] - 2025-08-14
|
||||
|
||||
### Changed
|
||||
|
||||
- Revert "fix: prevent itemSpacing override in setBackgroundType"
|
||||
- Update translation configurations and translations
|
||||
- I18n: [dtkwidget] Updates for project Deepin Tool Kit (#677)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Prevent background type from overriding custom item spacing
|
||||
- Update transifex configuration
|
||||
- Resolve various compilation warnings
|
||||
|
||||
## [5.7.20] - 2025-07-31
|
||||
|
||||
### Added
|
||||
|
||||
- Add debian check workflow
|
||||
|
||||
### Fixed
|
||||
|
||||
- Prevent itemSpacing override in setBackgroundType
|
||||
- Resolve Qt6 compatibility issues
|
||||
|
||||
## [5.7.19] - 2025-07-03
|
||||
|
||||
### Added
|
||||
|
||||
- Add security hardening flags and optimize build settings
|
||||
|
||||
## [5.7.18] - 2025-06-27
|
||||
|
||||
### Fixed
|
||||
|
||||
- Make version optional in release workflow and update spec file
|
||||
|
||||
## [5.7.17] - 2025-06-19
|
||||
|
||||
### Changed
|
||||
|
||||
- Support VERSION file
|
||||
- Add auto release workflow
|
||||
- Update window control icons and drawing logic
|
||||
- Update .syncexclude
|
||||
|
||||
<a name="2.0.14"></a>
|
||||
## 2.0.14 (2019-05-23)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
cmake_minimum_required(VERSION 3.13)
|
||||
|
||||
set(DTK_VERSION
|
||||
"5.6.12"
|
||||
CACHE STRING "define project version"
|
||||
)
|
||||
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" DTK_FILE_VERSION)
|
||||
string(STRIP "${DTK_FILE_VERSION}" DTK_FILE_VERSION)
|
||||
set(DTK_VERSION "${DTK_FILE_VERSION}" CACHE STRING "define project version")
|
||||
|
||||
project(DtkWidget
|
||||
VERSION ${DTK_VERSION}
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
@version@
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Maintainer: justforlxz <justforlxz@gmail.com>
|
||||
pkgname=dtkwidget-git
|
||||
pkgver=5.5.45.r1.gbc050fca
|
||||
pkgver=5.7.25
|
||||
pkgrel=1
|
||||
sourcename=dtkwidget
|
||||
sourcetars=("$sourcename"_"$pkgver".tar.xz)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,254 @@
|
|||
dtkwidget (5.7.25) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.25
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 30 Oct 2025 21:45:45 +0800
|
||||
|
||||
dtkwidget (5.7.24) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.24
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 16 Oct 2025 19:45:32 +0800
|
||||
|
||||
dtkwidget (5.7.23) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.23
|
||||
|
||||
-- yeshanshan <packages@deepin.org> Thu, 25 Sep 2025 16:49:19 +0800
|
||||
|
||||
dtkwidget (5.7.22) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.22
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 04 Sep 2025 19:27:01 +0800
|
||||
|
||||
dtkwidget (5.7.21) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.21
|
||||
|
||||
-- yeshanshan <packages@deepin.org> Thu, 14 Aug 2025 19:48:07 +0800
|
||||
|
||||
dtkwidget (5.7.20) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.20
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 31 Jul 2025 19:59:37 +0800
|
||||
|
||||
dtkwidget (5.7.19) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.19
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 03 Jul 2025 21:12:54 +0800
|
||||
|
||||
dtkwidget (5.7.18) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.18
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Fri, 27 Jun 2025 17:08:45 +0800
|
||||
|
||||
dtkwidget (5.7.17) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.17
|
||||
|
||||
-- yeshanshan <yeshanshan@uniontech.com> Thu, 19 Jun 2025 10:06:50 +0800
|
||||
|
||||
dtkwidget (5.7.16) unstable; urgency=medium
|
||||
|
||||
* Release 5.7.16
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Mon, 19 May 2025 17:22:07 +0800
|
||||
|
||||
dtkwidget (5.7.15) unstable; urgency=medium
|
||||
|
||||
* fix: correct text elision behavior with shortcuts
|
||||
* style: adjust website link style in about dialog
|
||||
* chore: reuse warning
|
||||
* fix: watermark can't select picture for PrintPreivew
|
||||
* build: compiling failed with Qt 6.9
|
||||
* chore: bump version to 5.7.14
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 08 May 2025 17:53:16 +0800
|
||||
|
||||
dtkwidget (5.7.14) unstable; urgency=medium
|
||||
|
||||
* fix: wheel event is accepted in qt6
|
||||
* fix: 修复SwitchButton在透明窗口上显示时颜色太亮,太突兀的问题
|
||||
* fix: DToolTip宽度计算
|
||||
* fix: DFloatingMessage宽度计算
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 17 Apr 2025 21:51:46 +0800
|
||||
|
||||
dtkwidget (5.7.13) unstable; urgency=medium
|
||||
|
||||
* fix: accessing wild pointer for DAboutDialog
|
||||
* feat: increase fallback for password character
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 20 Mar 2025 17:06:12 +0800
|
||||
|
||||
dtkwidget (5.7.12) unstable; urgency=medium
|
||||
|
||||
* fix: failed to save too long filename for DPrintPreviewWidget
|
||||
* chore: remove warning in qt6
|
||||
* feat: Add files generated by qdbusXML2cpp and DCONG2cpp
|
||||
* doc: update docs for dwatermarkhelper
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 06 Mar 2025 17:29:50 +0800
|
||||
|
||||
dtkwidget (5.7.11) unstable; urgency=medium
|
||||
|
||||
* fix: window filickering caused by animation for DDrawer
|
||||
* fix: app crashed for DBlurEffectWidget in qt6
|
||||
* fix: titlebar can't drag after close DAboutDialog
|
||||
* fix: PrintPreview can't switch orientation
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 27 Feb 2025 20:47:56 +0800
|
||||
|
||||
dtkwidget (5.7.10) unstable; urgency=medium
|
||||
|
||||
* fix: 修复 桌面/文管文件,打开属性窗口闪烁
|
||||
|
||||
-- YeShanShan <yeshanshan@uniontech.com> Thu, 13 Feb 2025 17:18:34 +0800
|
||||
|
||||
dtkwidget (5.7.9) unstable; urgency=medium
|
||||
|
||||
* fix: missing QT_QPA_PLATFORM for DApplication
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 23 Jan 2025 09:07:09 +0000
|
||||
|
||||
dtkwidget (5.7.8) unstable; urgency=medium
|
||||
|
||||
* fix: access wild pointer for targetWindowHandle
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Tue, 14 Jan 2025 11:17:32 +0000
|
||||
|
||||
dtkwidget (5.7.7) unstable; urgency=medium
|
||||
|
||||
[ root ]
|
||||
* UNRELEASED
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 09 Jan 2025 09:28:39 +0000
|
||||
|
||||
dtkwidget (5.7.6) unstable; urgency=medium
|
||||
|
||||
* fix: resident floating message cannot be closed(Bug: 297669)
|
||||
* fix: 调整滑动条横条和刻度颜色(Bug: 254295)(Influence: 调整滑动条横条和刻度颜色)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 02 Jan 2025 05:43:53 +0000
|
||||
|
||||
dtkwidget (5.7.5) unstable; urgency=medium
|
||||
|
||||
* fix: webengineView abnormal in DMainWindow
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 12 Dec 2024 03:03:54 +0000
|
||||
|
||||
dtkwidget (5.7.4) unstable; urgency=medium
|
||||
|
||||
* fix: ddialog's lambda func may cause segfault
|
||||
* fix: some windows have dual title bars
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Tue, 03 Dec 2024 02:00:46 +0000
|
||||
|
||||
dtkwidget (5.7.3) unstable; urgency=medium
|
||||
|
||||
[ root ]
|
||||
* UNRELEASED
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Wed, 20 Nov 2024 02:19:06 +0000
|
||||
|
||||
dtkwidget (5.7.2) unstable; urgency=medium
|
||||
|
||||
[ root ]
|
||||
* UNRELEASED
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Wed, 13 Nov 2024 01:53:26 +0000
|
||||
|
||||
dtkwidget (5.7.1) unstable; urgency=medium
|
||||
|
||||
* fix: 如果窗口打开时即为最大化状态,则最大化图标显示错误 (#601)
|
||||
Thanks to Whale107(Bug: 262201)(Influence: mainwindow最大化)
|
||||
* feat: support treeland notitlebar mode
|
||||
* chore: 新增进度条动效和一个新进度条类 (#589)
|
||||
Thanks to Whale107
|
||||
* chore: 新增搜索框图标移动动画 (#590)
|
||||
Thanks to Whale107
|
||||
* fix: adjust indeterminateprogressbar color (#597)
|
||||
Thanks to Whale107
|
||||
* chore: 增加滚动区域滚轮滚动到顶部或底部的回弹效果 (#596)
|
||||
Thanks to Whale107
|
||||
* chore: 增加ButtonBox hover 和切换动画 (#595)
|
||||
Thanks to Whale107
|
||||
* chore: 使用dci icon重绘toolbutton, 增加动画 (#594)
|
||||
Thanks to Whale107
|
||||
* chore: 使用dci icon重绘switchButton, 增加动画 (#593)
|
||||
Thanks to Whale107
|
||||
* chore: 增加应用内通知动画 (#592)
|
||||
Thanks to Whale107
|
||||
* fix: adjust switchbutton dci icon (#603)
|
||||
Thanks to Whale107
|
||||
* Revert "chore: 使用dci icon重绘toolbutton, 增加动画 (#594)"
|
||||
* fix: obsolete interfaces
|
||||
* fix: display exception of checkbox & radiobutton(Bug: 276189)
|
||||
* fix: wrong status of switch button(Bug: 276221)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Wed, 16 Oct 2024 03:30:46 +0000
|
||||
|
||||
dtkwidget (5.6.34) unstable; urgency=medium
|
||||
|
||||
[ root ]
|
||||
* UNRELEASED
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Wed, 21 Aug 2024 09:47:27 +0000
|
||||
|
||||
dtkwidget (5.6.33) unstable; urgency=medium
|
||||
|
||||
* fix: DMessageManager::sendMessage cause crash
|
||||
Thanks to zty199
|
||||
* fix: wrong product icon size in DAboutDialog
|
||||
Thanks to zty199
|
||||
* fix: DTitleBar动态设置Icon时间距异常
|
||||
* fix: 控制中心标题栏返回按钮消失 (#588)
|
||||
Thanks to Whale107(Bug: 264379)(Influence: 控制中心-标题栏)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Tue, 20 Aug 2024 03:30:08 +0000
|
||||
|
||||
dtkwidget (5.6.31) unstable; urgency=medium
|
||||
|
||||
[ root ]
|
||||
* UNRELEASED
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 27 Jun 2024 09:11:34 +0000
|
||||
|
||||
dtkwidget (5.6.30) unstable; urgency=medium
|
||||
|
||||
* feat: modify the spacing between the title and the top(Issue: https://github.com/linuxdeepin/developer-center/issues/8418)
|
||||
* fix: 解决wayland下,DDialog窗口透明问题的问题 (#578)
|
||||
Thanks to Cjq(Bug: 249975)(Influence: wayland下,DDialog窗口模糊)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Thu, 30 May 2024 02:46:31 +0000
|
||||
|
||||
dtkwidget (5.6.29) unstable; urgency=medium
|
||||
|
||||
* fix: 修复大多数按钮不响应enter事件(Bug: 253935)(Influence: 按钮响应键盘回车事件)
|
||||
* revert: "fix: 自定义页码切换问题"(Issue: https://github.com/linuxdeepin/developer-center/issues/7983)
|
||||
* fix: support build on qt 6.7
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Mon, 13 May 2024 03:02:55 +0000
|
||||
|
||||
dtkwidget (5.6.28) unstable; urgency=medium
|
||||
|
||||
* fix: window menu icon(Issue: https://github.com/linuxdeepin/developer-center/issues/8297)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Mon, 29 Apr 2024 08:23:39 +0000
|
||||
|
||||
dtkwidget (5.6.27) unstable; urgency=medium
|
||||
|
||||
* chore: disable broken workflow build
|
||||
* fix: next action rect position error(Issue: https://github.com/linuxdeepin/developer-center/issues/6379)
|
||||
* fix: fix the problem of text position in dstyleditemdelegate(issue: 7673)
|
||||
* fix: Split window position error(Issue: https://github.com/linuxdeepin/developer-center/issues/4840)
|
||||
|
||||
-- Deepin Packages Builder <packages@deepin.org> Fri, 19 Apr 2024 08:55:35 +0000
|
||||
|
||||
dtkwidget (5.6.26) unstable; urgency=medium
|
||||
|
||||
* chore: 调整标题栏“更多/最小化/最大化/关闭按钮”的图标为最新1070图标样式(Task: 331465)(Influence: 窗口标题栏 更多/最小化/最大化/关闭按钮)
|
||||
|
|
|
|||
|
|
@ -3,6 +3,12 @@ DPKG_EXPORT_BUILDFLAGS = 1
|
|||
include /usr/share/dpkg/default.mk
|
||||
export QT_SELECT = qt5
|
||||
|
||||
# 安全编译参数
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
export DEB_CFLAGS_MAINT_APPEND = -Wall
|
||||
export DEB_CXXFLAGS_MAINT_APPEND = -Wall
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-E
|
||||
|
||||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
|
||||
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
|
|
@ -8,6 +8,51 @@
|
|||
@param[in] parent
|
||||
@sa DWaterMaskHelper::instance
|
||||
|
||||
@details
|
||||
### 实例代码
|
||||
#### main.cpp
|
||||
|
||||
```cpp
|
||||
#include <DApplication>
|
||||
#include <DWaterMarkHelper>
|
||||
#include <QMainWindow>
|
||||
|
||||
using namespace Dtk::Widget;
|
||||
|
||||
|
||||
int main(int argc,char* argv[])
|
||||
{
|
||||
QApplication a(argc,argv);
|
||||
|
||||
QMainWindow w;
|
||||
w.show();
|
||||
|
||||
auto ins = DWaterMarkHelper::instance();
|
||||
|
||||
WaterMarkData data = ins->data();
|
||||
data.setText("dtk example");
|
||||
data.setType(WaterMarkData::WaterMarkType::Text);
|
||||
data.setLayout(WaterMarkData::WaterMarkLayout::Tiled) ;
|
||||
data.setRotation(30);
|
||||
data.setScaleFactor(0.5);
|
||||
data.setColor(Qt::red);
|
||||
QFont font;
|
||||
font.setPointSize(30);
|
||||
data.setFont(font);
|
||||
data.setSpacing(65);
|
||||
data.setLineSpacing(-1);
|
||||
data.setOpacity(0.3);
|
||||
data.setGrayScale(true);
|
||||
|
||||
ins->setData(data);
|
||||
|
||||
ins->registerWidget(&w);
|
||||
return a.exec();
|
||||
}
|
||||
```
|
||||
### 实例图片
|
||||
@image html dwatermarkhelper_example.png
|
||||
|
||||
@fn DWaterMarkHelper::instance
|
||||
@brief DWaterMarkHelper 的单例对象,使用 Q_GLOBAL_STATIC 定义,在第一次调用时实例化。
|
||||
|
||||
|
|
|
|||
|
|
@ -49,6 +49,13 @@ find_package(PkgConfig REQUIRED)
|
|||
|
||||
if("${QT_VERSION_MAJOR}" STREQUAL "5")
|
||||
find_package(Qt5 REQUIRED COMPONENTS X11Extras)
|
||||
elseif("${QT_VERSION_MAJOR}" STREQUAL "6")
|
||||
if (${Qt6Core_VERSION} VERSION_GREATER_EQUAL "6.10.0")
|
||||
set(QT_NO_PRIVATE_MODULE_WARNING ON)
|
||||
find_package(Qt6 REQUIRED COMPONENTS GuiPrivate WidgetsPrivate PrintSupportPrivate)
|
||||
endif()
|
||||
else()
|
||||
message(FATAL_ERROR "Unsupported Qt Version: ${QT_VERSION_MAJOR}")
|
||||
endif()
|
||||
|
||||
file(GLOB D_HEADERS "${PROJECT_SOURCE_DIR}/include/DWidget/*")
|
||||
|
|
@ -89,8 +96,7 @@ if (NOT CMAKE_BUILD_TYPE)
|
|||
endif()
|
||||
|
||||
if(NOT MSVC)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wall -Wextra")
|
||||
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wextra")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed -pie")
|
||||
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set(BUILD_TESTING ON)
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ DPushButtonExample::DPushButtonExample(QWidget *parent)
|
|||
DPushButton *pButtonDisabled = new DPushButton("button disabled", this);
|
||||
pButtonDisabled->setFixedSize(DSizeModeHelper::element(QSize(200, 24), QSize(200, 36)));
|
||||
// connect `sizeModeChanged()` signal to update Size.
|
||||
connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::sizeModeChanged, [pButtonDisabled](DGuiApplicationHelper::SizeMode mode) {
|
||||
connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::sizeModeChanged, [pButtonDisabled](DGuiApplicationHelper::SizeMode) {
|
||||
pButtonDisabled->setFixedSize(DSizeModeHelper::element(QSize(200, 24), QSize(200, 36)));
|
||||
});
|
||||
pButtonDisabled->setEnabled(false);
|
||||
|
|
@ -402,7 +402,7 @@ DIconButtonExample::DIconButtonExample(QWidget *parent)
|
|||
pButton_8->setIconSize(QSize(16, 16));
|
||||
DStyle::setFocusRectVisible(pButton_8, false);
|
||||
|
||||
auto updateButtonSize = [](QWidget *widget, int mode) {
|
||||
auto updateButtonSize = [](QWidget *widget, int) {
|
||||
for (auto button : widget->findChildren<DIconButton *>(QString(), Qt::FindDirectChildrenOnly)) {
|
||||
if (button->iconSize() == QSize(16, 16)) {
|
||||
button->setFixedSize(DSizeModeHelper::element(QSize(20, 20), QSize(24, 24)));
|
||||
|
|
|
|||
|
|
@ -373,7 +373,11 @@ DKeySequenceEditExample::DKeySequenceEditExample(QWidget *parent)
|
|||
closeLabel1->setFixedSize(72, 19);
|
||||
closeLabel1->setAlignment(Qt::AlignLeft);
|
||||
DKeySequenceEdit *closeEdit1 = new DKeySequenceEdit(this);
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
closeEdit1->setKeySequence(QKeySequence(Qt::ALT | Qt::Key_F4));
|
||||
#else
|
||||
closeEdit1->setKeySequence(QKeySequence(Qt::ALT + Qt::Key_F4));
|
||||
#endif
|
||||
QLabel *closeLabel2 = new QLabel("关闭窗口", this);
|
||||
closeLabel2->setFixedSize(72, 19);
|
||||
closeLabel2->setAlignment(Qt::AlignLeft);
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@ int main(int argc, char *argv[])
|
|||
#endif
|
||||
DApplication *a = DApplication::globalApplication(argc, argv);
|
||||
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
||||
DApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true);
|
||||
#endif
|
||||
DLogManager::registerConsoleAppender();
|
||||
|
||||
a->loadTranslator();
|
||||
|
|
|
|||
|
|
@ -313,18 +313,11 @@ void MainWindow::menuItemInvoked(QAction *action)
|
|||
_printer->newPage();
|
||||
|
||||
// 给出调用方widget界面作为打印内容
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
double xscale = _printer->pageRect().width() / double(this->width());
|
||||
double yscale = _printer->pageRect().height() / double(this->height());
|
||||
double scale = qMin(xscale, yscale);
|
||||
painter.translate(_printer->pageRect().width() / 2.0, _printer->pageRect().height() / 2.0);
|
||||
#else
|
||||
double xscale = _printer->pageLayout().paintRectPixels(_printer->resolution()).width() / double(this->width());
|
||||
double yscale = _printer->pageLayout().paintRectPixels(_printer->resolution()).height() / double(this->height());
|
||||
double scale = qMin(xscale, yscale);
|
||||
painter.translate(_printer->pageLayout().paintRectPixels(_printer->resolution()).width() / 2.0,
|
||||
_printer->pageLayout().paintRectPixels(_printer->resolution()).height() /2.0);
|
||||
#endif
|
||||
painter.scale(scale, scale);
|
||||
painter.translate(-this->width() / 2, -this->height() / 2);
|
||||
this->render(&painter);
|
||||
|
|
@ -333,11 +326,7 @@ void MainWindow::menuItemInvoked(QAction *action)
|
|||
QFont font /*("CESI仿宋-GB2312")*/;
|
||||
font.setPixelSize(16);
|
||||
font = QFont(font, painter.device());
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
QRectF rect = _printer->pageRect();
|
||||
#else
|
||||
QRectF rect = _printer->pageLayout().paintRectPixels(_printer->resolution());
|
||||
#endif
|
||||
rect = QRectF(0, 0, rect.width(), rect.height());
|
||||
painter.setFont(font);
|
||||
// 画可用页面矩形,提供调试效果参考
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
#include <DWaterProgress>
|
||||
#include <QPropertyAnimation>
|
||||
#include <DColoredProgressBar>
|
||||
#include <DIndeterminateProgressbar>
|
||||
#include "progressbarexample.h"
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
|
|
@ -28,6 +29,7 @@ ProgressBarExampleWindow::ProgressBarExampleWindow(QWidget *parent)
|
|||
addExampleWindow(new DProgressBarExample(this));
|
||||
addExampleWindow(new DWaterProgressExample(this));
|
||||
addExampleWindow(new DColoredProgressBarExample(this));
|
||||
addExampleWindow(new DIndeterminateProgressBarExample(this));
|
||||
}
|
||||
|
||||
DProgressBarExample::DProgressBarExample(QWidget *parent)
|
||||
|
|
@ -181,3 +183,32 @@ int DColoredProgressBarExample::getFixedHeight() const
|
|||
{
|
||||
return 200;
|
||||
}
|
||||
|
||||
DIndeterminateProgressBarExample::DIndeterminateProgressBarExample(QWidget *parent)
|
||||
: ExampleWindowInterface(parent)
|
||||
{
|
||||
auto mainLayout = new QVBoxLayout(this);
|
||||
auto indeterBar = new DIndeterminateProgressbar();
|
||||
indeterBar->setFixedSize(500, 35);
|
||||
mainLayout->addWidget(indeterBar, 0, Qt::AlignCenter);
|
||||
setLayout(mainLayout);
|
||||
}
|
||||
|
||||
QString DIndeterminateProgressBarExample::getTitleName() const
|
||||
{
|
||||
return "DIndeterminateProgressbar";
|
||||
}
|
||||
|
||||
QString DIndeterminateProgressBarExample::getDescriptionInfo() const
|
||||
{
|
||||
return QString("一个模糊进度条,不展示具体进度值,\n"
|
||||
"用于等待时间不确定的情况。主要用\n"
|
||||
"在小工具主窗口内部,作为一个中间状态\n"
|
||||
"展示给用户,最终的结果往往会跟随成功\n"
|
||||
"或者失败的图标。");
|
||||
}
|
||||
|
||||
int DIndeterminateProgressBarExample::getFixedHeight() const
|
||||
{
|
||||
return 200;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,4 +53,16 @@ public:
|
|||
int getFixedHeight() const override;
|
||||
};
|
||||
|
||||
class DIndeterminateProgressBarExample : public ExampleWindowInterface
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DIndeterminateProgressBarExample(QWidget *parent = nullptr);
|
||||
|
||||
QString getTitleName() const override;
|
||||
QString getDescriptionInfo() const override;
|
||||
int getFixedHeight() const override;
|
||||
};
|
||||
|
||||
#endif // PROGRESSBAREXAMPLE_H
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ QVariant CalendarModel::data(const QModelIndex &index, int role) const
|
|||
return QString::number(days);
|
||||
}
|
||||
}
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
|
||||
case Qt::TextColorRole: {
|
||||
#else
|
||||
case Qt::ForegroundRole:{
|
||||
|
|
@ -179,7 +179,7 @@ QVariant CalendarModel::data(const QModelIndex &index, int role) const
|
|||
QVariant CalendarModel::headerData(int section, Qt::Orientation orientation, int role) const
|
||||
{
|
||||
if (
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
|
||||
role == Qt::BackgroundColorRole ||
|
||||
#endif
|
||||
role == Qt::BackgroundRole)
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
#include "dbounceanimation.h"
|
||||
|
|
@ -0,0 +1 @@
|
|||
#include "dindeterminateprogressbar.h"
|
||||
|
|
@ -19,7 +19,7 @@ class DApplicationSettings : public QObject, public DCORE_NAMESPACE::DObject
|
|||
D_DECLARE_PRIVATE(DApplicationSettings)
|
||||
|
||||
public:
|
||||
Q_DECL_DEPRECATED_X("The feature has been moved to DGuiApplicationHelper, We can disable it by setting DGuiApplicationHelper::DontSaveApplicationTheme enum with setAttribute.")
|
||||
D_DECL_DEPRECATED_X("The feature has been moved to DGuiApplicationHelper, We can disable it by setting DGuiApplicationHelper::DontSaveApplicationTheme enum with setAttribute.")
|
||||
explicit DApplicationSettings(QObject *parent = nullptr);
|
||||
|
||||
private:
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@
|
|||
|
||||
DWIDGET_BEGIN_NAMESPACE
|
||||
|
||||
class Q_DECL_DEPRECATED DHiDPIHelper
|
||||
class D_DECL_DEPRECATED DHiDPIHelper
|
||||
{
|
||||
public:
|
||||
Q_DECL_DEPRECATED_X("Use Dtk::Gui::DIcon::loadNxPixmap") static QPixmap loadNxPixmap(const QString &fileName);
|
||||
D_DECL_DEPRECATED_X("Use Dtk::Gui::DIcon::loadNxPixmap") static QPixmap loadNxPixmap(const QString &fileName);
|
||||
};
|
||||
|
||||
DWIDGET_END_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -0,0 +1,31 @@
|
|||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
#ifndef DBOUNCEANIMATION_H
|
||||
#define DBOUNCEANIMATION_H
|
||||
|
||||
#include <DObject>
|
||||
#include <QObject>
|
||||
|
||||
class QPropertyAnimation;
|
||||
class QAbstractScrollArea;
|
||||
class DBounceAnimationPrivate;
|
||||
class DBounceAnimation : public QObject, public DTK_CORE_NAMESPACE::DObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DBounceAnimation(QObject *parent = nullptr);
|
||||
|
||||
void setAnimationTarget(QAbstractScrollArea *w);
|
||||
void setAniMationEnable(bool enable);
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *o, QEvent *e) override;
|
||||
void bounceBack(Qt::Orientation orientation);
|
||||
|
||||
private:
|
||||
D_DECLARE_PRIVATE(DBounceAnimation)
|
||||
|
||||
};
|
||||
|
||||
#endif // DBOUNCEANIMATION_H
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-FileCopyrightText: 2019 - 2022 UnionTech Software Technology Co., Ltd.
|
||||
// SPDX-FileCopyrightText: 2019 - 2024 UnionTech Software Technology Co., Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
|
|
@ -47,6 +47,8 @@ private:
|
|||
void paintEvent(QPaintEvent *e) override;
|
||||
void keyPressEvent(QKeyEvent *event) override;
|
||||
bool event(QEvent *e) override;
|
||||
|
||||
friend class DButtonBox;
|
||||
};
|
||||
|
||||
class DButtonBoxPrivate;
|
||||
|
|
@ -78,6 +80,9 @@ Q_SIGNALS:
|
|||
void buttonReleased(QAbstractButton *);
|
||||
void buttonToggled(QAbstractButton *, bool);
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *o, QEvent *e) override;
|
||||
|
||||
private:
|
||||
void paintEvent(QPaintEvent *e) override;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-FileCopyrightText: 2019 - 2023 UnionTech Software Technology Co., Ltd.
|
||||
// SPDX-FileCopyrightText: 2019 - 2024 UnionTech Software Technology Co., Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
|
|
@ -38,6 +38,7 @@ public:
|
|||
|
||||
Q_SIGNALS:
|
||||
void closeButtonClicked();
|
||||
void messageClosed();
|
||||
|
||||
protected:
|
||||
using DFloatingWidget::setWidget;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,26 @@
|
|||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
#ifndef DINDETERMINATEPROGRESSBAR_H
|
||||
#define DINDETERMINATEPROGRESSBAR_H
|
||||
|
||||
#include <DObject>
|
||||
#include <QWidget>
|
||||
|
||||
class DIndeterminateProgressbarPrivate;
|
||||
class DIndeterminateProgressbar : public QWidget, public DTK_CORE_NAMESPACE::DObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DIndeterminateProgressbar(QWidget *parent = nullptr);
|
||||
|
||||
protected:
|
||||
void paintEvent(QPaintEvent *e) override;
|
||||
void resizeEvent(QResizeEvent *e) override;
|
||||
|
||||
private:
|
||||
D_DECLARE_PRIVATE(DIndeterminateProgressbar)
|
||||
};
|
||||
|
||||
#endif // DINDETERMINATEPROGRESSBAR_H
|
||||
|
|
@ -106,20 +106,20 @@ public:
|
|||
|
||||
static QString getText(QWidget *parent, const QString &title, const QString &message,
|
||||
QLineEdit::EchoMode echo = QLineEdit::Normal,
|
||||
const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags{0},
|
||||
const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = {},
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
|
||||
static QString getItem(QWidget *parent, const QString &title, const QString &message,
|
||||
const QStringList &items, int current = 0, bool editable = true,
|
||||
bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags{0},
|
||||
bool *ok = 0, Qt::WindowFlags flags = {},
|
||||
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
||||
|
||||
static int getInt(QWidget *parent, const QString &title, const QString &message, int value = 0,
|
||||
int minValue = -2147483647, int maxValue = 2147483647,
|
||||
int step = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags{0});
|
||||
int step = 1, bool *ok = 0, Qt::WindowFlags flags = {});
|
||||
static double getDouble(QWidget *parent, const QString &title, const QString &message, double value = 0,
|
||||
double minValue = -2147483647, double maxValue = 2147483647,
|
||||
int decimals = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags{0});
|
||||
int decimals = 1, bool *ok = 0, Qt::WindowFlags flags = {});
|
||||
|
||||
protected:
|
||||
void showEvent(QShowEvent *e);
|
||||
|
|
|
|||
|
|
@ -112,6 +112,8 @@ protected:
|
|||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
QStyleOptionViewItem viewOptions() const override;
|
||||
#else
|
||||
void initViewItemOption(QStyleOptionViewItem *option) const override;
|
||||
#endif
|
||||
virtual QModelIndex moveCursor(CursorAction cursorAction,
|
||||
Qt::KeyboardModifiers modifiers) override;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
// SPDX-FileCopyrightText: 2022 - 2024 UnionTech Software Technology Co., Ltd.
|
||||
//
|
||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
#ifndef DMESSAGEMANAGER_H
|
||||
#define DMESSAGEMANAGER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <DObject>
|
||||
#include <QWidget>
|
||||
#include <dtkwidget_global.h>
|
||||
#include <dtkgui_global.h>
|
||||
|
|
@ -16,9 +16,11 @@ DGUI_END_NAMESPACE
|
|||
|
||||
DWIDGET_BEGIN_NAMESPACE
|
||||
class DFloatingMessage;
|
||||
class DMessageManager: public QObject
|
||||
class DMessageManagerPrivate;
|
||||
class DMessageManager: public QObject, public DCORE_NAMESPACE::DObject
|
||||
{
|
||||
Q_OBJECT
|
||||
D_DECLARE_PRIVATE(DMessageManager)
|
||||
|
||||
private:
|
||||
DMessageManager(); //构造函数是私有的
|
||||
|
|
|
|||
|
|
@ -30,6 +30,9 @@ public:
|
|||
static bool setWindowBlurAreaByWM(QWidget *widget, const QList<QPainterPath> &paths);
|
||||
static bool setWindowWallpaperParaByWM(QWidget *widget, const QRect &area, WallpaperScaleMode sMode, WallpaperFillMode fMode);
|
||||
|
||||
// for webengineView you may need this to set `QWindow::SurfaceType::OpenGLSurface`
|
||||
static void setWindowSurfaceType(int surfaceType);
|
||||
|
||||
using DPlatformHandle::setWindowBlurAreaByWM;
|
||||
using DPlatformHandle::setWindowWallpaperParaByWM;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#include <dtkwidget_global.h>
|
||||
#include <DPalette>
|
||||
#include <DDciIcon>
|
||||
#include <DGuiApplicationHelper>
|
||||
|
||||
#include <QCommonStyle>
|
||||
#include <QPainter>
|
||||
|
|
@ -19,9 +20,17 @@ QT_BEGIN_NAMESPACE
|
|||
class QTextLayout;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#define ENABLE_ANIMATIONS DGuiApplicationHelper::testAttribute(DGuiApplicationHelper::HasAnimations)
|
||||
#define ENABLE_ANIMATION_BUTTONBOX (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_BUTTONBOX"))
|
||||
#define ENABLE_ANIMATION_MESSAGE (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_MESSAGE"))
|
||||
#define ENABLE_ANIMATION_LISTVIEWBOUNCE (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_LISTVIREBOUNCE"))
|
||||
#define ENABLE_ANIMATION_SEARCH (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_SEARCH"))
|
||||
#define ENABLE_ANIMATION_SWITCHBUTTON (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_SWITCHBUTTON"))
|
||||
#define ENABLE_ANIMATION_PROGRESSBAR (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_PROGRESSBAR"))
|
||||
#define ENABLE_ANIMATION_RADIOBUTTON (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_RADIOBUTTON"))
|
||||
#define ENABLE_ANIMATION_CHECKBOX (!qEnvironmentVariableIsSet("DTK_DISABLE_ANIMATION_CHECKBOX"))
|
||||
|
||||
DWIDGET_BEGIN_NAMESPACE
|
||||
|
||||
DGUI_USE_NAMESPACE
|
||||
|
||||
namespace DDrawUtils
|
||||
|
|
@ -230,6 +239,7 @@ public:
|
|||
static void setFrameRadius(QWidget *widget, int radius);
|
||||
static void setUncheckedItemIndicatorVisible(QWidget *widget, bool visible);
|
||||
static void setRedPointVisible(QObject *object, bool visible);
|
||||
static void setLineEditIconMargin(QObject *object, int margin);
|
||||
|
||||
static void setShortcutUnderlineVisible(bool visible);
|
||||
static bool shortcutUnderlineVisible();
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ Q_SIGNALS:
|
|||
protected:
|
||||
void paintEvent(QPaintEvent *e) Q_DECL_OVERRIDE;
|
||||
void initStyleOption(DStyleOptionButton *option) const;
|
||||
void checkStateSet() Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
D_DECLARE_PRIVATE(DSwitchButton)
|
||||
|
|
|
|||
|
|
@ -119,6 +119,7 @@ private:
|
|||
D_PRIVATE_SLOT(void _q_toggleWindowState())
|
||||
D_PRIVATE_SLOT(void _q_showMinimized())
|
||||
D_PRIVATE_SLOT(void _q_onTopWindowMotifHintsChanged(quint32))
|
||||
D_PRIVATE_SLOT(void _q_closeWindow())
|
||||
|
||||
#ifndef QT_NO_MENU
|
||||
D_PRIVATE_SLOT(void _q_addDefaultMenuItems())
|
||||
|
|
|
|||
|
|
@ -128,7 +128,11 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||
// 设置 key seq
|
||||
DKeySequenceEdit *keyEditer = ui->Dtk__Widget__DKeySequenceEdit;
|
||||
keyEditer->setAlignment(Qt::AlignCenter);
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
keyEditer->setKeySequence(QKeySequence(Qt::CTRL | Qt::Key_A)); // 用|号,不要用+号
|
||||
#else
|
||||
keyEditer->setKeySequence(QKeySequence(Qt::CTRL + Qt::Key_A)); // 用+号不要用逗号
|
||||
#endif
|
||||
connect(ui->Dtk__Widget__DKeySequenceEdit, &DKeySequenceEdit::keySequenceChanged, [] (const QKeySequence &seq) {
|
||||
qDebug() << "Key sequence: " << seq;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -7,6 +7,13 @@
|
|||
|
||||
#include <QtUiPlugin/QDesignerCustomWidgetInterface>
|
||||
|
||||
// 定义键位组合操作符,兼容DTK5和DTK6
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||
#define DTKEY_OPERATOR |
|
||||
#else
|
||||
#define DTKEY_OPERATOR +
|
||||
#endif
|
||||
|
||||
#include <DFrame>
|
||||
#include <DArrowLineDrawer>
|
||||
#include <DButtonBox>
|
||||
|
|
@ -29,10 +36,8 @@
|
|||
#include <DTextEdit>
|
||||
#include <DSearchComboBox>
|
||||
#include <DSpinBox>
|
||||
#include <DSegmentedHighlight>
|
||||
#include <DSpinner>
|
||||
#include <DToolButton>
|
||||
#include <DSegmentedControl>
|
||||
#include <DSuggestButton>
|
||||
#include <DSwitchButton>
|
||||
#include <DWarningButton>
|
||||
|
|
@ -121,7 +126,7 @@ public:
|
|||
} \
|
||||
if (IS_SAME(UPPER_NAME, DKeySequenceEdit)) { \
|
||||
DKeySequenceEdit *w = new DKeySequenceEdit(parent); \
|
||||
w->setKeySequence(QKeySequence(Qt::CTRL + Qt::Key_A)); /* 用+号不要用逗号 */ \
|
||||
w->setKeySequence(QKeySequence(Qt::CTRL DTKEY_OPERATOR Qt::Key_A)); /* 用+号不要用逗号 */ \
|
||||
return reinterpret_cast<UPPER_NAME *>(w); \
|
||||
} \
|
||||
if (IS_SAME(UPPER_NAME, DWaterProgress)) { \
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Name: dtkwidget
|
||||
Version: 5.4.3+rpm
|
||||
Version: 5.7.25
|
||||
Release: 1%{?dist}
|
||||
Summary: Deepin tool kit widget modules
|
||||
License: LGPLv3+
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ target_compile_definitions(${LIBNAME} PRIVATE
|
|||
DTK_NO_MULTIMEDIA
|
||||
DWIDGET_TRANSLATIONS_DIR="${TRANSLATIONS_INSTALL_DIR}"
|
||||
LIBDTKWIDGET_LIBRARY
|
||||
D_IGNORE_DEPRECATIONS
|
||||
)
|
||||
|
||||
if(DTK_STATIC_TRANSLATION)
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ady">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="af">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dapplication.cpp" line="1454"/>
|
||||
<source>%1 is released under %2</source>
|
||||
<translation> %1 أصدر تحت رخصة %2</translation>
|
||||
<translation> %1 أصدر تحت رخصة 2%</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -152,7 +152,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="278"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1268"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>متقدم</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="301"/>
|
||||
|
|
@ -165,67 +165,67 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1647"/>
|
||||
<source>Print</source>
|
||||
<comment>button</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>طباعة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="318"/>
|
||||
<source>Basic</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>أساسي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="334"/>
|
||||
<source>Printer</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الطابعة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="350"/>
|
||||
<source>Copies</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>النسخ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="372"/>
|
||||
<source>Page range</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مدى الصفحة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="375"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الكل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="376"/>
|
||||
<source>Current page</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الصفحة الحالية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="377"/>
|
||||
<source>Select pages</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اختيار الصفحات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="397"/>
|
||||
<source>Orientation</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اتجاه</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="422"/>
|
||||
<source>Portrait</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>عامودي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="432"/>
|
||||
<source>Landscape</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>أفقي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="460"/>
|
||||
<source>Pages</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الصفحات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="472"/>
|
||||
<source>Color mode</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>وضع الألوان</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
|
|
@ -234,59 +234,59 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1679"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1694"/>
|
||||
<source>Color</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اللون</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1670"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1682"/>
|
||||
<source>Grayscale</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تدرج الرمادي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="487"/>
|
||||
<source>Margins</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الهوامش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Narrow (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ضيق (مم)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Normal (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>عادي (مم)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Moderate (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>معتدل (مم)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Customize (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مخصص (مم)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="500"/>
|
||||
<source>Top</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>أعلى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="503"/>
|
||||
<source>Left</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اليسار</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="506"/>
|
||||
<source>Bottom</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الأسفل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="509"/>
|
||||
<source>Right</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اليمين</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="556"/>
|
||||
|
|
@ -296,7 +296,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="573"/>
|
||||
<source>Actual size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الحجم الفعلي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="582"/>
|
||||
|
|
@ -306,17 +306,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="613"/>
|
||||
<source>Paper</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الورقة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="626"/>
|
||||
<source>Paper size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>حجم الورقة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تخطيط الطباعة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
|
|
@ -356,82 +356,82 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="683"/>
|
||||
<source>Layout direction</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اتجاه التخطيط</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="727"/>
|
||||
<source>Page Order</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ترتيب الصفحات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="740"/>
|
||||
<source>Collate pages</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>صفحات مرتبة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="746"/>
|
||||
<source>Print pages in order</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>طباعة الصفحات بناءً على الترتيب</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Front to back</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>من الأمام إلى الخلف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Back to front</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>من الخلف إلى الأمام</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
<source>Watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>العلامة المائية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="788"/>
|
||||
<source>Add watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>إضافة علامة مائية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="834"/>
|
||||
<source>Text watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>نص العلامة المائية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Confidential</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>سري</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مسودة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Sample</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>عينة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Custom</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مخصص</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="847"/>
|
||||
<source>Input your text</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>أدخل النص الخاص بك</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="872"/>
|
||||
<source>Picture watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>صورة العلامة المائية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="896"/>
|
||||
<source>Layout</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>التخطيط</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
|
|
@ -441,34 +441,34 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
<source>Center</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الوسط</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="912"/>
|
||||
<source>Angle</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الزاوية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="931"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الحجم</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="955"/>
|
||||
<source>Transparency</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الشفافية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1013"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2283"/>
|
||||
<source>Print to PDF</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>طباعة إلى ملف PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1014"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2282"/>
|
||||
<source>Save as Image</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>حفظ كصورة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
|
|
@ -491,53 +491,53 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1461"/>
|
||||
<source>Input page numbers please</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>إدخال أرقام الصفحات من فضلك</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1464"/>
|
||||
<source>Maximum page number reached</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تم الوصول إلى الحد الأقصى لعدد الصفحات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1467"/>
|
||||
<source>Input English comma please</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>إدخال فاصلة الإنجليزية من فضلك</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
<source>Input page numbers like this: 1,3,5-7,11-15,18,21</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مثال على إدخال أرقام هكذا: 1،3،5-7،11-15،18،21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
<source>Save</source>
|
||||
<comment>button</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>حفظ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>*.pdf</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>*.pdf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1770"/>
|
||||
<source>For example, 1,3,5-7,11-15,18,21</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>على سبيل المثال، 1،3،5-7،11-15،18،21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>Save as PDF</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>حفظ كصورة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2351"/>
|
||||
<source>Save as image</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>حفظ كصورة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2353"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>صور</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -546,19 +546,19 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1590"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1593"/>
|
||||
<source>Confidential</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>سري</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1608"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1611"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مسودة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1626"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1629"/>
|
||||
<source>Sample</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>عينة</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>مجموعة الأدوات الافتراضية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اسحب العناصر المفضلة لديك إلى شريط الأدوات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اسحب العناصر أدناه إلى شريط الأدوات لاستعادة الإعدادات الافتراضية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -651,7 +651,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpickcolorwidget.cpp" line="94"/>
|
||||
<source>Color</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>اللون</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -669,7 +669,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
<source>Select All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تحديد الكل</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الإصدار</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>المزايا</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الصفحة الرئيسية</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الوصف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>نقدر بصدق البرامج مفتوحة المصدر المستخدمة.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تطبيق مفنوح المصدر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>متابعة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تعلم أكثر</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تطبيق مفنوح المصدر</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -741,7 +741,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="194"/>
|
||||
<source>Select All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>تحديد الكل</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -757,22 +757,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="634"/>
|
||||
<source>Theme</source>
|
||||
<translation>الموضوع</translation>
|
||||
<translation>السمة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="636"/>
|
||||
<source>Light Theme</source>
|
||||
<translation>موضوع فاتح</translation>
|
||||
<translation>سمة فاتحة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="637"/>
|
||||
<source>Dark Theme</source>
|
||||
<translation>موضوع غامق</translation>
|
||||
<translation>سمة غامقة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="638"/>
|
||||
<source>System Theme</source>
|
||||
<translation>موضوع النظام</translation>
|
||||
<translation>سمة النظام</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="668"/>
|
||||
|
|
@ -782,12 +782,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>الإفادة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>شريط أدوات مخصص</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Açıq qaynaq proqram təminatı</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -718,7 +718,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation>སྒོ་འབྱེད་མཉེན་ཆས།</translation>
|
||||
<translation>སྒོ་འབྱེད་མཉེན་ཆས་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="bqi">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Programari de codi obert</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -584,7 +584,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
<source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>
|
||||
<translation>Tato klávesová zkratka se střetává s %1. Aby začala platit, klepněte na Přidat</translation>
|
||||
<translation>Tato klávesová zkratka koliduje s %1. Aby začala platit, klikněte na Přidat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -659,7 +659,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Kopírovat</translation>
|
||||
<translation>&Zkopírovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
|
|
@ -697,12 +697,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation>Hlavní stránka</translation>
|
||||
<translation>Domovská stránka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation>Popisek</translation>
|
||||
<translation>Popis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,17 +713,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Upřímně oceňuje použitý open source software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>open source software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation>Další</translation>
|
||||
<translation>Pokračovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Open source software</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -757,7 +757,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="634"/>
|
||||
<source>Theme</source>
|
||||
<translation>Vzhled</translation>
|
||||
<translation>Motiv vzhledu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="636"/>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation>Vlastní panel nástrojů</translation>
|
||||
<translation>Uživatelsky určený panel nástrojů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="668"/>
|
||||
<source>N-up printing</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Mehrfach-Nutzen-Druck</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
|
|
@ -416,7 +416,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Custom</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Benutzerdefiniert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="847"/>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Standard-Werkzeugsatz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Verschieben Sie ihre bevorzugten Einträge in die Werkzeugleiste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Verschieben Sie die Einträge nach unten, um die Voreinstellungen wiederherzustellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -697,7 +697,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Homepage</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Wertschätzen Sie die verwendete Open Source Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>quelloffene Software</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Quelloffene Software</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Einstellbare Werkzeugleiste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="el">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="en_AU">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="eo">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dapplication.cpp" line="1454"/>
|
||||
<source>%1 is released under %2</source>
|
||||
<translation>%1 está lanzado bajo %2</translation>
|
||||
<translation>%1 se publica bajo la licencia %2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -120,7 +120,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dkeysequenceedit.cpp" line="97"/>
|
||||
<source>Enter a new shortcut</source>
|
||||
<translation>Introducir un nuevo atajo</translation>
|
||||
<translation>Introducir nuevo acceso directo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -473,7 +473,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
<source>Collapse</source>
|
||||
<translation>Colapsar</translation>
|
||||
<translation>Contraer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1359"/>
|
||||
|
|
@ -584,7 +584,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
<source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>
|
||||
<translation>Este atajo tiene conflicto con %1, haga clic en Añadir para que este atajo sea efectivo inmediatamente.</translation>
|
||||
<translation>Este acceso directo tiene conflicto con %1, haga clic en Añadir para que este atajo sea efectivo inmediatamente.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Agradecimientos al software de código abierto utilizado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>software de código abierto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>software de código abierto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Avoimen lähdekoodin ohjelmisto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="fil">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -566,7 +566,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsearchedit.cpp" line="286"/>
|
||||
<source>Search</source>
|
||||
<translation>Rechercher</translation>
|
||||
<translation>Chercher</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Outils par défaut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Déposer vos éléments favoris dans la barre d'outils</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Déposer les éléments ci-dessous dans la barre d'outils pour restaurer les éléments par défaut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -677,7 +677,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsimplelistview.cpp" line="1347"/>
|
||||
<source>No search result</source>
|
||||
<translation>Aucun résultat trouvé</translation>
|
||||
<translation>Aucun résultat de recherche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/settings/content.cpp" line="330"/>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>J'apprécie sincèrement le logiciel open source utilisé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Logiciel open-source</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Logiciel open-source</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Barre d'outils personnalisée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -251,22 +251,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Narrow (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Estreito (mm)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Normal (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Normal (mm)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Moderate (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Moderado (mm)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Customize (mm)</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Personalizar (mm)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="500"/>
|
||||
|
|
@ -316,17 +316,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Deseño de impresión</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
<source>Duplex</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Dúplex</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="668"/>
|
||||
<source>N-up printing</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Impresión de varias páxinas por folla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
|
|
@ -356,17 +356,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="683"/>
|
||||
<source>Layout direction</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Dirección de deseño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="727"/>
|
||||
<source>Page Order</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Orde de páxina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="740"/>
|
||||
<source>Collate pages</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Recolle páxinas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="746"/>
|
||||
|
|
@ -376,12 +376,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Front to back</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Fronte a atrás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Back to front</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>De atrás á fronte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
|
|
@ -406,7 +406,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Borrador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
|
|
@ -416,113 +416,113 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Custom</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Personalizar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="847"/>
|
||||
<source>Input your text</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Introduce o teu texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="872"/>
|
||||
<source>Picture watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Imaxe da marca de auga</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="896"/>
|
||||
<source>Layout</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Deseño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
<source>Tile</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Mosaico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
<source>Center</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Centro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="912"/>
|
||||
<source>Angle</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Ángulo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="931"/>
|
||||
<source>Size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Tamaño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="955"/>
|
||||
<source>Transparency</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Transparencia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1013"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2283"/>
|
||||
<source>Print to PDF</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Imprimir en PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1014"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2282"/>
|
||||
<source>Save as Image</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Gardar como Imaxe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
<source>Collapse</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Colapsar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1359"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1368"/>
|
||||
<source>Flip on short edge</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Xirar no borde curto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1298"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1363"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1367"/>
|
||||
<source>Flip on long edge</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Xirar no borde longo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1461"/>
|
||||
<source>Input page numbers please</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Introduza os números de páxinas, por favor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1464"/>
|
||||
<source>Maximum page number reached</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Alcanzouse o número máximo de páxinas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1467"/>
|
||||
<source>Input English comma please</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Introduza a coma inglesa, por favor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
<source>Input page numbers like this: 1,3,5-7,11-15,18,21</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Introduza os números de páxina como segue: 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
<source>Save</source>
|
||||
<comment>button</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Gardar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>*.pdf</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>*.pdf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1770"/>
|
||||
<source>For example, 1,3,5-7,11-15,18,21</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Por exemplo, 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
|
|
@ -552,7 +552,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1608"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1611"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Borrador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1626"/>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Conxunto de ferramentas predeterminado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Arrastra os teus elementos favoritos á barra de ferramentas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Arrastra os elementos de abaixo á barra de ferramentas para restaurar os valores predeterminados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -659,12 +659,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Copiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
<source>Cu&t</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Pegar&</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Versión</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Características</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Páxina de inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Descripción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Agradecemos sinceramente o software de código aberto utilizado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>software de código aberto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Continuar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Saber máis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Software de código aberto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -782,12 +782,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Retroalimentar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Barra de ferramentas personalizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="he">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dinputdialog.cpp" line="29"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Odustani</translation>
|
||||
<translation>Otkaži</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dinputdialog.cpp" line="30"/>
|
||||
|
|
@ -574,7 +574,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="65"/>
|
||||
<source>Cancel</source>
|
||||
<translation>Odustani</translation>
|
||||
<translation>Otkaži</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="66"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="hy">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Toolset di default</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Trascina i tuoi elementi preferiti nella barra degli strumenti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Trascina gli elementi sottostanti nella barra degli strumenti per ripristinare le impostazioni predefinite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Versione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Funzionalità</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Homepage</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Dewscrizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Apprezzo sinceramente il software open source utilizzato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>software open-source</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Continua</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Scopri di più</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Software Open-Source</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Barra degli strumenti personalizzata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dkeysequenceedit.cpp" line="97"/>
|
||||
<source>Enter a new shortcut</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>新しいショートカットを入力</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -128,22 +128,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="593"/>
|
||||
<source>Stop reading</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>読み上げ停止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="595"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>読み上げる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="618"/>
|
||||
<source>Translate</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>翻訳</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="640"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>音声入力</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -152,7 +152,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="278"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1268"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>詳細</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="301"/>
|
||||
|
|
@ -165,22 +165,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1647"/>
|
||||
<source>Print</source>
|
||||
<comment>button</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>印刷</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="318"/>
|
||||
<source>Basic</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>基本</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="334"/>
|
||||
<source>Printer</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>プリンター</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="350"/>
|
||||
<source>Copies</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>コピー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="372"/>
|
||||
|
|
@ -190,12 +190,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="375"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>すべて</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="376"/>
|
||||
<source>Current page</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>現在のページ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="377"/>
|
||||
|
|
@ -205,27 +205,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="397"/>
|
||||
<source>Orientation</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>回転</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="422"/>
|
||||
<source>Portrait</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>縦</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="432"/>
|
||||
<source>Landscape</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>横</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="460"/>
|
||||
<source>Pages</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ページ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="472"/>
|
||||
<source>Color mode</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>カラーモード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
|
|
@ -234,14 +234,14 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1679"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1694"/>
|
||||
<source>Color</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>カラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1670"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1682"/>
|
||||
<source>Grayscale</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>モノクロ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="487"/>
|
||||
|
|
@ -271,27 +271,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="500"/>
|
||||
<source>Top</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>上</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="503"/>
|
||||
<source>Left</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="506"/>
|
||||
<source>Bottom</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>下</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="509"/>
|
||||
<source>Right</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="556"/>
|
||||
<source>Scaling</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>スケーリング</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="573"/>
|
||||
|
|
@ -306,17 +306,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="613"/>
|
||||
<source>Paper</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>用紙</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="626"/>
|
||||
<source>Paper size</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>用紙サイズ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>印刷レイアウト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
|
|
@ -356,7 +356,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="683"/>
|
||||
<source>Layout direction</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>レイアウトの方向</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="727"/>
|
||||
|
|
@ -386,17 +386,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
<source>Watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>透かし</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="788"/>
|
||||
<source>Add watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>透かしを追加</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="834"/>
|
||||
<source>Text watermark</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>テキスト透かし</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
|
|
@ -406,12 +406,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ドラフト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Sample</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>サンプル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
|
|
@ -462,7 +462,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1013"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2283"/>
|
||||
<source>Print to PDF</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Print to PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1014"/>
|
||||
|
|
@ -473,7 +473,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
<source>Collapse</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>折りたたむ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1359"/>
|
||||
|
|
@ -512,32 +512,32 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
<source>Save</source>
|
||||
<comment>button</comment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>*.pdf</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>*.pdf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1770"/>
|
||||
<source>For example, 1,3,5-7,11-15,18,21</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>例, 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>Save as PDF</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>PDFとして保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2351"/>
|
||||
<source>Save as image</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>画像として保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2353"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>画像</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -552,13 +552,13 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1608"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1611"/>
|
||||
<source>Draft</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ドラフト</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1626"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1629"/>
|
||||
<source>Sample</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>サンプル</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -566,7 +566,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsearchedit.cpp" line="286"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>検索</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -579,7 +579,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="66"/>
|
||||
<source>Replace</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>置き換える</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
|
|
@ -605,22 +605,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="202"/>
|
||||
<source>Stop reading</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>読み上げ停止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="204"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>読み上げる</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="227"/>
|
||||
<source>Translate</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>翻訳</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="249"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>音声入力</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -628,7 +628,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>既定のツールセット</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
|
|
@ -651,7 +651,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpickcolorwidget.cpp" line="94"/>
|
||||
<source>Color</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>カラー</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -659,17 +659,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>コピー(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
<source>Cu&t</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>切り取り(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
<source>Select All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>すべて選択</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>バージョン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>機能</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ホームページ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>説明</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>使用しているオープンソースソフトウェアに、心から感謝します。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>オープンソース ソフトウェア</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>続行</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>詳細を見る</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>オープンソース ソフトウェア</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -741,7 +741,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="194"/>
|
||||
<source>Select All</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>すべて選択</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -757,22 +757,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="634"/>
|
||||
<source>Theme</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>テーマ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="636"/>
|
||||
<source>Light Theme</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ライトテーマ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="637"/>
|
||||
<source>Dark Theme</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>ダークテーマ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="638"/>
|
||||
<source>System Theme</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>システムテーマ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="668"/>
|
||||
|
|
@ -782,12 +782,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>フィードバック</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>カスタムツールバー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ka">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="km_KH">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="kn_IN">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ku">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ku_IQ">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ky">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,803 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="lo">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
<location filename="../widgets/dapplication.cpp" line="1454"/>
|
||||
<source>%1 is released under %2</source>
|
||||
<translation>%1 ຖືກປ່ອຍອອກມາພາຍໃຕ້ %2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DCrumbEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="869"/>
|
||||
<source>Black</source>
|
||||
<translation>ດຳ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="872"/>
|
||||
<source>White</source>
|
||||
<translation>ຂາວ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="875"/>
|
||||
<source>Dark Gray</source>
|
||||
<translation>ສີຂີ້ເຖົ່າມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="878"/>
|
||||
<source>Gray</source>
|
||||
<translation>ສີຂີ້ເຖົ່າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="881"/>
|
||||
<source>Light Gray</source>
|
||||
<translation>ສີຂີ້ເຖົ່າອ່ອນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="884"/>
|
||||
<source>Red</source>
|
||||
<translation>ແດງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="887"/>
|
||||
<source>Green</source>
|
||||
<translation>ຂຽວ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="890"/>
|
||||
<source>Blue</source>
|
||||
<translation>ຟ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="893"/>
|
||||
<source>Cyan</source>
|
||||
<translation>ສີຟ້າອ່ອນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="896"/>
|
||||
<source>Magenta</source>
|
||||
<translation>ສີບົວ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="899"/>
|
||||
<source>Yellow</source>
|
||||
<translation>ເຫຼືອງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="902"/>
|
||||
<source>Dark Red</source>
|
||||
<translation>ແດງມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="905"/>
|
||||
<source>Dark Green</source>
|
||||
<translation>ຂຽວມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="908"/>
|
||||
<source>Dark Blue</source>
|
||||
<translation>ຟ້າມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="911"/>
|
||||
<source>Dark Cyan</source>
|
||||
<translation>ສີຟ້າອ່ອນມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="914"/>
|
||||
<source>Dark Magenta</source>
|
||||
<translation>ສີບົວມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="917"/>
|
||||
<source>Dark Yellow</source>
|
||||
<translation>ເຫຼືອງມືດ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DInputDialog</name>
|
||||
<message>
|
||||
<location filename="../widgets/dinputdialog.cpp" line="29"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ຍົກເລີກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dinputdialog.cpp" line="30"/>
|
||||
<source>Confirm</source>
|
||||
<translation>ຢືນຢັນ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DKeySequenceEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dkeysequenceedit.cpp" line="97"/>
|
||||
<source>Enter a new shortcut</source>
|
||||
<translation>ປ້ອນທາງລັດໃໝ່</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DLineEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="593"/>
|
||||
<source>Stop reading</source>
|
||||
<translation>ຢຸດການອ່ານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="595"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation>ຂໍ້ຄວາມເປັນສຽງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="618"/>
|
||||
<source>Translate</source>
|
||||
<translation>ແປ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="640"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation>ສຽງເປັນຂໍ້ຄວາມ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DPrintPreviewDialogPrivate</name>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="278"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1268"/>
|
||||
<source>Advanced</source>
|
||||
<translation>ຂັ້ນສູງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="301"/>
|
||||
<source>Cancel</source>
|
||||
<comment>button</comment>
|
||||
<translation>ຍົກເລີກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="302"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1647"/>
|
||||
<source>Print</source>
|
||||
<comment>button</comment>
|
||||
<translation>ພິມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="318"/>
|
||||
<source>Basic</source>
|
||||
<translation>ພື້ນຖານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="334"/>
|
||||
<source>Printer</source>
|
||||
<translation>ເຄື່ອງພິມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="350"/>
|
||||
<source>Copies</source>
|
||||
<translation>ສຳເນົາ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="372"/>
|
||||
<source>Page range</source>
|
||||
<translation>ຊ່ວງໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="375"/>
|
||||
<source>All</source>
|
||||
<translation>ທັງໝົດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="376"/>
|
||||
<source>Current page</source>
|
||||
<translation>ໜ້າປັດຈຸບັນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="377"/>
|
||||
<source>Select pages</source>
|
||||
<translation>ເລືອກໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="397"/>
|
||||
<source>Orientation</source>
|
||||
<translation>ທິດທາງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="422"/>
|
||||
<source>Portrait</source>
|
||||
<translation>ຕັ້ງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="432"/>
|
||||
<source>Landscape</source>
|
||||
<translation>ນອນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="460"/>
|
||||
<source>Pages</source>
|
||||
<translation>ໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="472"/>
|
||||
<source>Color mode</source>
|
||||
<translation>ໂໝດສີ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1583"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1663"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1679"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1694"/>
|
||||
<source>Color</source>
|
||||
<translation>ສີ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1670"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1682"/>
|
||||
<source>Grayscale</source>
|
||||
<translation>ຂີ້ເຖົ່າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="487"/>
|
||||
<source>Margins</source>
|
||||
<translation>ຂອບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Narrow (mm)</source>
|
||||
<translation>ແຄບ (ມມ)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Normal (mm)</source>
|
||||
<translation>ປົກກະຕິ (ມມ)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Moderate (mm)</source>
|
||||
<translation>ປານກາງ (ມມ)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="491"/>
|
||||
<source>Customize (mm)</source>
|
||||
<translation>ກຳນົດເອງ (ມມ)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="500"/>
|
||||
<source>Top</source>
|
||||
<translation>ເທິງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="503"/>
|
||||
<source>Left</source>
|
||||
<translation>ຊ້າຍ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="506"/>
|
||||
<source>Bottom</source>
|
||||
<translation>ລຸ່ມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="509"/>
|
||||
<source>Right</source>
|
||||
<translation>ຂວາ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="556"/>
|
||||
<source>Scaling</source>
|
||||
<translation>ການຂະຫຍາຍ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="573"/>
|
||||
<source>Actual size</source>
|
||||
<translation>ຂະໜາດຈິງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="582"/>
|
||||
<source>Scale</source>
|
||||
<translation>ສະເພາະ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="613"/>
|
||||
<source>Paper</source>
|
||||
<translation>ເຈ້ຍ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="626"/>
|
||||
<source>Paper size</source>
|
||||
<translation>ຂະໜາດເຈ້ຍ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation>ການຈັດວາງການພິມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
<source>Duplex</source>
|
||||
<translation>ສອງດ້ານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="668"/>
|
||||
<source>N-up printing</source>
|
||||
<translation>ການພິມ N ໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
<source>2 pages/sheet, 1×2</source>
|
||||
<translation>2 ໜ້າ/ແຜ່ນ, 1×2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
<source>4 pages/sheet, 2×2</source>
|
||||
<translation>4 ໜ້າ/ແຜ່ນ, 2×2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
<source>6 pages/sheet, 2×3</source>
|
||||
<translation>6 ໜ້າ/ແຜ່ນ, 2×3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
<source>9 pages/sheet, 3×3</source>
|
||||
<translation>9 ໜ້າ/ແຜ່ນ, 3×3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
<source>16 pages/sheet, 4×4</source>
|
||||
<translation>16 ໜ້າ/ແຜ່ນ, 4×4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="683"/>
|
||||
<source>Layout direction</source>
|
||||
<translation>ທິດທາງການຈັດວາງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="727"/>
|
||||
<source>Page Order</source>
|
||||
<translation>ລຳດັບໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="740"/>
|
||||
<source>Collate pages</source>
|
||||
<translation>ຈັດລະບຽບໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="746"/>
|
||||
<source>Print pages in order</source>
|
||||
<translation>ພິມໜ້າເປັນລຳດັບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Front to back</source>
|
||||
<translation>ໜ້າຫາໄຫຼງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Back to front</source>
|
||||
<translation>ໄຫຼງຫາໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
<source>Watermark</source>
|
||||
<translation>ເຄື່ອງໝາຍນ້ຳ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="788"/>
|
||||
<source>Add watermark</source>
|
||||
<translation>ເພີ່ມເຄື່ອງໝາຍນ້ຳ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="834"/>
|
||||
<source>Text watermark</source>
|
||||
<translation>ເຄື່ອງໝາຍນ້ຳຂໍ້ຄວາມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Confidential</source>
|
||||
<translation>ລັບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Draft</source>
|
||||
<translation>ຮ່າງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Sample</source>
|
||||
<translation>ຕົວຢ່າງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
<source>Custom</source>
|
||||
<translation>ກຳນົດເອງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="847"/>
|
||||
<source>Input your text</source>
|
||||
<translation>ປ້ອນຂໍ້ຄວາມຂອງທ່ານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="872"/>
|
||||
<source>Picture watermark</source>
|
||||
<translation>ເຄື່ອງໝາຍນ້ຳຮູບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="896"/>
|
||||
<source>Layout</source>
|
||||
<translation>ການຈັດວາງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
<source>Tile</source>
|
||||
<translation>ກະດານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="899"/>
|
||||
<source>Center</source>
|
||||
<translation>ກາງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="912"/>
|
||||
<source>Angle</source>
|
||||
<translation>ມຸມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="931"/>
|
||||
<source>Size</source>
|
||||
<translation>ຂະໜາດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="955"/>
|
||||
<source>Transparency</source>
|
||||
<translation>ຄວາມໂປ່ງໃສ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1013"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2283"/>
|
||||
<source>Print to PDF</source>
|
||||
<translation>ພິມເປັນ PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1014"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2282"/>
|
||||
<source>Save as Image</source>
|
||||
<translation>ບັນທຶກເປັນຮູບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
<source>Collapse</source>
|
||||
<translation>ຫຍໍ້</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1359"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1368"/>
|
||||
<source>Flip on short edge</source>
|
||||
<translation>ພັດຂອບສັ້ນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1298"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1363"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1367"/>
|
||||
<source>Flip on long edge</source>
|
||||
<translation>ພັດຂອບຍາວ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1461"/>
|
||||
<source>Input page numbers please</source>
|
||||
<translation>ກະລຸນາປ້ອນເລກໜ້າ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1464"/>
|
||||
<source>Maximum page number reached</source>
|
||||
<translation>ເຖິງເລກໜ້າສູງສຸດແລ້ວ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1467"/>
|
||||
<source>Input English comma please</source>
|
||||
<translation>ກະລຸນາປ້ອນຈຸດອັງກິດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
<source>Input page numbers like this: 1,3,5-7,11-15,18,21</source>
|
||||
<translation>ປ້ອນເລກໜ້າແບບນີ້: 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
<source>Save</source>
|
||||
<comment>button</comment>
|
||||
<translation>ບັນທຶກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>*.pdf</source>
|
||||
<translation>*.pdf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1770"/>
|
||||
<source>For example, 1,3,5-7,11-15,18,21</source>
|
||||
<translation>ຕົວຢ່າງ, 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>Save as PDF</source>
|
||||
<translation>ບັນທຶກເປັນ PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2351"/>
|
||||
<source>Save as image</source>
|
||||
<translation>ບັນທຶກເປັນຮູບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2353"/>
|
||||
<source>Images</source>
|
||||
<translation>ຮູບພາບ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DPrintPreviewWidget</name>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1590"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1593"/>
|
||||
<source>Confidential</source>
|
||||
<translation>ລັບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1608"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1611"/>
|
||||
<source>Draft</source>
|
||||
<translation>ຮ່າງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1626"/>
|
||||
<location filename="../widgets/dprintpreviewwidget.cpp" line="1629"/>
|
||||
<source>Sample</source>
|
||||
<translation>ຕົວຢ່າງ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DSearchEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dsearchedit.cpp" line="286"/>
|
||||
<source>Search</source>
|
||||
<translation>ຄົ້ນຫາ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DSettingsDialog</name>
|
||||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="65"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ຍົກເລີກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="66"/>
|
||||
<source>Replace</source>
|
||||
<translation>ປ່ຽນແທນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
<source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>
|
||||
<translation>ທາງລັດນີ້ຂັດແຍ້ງກັບ %1, ຄລິກເພື່ອເພີ່ມເພື່ອໃຫ້ທາງລັດນີ້ມີຜົນທັນທີ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DShortcutEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dshortcutedit.cpp" line="18"/>
|
||||
<source>Please input a new shortcut</source>
|
||||
<translation>ກະລຸນາປ້ອນທາງລັດໃໝ່</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dshortcutedit.cpp" line="89"/>
|
||||
<source>None</source>
|
||||
<translation>ບໍ່ມີ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DTextEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="202"/>
|
||||
<source>Stop reading</source>
|
||||
<translation>ຢຸດການອ່ານ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="204"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation>ຂໍ້ຄວາມເປັນສຽງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="227"/>
|
||||
<source>Translate</source>
|
||||
<translation>ແປ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="249"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation>ສຽງເປັນຂໍ້ຄວາມ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DToolbarEditPanel</name>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation>ຊຸດເຄື່ອງມືເລີ່ມຕົ້ນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation>ລາກລາຍການທີ່ທ່ານມັກເຂົ້າໃນແຖບເຄື່ອງມື</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation>ລາກລາຍການຂ້າງລຸ່ມເຂົ້າໃນແຖບເຄື່ອງມືເພື່ອຄືນຄ່າເລີ່ມຕົ້ນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
<source>Confirm</source>
|
||||
<translation>ຢືນຢັນ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PickColorWidget</name>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpickcolorwidget.cpp" line="94"/>
|
||||
<source>Color</source>
|
||||
<translation>ສີ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QLineEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation>ຄັດລອກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>ຕັດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
<source>Select All</source>
|
||||
<translation>ເລືອກທັງໝົດ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../widgets/dsimplelistview.cpp" line="1347"/>
|
||||
<source>No search result</source>
|
||||
<translation>ບໍ່ມີຜົນການຄົ້ນຫາ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/settings/content.cpp" line="330"/>
|
||||
<source>Restore Defaults</source>
|
||||
<translation>ຄືນຄ່າເລີ່ມຕົ້ນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation>ເວີຊັນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation>ຄຸນສົມບັດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation>ໜ້າຫຼັກ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation>ຄຳອະທິບາຍ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
<source>Acknowledgements</source>
|
||||
<translation>ການຂອບໃຈ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation>ຂອບໃຈຢ່າງຈິງໃຈສຳລັບຊອບແວເປີດທີ່ໃຊ້.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation>ຊອບແວເປີດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation>ສືບຕໍ່</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation>ຮຽນຮູ້ເພີ່ມເຕີມ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation>ຊອບແວເປີດ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QWidgetTextControl</name>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="194"/>
|
||||
<source>Select All</source>
|
||||
<translation>ເລືອກທັງໝົດ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ShortcutEdit</name>
|
||||
<message>
|
||||
<location filename="../widgets/private/settings/shortcutedit.cpp" line="104"/>
|
||||
<source>Please enter a new shortcut</source>
|
||||
<translation>ກະລຸນາປ້ອນທາງລັດໃໝ່</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TitleBarMenu</name>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="634"/>
|
||||
<source>Theme</source>
|
||||
<translation>ຮູບແບບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="636"/>
|
||||
<source>Light Theme</source>
|
||||
<translation>ຮູບແບບສະຫວ່າງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="637"/>
|
||||
<source>Dark Theme</source>
|
||||
<translation>ຮູບແບບມືດ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="638"/>
|
||||
<source>System Theme</source>
|
||||
<translation>ຮູບແບບລະບົບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="668"/>
|
||||
<source>Help</source>
|
||||
<translation>ຊ່ວຍເຫຼືອ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation>ຄຳຄິດເຫັນ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation>ແຖບເຄື່ອງມືກຳນົດເອງ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
<source>About</source>
|
||||
<translation>ກ່ຽວກັບ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="698"/>
|
||||
<source>Exit</source>
|
||||
<translation>ອອກ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ml">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="mn">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="mr">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Set alat lalai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Seret item kegemaran anda masuk ke dalam palang alat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Seret item di bawah masuk ke dalam palang alat untuk pulih ke lalai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Hargai perisian sumber-terbuka yang digunakan dengan ikhlas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>perisian sumber-terbuka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Perisian Sumber-Terbuka</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Palang alat suai</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dinputdialog.cpp" line="30"/>
|
||||
<source>Confirm</source>
|
||||
<translation>Oké</translation>
|
||||
<translation>Bevestigen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="pam">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -210,12 +210,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="422"/>
|
||||
<source>Portrait</source>
|
||||
<translation>Pionowo</translation>
|
||||
<translation>Portret</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="432"/>
|
||||
<source>Landscape</source>
|
||||
<translation>Poziomo</translation>
|
||||
<translation>Krajobraz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="460"/>
|
||||
|
|
@ -396,7 +396,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="834"/>
|
||||
<source>Text watermark</source>
|
||||
<translation>Tekst jako znak wodny</translation>
|
||||
<translation>Tekstowy znak wodny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="838"/>
|
||||
|
|
@ -501,7 +501,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1467"/>
|
||||
<source>Input English comma please</source>
|
||||
<translation>Wprowadź Angielski przecinek</translation>
|
||||
<translation>Wprowadź angielski przecinek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
|
|
@ -522,7 +522,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1770"/>
|
||||
<source>For example, 1,3,5-7,11-15,18,21</source>
|
||||
<translation>Na przykład, 1,3,5-7,11-15,18,21</translation>
|
||||
<translation>Na przykład: 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dapplication.cpp" line="1454"/>
|
||||
<source>%1 is released under %2</source>
|
||||
<translation>%1 é lançado em %2</translation>
|
||||
<translation>%1 é lançado sob a %2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -29,7 +29,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="875"/>
|
||||
<source>Dark Gray</source>
|
||||
<translation>Cinza Escuro</translation>
|
||||
<translation>Cinza escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="878"/>
|
||||
|
|
@ -39,7 +39,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="881"/>
|
||||
<source>Light Gray</source>
|
||||
<translation>Cinza Claro</translation>
|
||||
<translation>Cinza claro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="884"/>
|
||||
|
|
@ -74,32 +74,32 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="902"/>
|
||||
<source>Dark Red</source>
|
||||
<translation>Vermelho Escuro</translation>
|
||||
<translation>Vermelho escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="905"/>
|
||||
<source>Dark Green</source>
|
||||
<translation>Verde Escuro</translation>
|
||||
<translation>Verde escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="908"/>
|
||||
<source>Dark Blue</source>
|
||||
<translation>Azul Escuro</translation>
|
||||
<translation>Azul escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="911"/>
|
||||
<source>Dark Cyan</source>
|
||||
<translation>Ciano Escuro</translation>
|
||||
<translation>Ciano escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="914"/>
|
||||
<source>Dark Magenta</source>
|
||||
<translation>Magenta Escuro</translation>
|
||||
<translation>Magenta escuro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="917"/>
|
||||
<source>Dark Yellow</source>
|
||||
<translation>Amarelo Escuro</translation>
|
||||
<translation>Amarelo escuro</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -128,12 +128,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="593"/>
|
||||
<source>Stop reading</source>
|
||||
<translation>Parar de ler</translation>
|
||||
<translation>Parar leitura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="595"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation>Texto em Voz</translation>
|
||||
<translation>Texto para fala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="618"/>
|
||||
|
|
@ -143,7 +143,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="640"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation>Voz em Texto</translation>
|
||||
<translation>Fala para texto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -225,7 +225,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="472"/>
|
||||
<source>Color mode</source>
|
||||
<translation>Modo de cores</translation>
|
||||
<translation>Modo de cor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="475"/>
|
||||
|
|
@ -291,7 +291,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="556"/>
|
||||
<source>Scaling</source>
|
||||
<translation>Escala</translation>
|
||||
<translation>Dimensionamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="573"/>
|
||||
|
|
@ -316,17 +316,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation>Layout de Impressão</translation>
|
||||
<translation>Layout de impressão</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
<source>Duplex</source>
|
||||
<translation>Duplex</translation>
|
||||
<translation>Frente e verso</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="668"/>
|
||||
<source>N-up printing</source>
|
||||
<translation>Impressão N-up</translation>
|
||||
<translation>Impressão N em 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="671"/>
|
||||
|
|
@ -361,7 +361,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="727"/>
|
||||
<source>Page Order</source>
|
||||
<translation>Ordem das Páginas</translation>
|
||||
<translation>Ordem das páginas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="740"/>
|
||||
|
|
@ -376,12 +376,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Front to back</source>
|
||||
<translation>De frente para trás</translation>
|
||||
<translation>Frente para trás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Back to front</source>
|
||||
<translation>De trás para frente</translation>
|
||||
<translation>Trás para frente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
|
|
@ -421,7 +421,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="847"/>
|
||||
<source>Input your text</source>
|
||||
<translation>Insira o texto</translation>
|
||||
<translation>Insira seu texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="872"/>
|
||||
|
|
@ -462,13 +462,13 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1013"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2283"/>
|
||||
<source>Print to PDF</source>
|
||||
<translation>Imprimir em PDF</translation>
|
||||
<translation>Imprimir para PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1014"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2282"/>
|
||||
<source>Save as Image</source>
|
||||
<translation>Salvar como Imagem</translation>
|
||||
<translation>Salvar como imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1264"/>
|
||||
|
|
@ -479,34 +479,34 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1359"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1368"/>
|
||||
<source>Flip on short edge</source>
|
||||
<translation>Virar na borda curta</translation>
|
||||
<translation>Virar pela borda curta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1298"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1363"/>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1367"/>
|
||||
<source>Flip on long edge</source>
|
||||
<translation>Virar na borda longa</translation>
|
||||
<translation>Virar pela borda longa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1461"/>
|
||||
<source>Input page numbers please</source>
|
||||
<translation>Insira o números de páginas</translation>
|
||||
<translation>Insira os números das páginas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1464"/>
|
||||
<source>Maximum page number reached</source>
|
||||
<translation>O número máximo de páginas foi atingido</translation>
|
||||
<translation>Número máximo de páginas atingido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1467"/>
|
||||
<source>Input English comma please</source>
|
||||
<translation>Insira uma vírgula</translation>
|
||||
<translation>Insira a vírgula</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
<source>Input page numbers like this: 1,3,5-7,11-15,18,21</source>
|
||||
<translation>Insira os números das páginas assim: 1, 3, 5-7, 11-15, 18, 21</translation>
|
||||
<translation>Insira os números das páginas: 1, 3, 5-7, 11-15, 18, 21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
|
|
@ -584,7 +584,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
<source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>
|
||||
<translation>Este atalho entra em conflito com %1; clique em Adicionar para efetivar este atalho</translation>
|
||||
<translation>Este atalho entra em conflito com %1. Clique em Adicionar para efetivar este atalho</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -605,12 +605,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="202"/>
|
||||
<source>Stop reading</source>
|
||||
<translation>Parar de ler</translation>
|
||||
<translation>Parar leitura</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="204"/>
|
||||
<source>Text to Speech</source>
|
||||
<translation>Texto em Voz</translation>
|
||||
<translation>Texto para fala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="227"/>
|
||||
|
|
@ -620,7 +620,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="249"/>
|
||||
<source>Speech To Text</source>
|
||||
<translation>Voz em Texto</translation>
|
||||
<translation>Fala para texto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Conjunto de ferramentas padrão</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Arraste seus itens favoritos para a barra de ferramentas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Arraste os itens abaixo para a barra de ferramentas para restaurar os padrões</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -659,17 +659,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation>&Copiar</translation>
|
||||
<translation>Copiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
<source>Cu&t</source>
|
||||
<translation>Recor&tar</translation>
|
||||
<translation>Recortar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
<source>Select All</source>
|
||||
<translation>Selecionar Tudo</translation>
|
||||
<translation>Selecionar tudo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -677,12 +677,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsimplelistview.cpp" line="1347"/>
|
||||
<source>No search result</source>
|
||||
<translation>Nenhum resultado</translation>
|
||||
<translation>Nenhum resultado encontrado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/settings/content.cpp" line="330"/>
|
||||
<source>Restore Defaults</source>
|
||||
<translation>Restaurar Padrões</translation>
|
||||
<translation>Restaurar padrões</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
|
|
@ -697,7 +697,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation>Página na Internet</translation>
|
||||
<translation>Página web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Agradecemos sinceramente pelo software de código aberto utilizado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Software de código aberto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -728,12 +728,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation>Aprenda Mais</translation>
|
||||
<translation>Saiba mais</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Software de código aberto</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -741,7 +741,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="194"/>
|
||||
<source>Select All</source>
|
||||
<translation>Selecionar Tudo</translation>
|
||||
<translation>Selecionar tudo</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -782,12 +782,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation>Opinião</translation>
|
||||
<translation>Feedback</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Barra de ferramentas personalizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="875"/>
|
||||
<source>Dark Gray</source>
|
||||
<translation>Темно-Серый</translation>
|
||||
<translation>Темно-серый</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="878"/>
|
||||
|
|
@ -39,7 +39,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="881"/>
|
||||
<source>Light Gray</source>
|
||||
<translation>Светло-Серый</translation>
|
||||
<translation>Светло-серый</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="884"/>
|
||||
|
|
@ -74,32 +74,32 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="902"/>
|
||||
<source>Dark Red</source>
|
||||
<translation>Темно-Красный</translation>
|
||||
<translation>Темно-красный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="905"/>
|
||||
<source>Dark Green</source>
|
||||
<translation>Темно-Зеленый</translation>
|
||||
<translation>Темно-зеленый</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="908"/>
|
||||
<source>Dark Blue</source>
|
||||
<translation>Темно-Синий</translation>
|
||||
<translation>Темно-синий</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="911"/>
|
||||
<source>Dark Cyan</source>
|
||||
<translation>Темно-Голубой</translation>
|
||||
<translation>Темно-голубой</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="914"/>
|
||||
<source>Dark Magenta</source>
|
||||
<translation>Темно-Пурпурный</translation>
|
||||
<translation>Темно-пурпурный</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dcrumbedit.cpp" line="917"/>
|
||||
<source>Dark Yellow</source>
|
||||
<translation>Темно-Желтый</translation>
|
||||
<translation>Темно-желтый</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -210,12 +210,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="422"/>
|
||||
<source>Portrait</source>
|
||||
<translation>Портрет</translation>
|
||||
<translation>Книжная</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="432"/>
|
||||
<source>Landscape</source>
|
||||
<translation>Ландшафт</translation>
|
||||
<translation>Альбомная</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="460"/>
|
||||
|
|
@ -316,7 +316,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="641"/>
|
||||
<source>Print Layout</source>
|
||||
<translation>Макет Печати</translation>
|
||||
<translation>Макет печати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="655"/>
|
||||
|
|
@ -376,12 +376,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Front to back</source>
|
||||
<translation>С лицевой стороны обратно</translation>
|
||||
<translation>От лицевой к задней</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="750"/>
|
||||
<source>Back to front</source>
|
||||
<translation> С обратной стороны на лицевую</translation>
|
||||
<translation> От задней к лицевой</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="774"/>
|
||||
|
|
@ -527,7 +527,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2312"/>
|
||||
<source>Save as PDF</source>
|
||||
<translation>Сохранить в PDF</translation>
|
||||
<translation>Сохранить как PDF</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="2351"/>
|
||||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Набор инструментов по умолчанию</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Перетащите ваши любимые элементы на панель инструментов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Перетащите указанные ниже элементы на панель инструментов, чтобы восстановить значения по умолчанию.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -682,7 +682,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/settings/content.cpp" line="330"/>
|
||||
<source>Restore Defaults</source>
|
||||
<translation>Восстановить значения По-умолчанию</translation>
|
||||
<translation>Восстановить значения по умолчанию</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
|
|
@ -713,12 +713,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Искренне благодарим за использование программного обеспечения с открытым исходным кодом.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>программное обеспечение с открытым исходным кодом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Программное обеспечение с открытым исходным кодом</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -762,17 +762,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="636"/>
|
||||
<source>Light Theme</source>
|
||||
<translation>Светлая Тема</translation>
|
||||
<translation>Светлая тема</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="637"/>
|
||||
<source>Dark Theme</source>
|
||||
<translation>Темная Тема</translation>
|
||||
<translation>Темная тема</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="638"/>
|
||||
<source>System Theme</source>
|
||||
<translation>Тема Системы</translation>
|
||||
<translation>Тема системы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="668"/>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Пользовательская панель инструментов</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="sc">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="si">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Priveti nabor orodji</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Povlecite priljubljene predmete v orodno vrstico</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Povlecite spodnje predmete v orodno vrstico, da povrnite privzeto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -659,12 +659,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="526"/>
|
||||
<source>&Copy</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Kopiraj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="529"/>
|
||||
<source>Cu&t</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Izrezi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="534"/>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Različica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Zmožnosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Domača stran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Opis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Spoštujte odprtokodni program, ki ga uporabljate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>odprtkodni program</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Nadaljuj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Več o tem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Odprtkodni program</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -782,12 +782,12 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="676"/>
|
||||
<source>Feedback</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Odziv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Orodna vrstica po meri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -138,7 +138,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="618"/>
|
||||
<source>Translate</source>
|
||||
<translation>Përktheni</translation>
|
||||
<translation>Përktheje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlineedit.cpp" line="640"/>
|
||||
|
|
@ -291,7 +291,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="556"/>
|
||||
<source>Scaling</source>
|
||||
<translation>Përshkallëzim</translation>
|
||||
<translation>Ripërmasim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="573"/>
|
||||
|
|
@ -506,7 +506,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1470"/>
|
||||
<source>Input page numbers like this: 1,3,5-7,11-15,18,21</source>
|
||||
<translation>Jepni numra faqesh si: 1,3,5-7,11-15,18,21</translation>
|
||||
<translation>Numrat e faqeve jepini kështu: 1,3,5-7,11-15,18,21</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dprintpreviewdialog.cpp" line="1700"/>
|
||||
|
|
@ -584,7 +584,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dsettingswidgetfactory.cpp" line="68"/>
|
||||
<source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>
|
||||
<translation>Kjo shkurtore përplaset me %1, klikoni mbi Shtoje që ta bëni këtë shkurtore menjëherë efektive</translation>
|
||||
<translation>Kjo shkurtore përplaset me %1, klikoni mbi “Shtoje”, që ta bëni këtë shkurtore menjëherë efektive</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -615,7 +615,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="227"/>
|
||||
<source>Translate</source>
|
||||
<translation>Përktheni</translation>
|
||||
<translation>Përktheje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtextedit.cpp" line="249"/>
|
||||
|
|
@ -733,7 +733,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Software Me Burim të Hapët</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="sv">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="sw">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ta">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="th">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -628,17 +628,17 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="884"/>
|
||||
<source>Default toolset</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Varsayılan araç takımı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="915"/>
|
||||
<source>Drag your favorite items into the toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Favori öğelerinizi araç çubuğuna sürükleyin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="916"/>
|
||||
<source>Drag below items into the toolbar to restore defaults</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Varsayılanları geri yüklemek için aşağıdaki öğeleri araç çubuğuna sürükleyin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/private/dtitlebareditpanel.cpp" line="921"/>
|
||||
|
|
@ -687,22 +687,22 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="108"/>
|
||||
<source>Version</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Sürüm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="110"/>
|
||||
<source>Features</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Özellikler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="122"/>
|
||||
<source>Homepage</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Anasayfa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="124"/>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Açıklama</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
|
|
@ -713,27 +713,27 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="393"/>
|
||||
<source>Sincerely appreciate the open-source software used.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Kullanılan açık kaynak yazılımı içtenlikle takdir ediyorum.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="395"/>
|
||||
<source>open-source software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>açık kaynak yazılım</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="151"/>
|
||||
<source>Continue</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Devam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dfeaturedisplaydialog.cpp" line="175"/>
|
||||
<source>Learn More</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Daha Fazla Öğren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dlicensedialog.cpp" line="78"/>
|
||||
<source>Open-Source Software</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Açık Kaynak Yazılım</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Özelleştirilmiş araç çubuğu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -787,7 +787,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="683"/>
|
||||
<source>Custom toolbar</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>قورال ئىستونى بەلگىلەش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/dtitlebar.cpp" line="691"/>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="ur">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="vi">
|
||||
|
||||
<!--
|
||||
SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
||||
|
||||
SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
-->
|
||||
|
||||
<context>
|
||||
<name>DAboutDialog</name>
|
||||
<message>
|
||||
|
|
|
|||
|
|
@ -707,7 +707,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
<source>Acknowledgements</source>
|
||||
<translation>鸣谢</translation>
|
||||
<translation>致谢</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
|
|
|
|||
|
|
@ -707,7 +707,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
<source>Acknowledgements</source>
|
||||
<translation>鳴謝</translation>
|
||||
<translation>致謝</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
|
|
|
|||
|
|
@ -707,7 +707,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="126"/>
|
||||
<source>Acknowledgements</source>
|
||||
<translation>鳴謝</translation>
|
||||
<translation>致謝</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../widgets/daboutdialog.cpp" line="128"/>
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ void DAccessibilityCheckerPrivate::checkWidgetName()
|
|||
for (const QWidget *topLevelWidget : topLevelWidgets)
|
||||
childrenList.append(topLevelWidget->findChildren<QWidget *>());
|
||||
|
||||
for (auto child : qAsConst(childrenList)) {
|
||||
for (auto child : std::as_const(childrenList)) {
|
||||
if (q->isIgnore(DAccessibilityChecker::Widget, child)) {
|
||||
widgetIgnoredCount++;
|
||||
continue;
|
||||
|
|
@ -134,7 +134,7 @@ void DAccessibilityCheckerPrivate::checkViewItemName()
|
|||
for (const QWidget *topLevelWidget : topLevelWidgets)
|
||||
listViewList.append(topLevelWidget->findChildren<QAbstractItemView *>());
|
||||
|
||||
for (auto absListView : qAsConst(listViewList)) {
|
||||
for (auto absListView : std::as_const(listViewList)) {
|
||||
if (q->isIgnore(DAccessibilityChecker::ViewItem, absListView))
|
||||
continue;
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
#include <QDesktopWidget>
|
||||
#endif
|
||||
#include <QScreen>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
//extern Q_WIDGETS_EXPORT void qt_blurImage(QImage &blurImage, qreal radius, bool quality, int transposed = 0);
|
||||
|
|
@ -60,7 +61,7 @@ QImage dropShadow(const QPixmap &px, qreal radius, const QColor &color)
|
|||
void moveToCenter(QWidget *w)
|
||||
{
|
||||
Q_ASSERT(w != nullptr);
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
|
||||
QDesktopWidget *dw = QApplication::desktop();
|
||||
QRect parentRect = dw->availableGeometry(dw->primaryScreen());
|
||||
#else
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue