commit
ef9e08c502
1228 changed files with 576845 additions and 0 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
# These are supported funding model platforms |
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] |
||||
patreon: # Replace with a single Patreon username |
||||
open_collective: # Replace with a single Open Collective username |
||||
ko_fi: zhiyiYo |
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel |
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry |
||||
liberapay: # Replace with a single Liberapay username |
||||
issuehunt: # Replace with a single IssueHunt username |
||||
otechie: # Replace with a single Otechie username |
||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry |
||||
custom: ['https://afdian.com/a/zhiyiYo'] |
@ -0,0 +1,68 @@
@@ -0,0 +1,68 @@
|
||||
name: Bug Report |
||||
description: File a bug report |
||||
title: "[Bug]: " |
||||
labels: ["bug"] |
||||
|
||||
body: |
||||
- type: markdown |
||||
attributes: |
||||
value: | |
||||
Thanks for taking the time to fill out this bug report! Please searched for historical issues and check official documentation before opening this issue. |
||||
- type: textarea |
||||
id: what-happened |
||||
attributes: |
||||
label: What happened? |
||||
description: Also tell us, what did you expect to happen? |
||||
placeholder: Tell us what you see! |
||||
validations: |
||||
required: true |
||||
- type: input |
||||
id: OS |
||||
attributes: |
||||
label: Operation System |
||||
description: Which operation system are you using? |
||||
placeholder: ex. Windows11 23H2 |
||||
validations: |
||||
required: true |
||||
- type: input |
||||
id: Python |
||||
attributes: |
||||
label: Python Version |
||||
description: Which version of python are you using? |
||||
placeholder: ex. 3.8.6 64-bit |
||||
validations: |
||||
required: true |
||||
- type: input |
||||
id: PyQt |
||||
attributes: |
||||
label: PyQt/PySide Version |
||||
description: Which version of PyQt/PySide are you using? |
||||
placeholder: ex. PyQt 5.15.2 |
||||
validations: |
||||
required: true |
||||
- type: input |
||||
id: PyQt-Fluent-Widgets |
||||
attributes: |
||||
label: PyQt/PySide-Fluent-Widgets Version |
||||
description: Which version of PyQt/PySide-Fluent-Widgets are you using? Please ensure that you are using the latest version! |
||||
placeholder: ex. v1.3.1 |
||||
validations: |
||||
required: true |
||||
- type: textarea |
||||
id: reproduce |
||||
attributes: |
||||
label: How to Reproduce? |
||||
description: A clear and concise description of what the bug is. |
||||
placeholder: Steps to reproduce the behavior(you can use gif to demonstrate the problem :) |
||||
validations: |
||||
required: true |
||||
- type: textarea |
||||
id: code |
||||
attributes: |
||||
label: Minimum code |
||||
description: Minimum code to reproduce the error. Please ensure that the code can run after pasting. |
||||
render: python3 |
||||
validations: |
||||
required: true |
||||
|
||||
|
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
name: Upload Python Package |
||||
|
||||
on: workflow_dispatch |
||||
|
||||
permissions: |
||||
contents: read |
||||
|
||||
jobs: |
||||
deploy: |
||||
runs-on: ubuntu-latest |
||||
strategy: |
||||
matrix: |
||||
branch: [master, PyQt6, PySide2, PySide6] |
||||
|
||||
steps: |
||||
- name: Checkout branch |
||||
uses: actions/checkout@v4 |
||||
with: |
||||
ref: ${{ matrix.branch }} |
||||
|
||||
- name: Set up Python |
||||
uses: actions/setup-python@v3 |
||||
with: |
||||
python-version: '3.8' |
||||
|
||||
- name: Install dependencies |
||||
run: | |
||||
python -m pip install --upgrade pip |
||||
pip install build |
||||
|
||||
- name: Build package |
||||
run: python -m build |
||||
|
||||
- name: Publish package |
||||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 |
||||
with: |
||||
user: __token__ |
||||
password: ${{ secrets.PYPI_API_TOKEN }} |
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
# 忽略.vscode文件夹 |
||||
.vscode/ |
||||
.VSCodeCounter |
||||
|
||||
# 忽略工作区文件 |
||||
*.code-workspace |
||||
.DS_Store |
||||
|
||||
# 忽略 .idea |
||||
.idea/ |
||||
|
||||
# 忽略python缓存文件 |
||||
*/__pycache__ |
||||
*.py[cod] |
||||
|
||||
# 忽略日志文件 |
||||
log/ |
||||
*.log |
||||
|
||||
# 忽略测试文件 |
||||
test.py |
||||
|
||||
# 忽略配置文件 |
||||
config.json |
||||
|
||||
# 忽略下载文件夹 |
||||
download/ |
||||
|
||||
# 忽略构建文件夹 |
||||
build/ |
||||
dist/ |
||||
PyQt_Fluent_Widgets.egg-info/ |
||||
PyQt6_Fluent_Widgets.egg-info/ |
||||
PySide2_Fluent_Widgets.egg-info/ |
||||
PySide6_Fluent_Widgets.egg-info/ |
@ -0,0 +1,97 @@
@@ -0,0 +1,97 @@
|
||||
# 更新日志 |
||||
|
||||
## v1.7.5 |
||||
### 新特性 |
||||
* 添加 `InfoBar` 桌面通知功能 |
||||
* 更新工具提示样式 |
||||
|
||||
### 修复 |
||||
* 修复菜单无法显示工具提示的问题 ([#1053](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1053)) |
||||
* 修复多媒体组件播放按钮重复触发的问题 ([#1054](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1054)) |
||||
* 修复 `HyperlinkButton` 禁用状态下的图标颜色问题 ([#1038](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1038)) |
||||
|
||||
## v1.7.4 |
||||
### 新组件 |
||||
* 添加 `SimpleExpandGroupSettingCard` |
||||
|
||||
### 新特性 |
||||
* 添加禁用下拉框选项的功能 ([#1026](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1026)) |
||||
|
||||
### 修复 |
||||
* 修复侧边导航栏的触控板滚动问题 |
||||
* 修复导航栏在展开子项时无法自动扩展问题 ([#1029](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1029)) |
||||
* 修复 `FastCalendarPicker` 无法选择第一个日期的问题 ([#1028](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1028)) |
||||
|
||||
## v1.7.3 |
||||
|
||||
### 修复 |
||||
* 修复表格项工具提示没有及时隐藏的问题 |
||||
|
||||
## v1.7.2 |
||||
### 新特性 |
||||
* 重绘单选按钮 ([#1010](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1010)) |
||||
* 添加表格项工具提示 ([#1017](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1017)) |
||||
* 添加输入框的 Error 状态 ([#1012](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1012)) |
||||
|
||||
### 修复 |
||||
* 修复 InfoBar 会导致主进程退出的问题 ([#1006](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1006)) |
||||
* 修复 macOS 深色模式下对话框的确定按钮显示聚焦框的问题 ([#1014](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1014)) |
||||
|
||||
|
||||
## v1.7.1 |
||||
### 新特性 |
||||
* 添加头像组件显示名称的功能 |
||||
|
||||
### 修复 |
||||
* 修复 macos 下 Pivot 的布局问题 |
||||
* 修复 FlipView 圆角被视口挡住的问题 ([#995](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/995)) |
||||
* 修复表格和列表组件设置不可选中模式不起作用的问题 ([#992](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/992)) |
||||
* 修复 ExpandSettingCard 标签样式受到父级样式表影响的问题 ([#993](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/993)) |
||||
* 修复 ExpandGroupSettingCard 动态删减组件时的高度计算问题 ([#1002](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/1002)) |
||||
|
||||
## v1.7.0 |
||||
### 新组件 |
||||
* 添加快速日历选择器 `FastCalendarPicker` ([#983](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/983)) |
||||
* 添加富文本浏览器 `TextBrowser` ([#972](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/972)) |
||||
|
||||
### 新特性 |
||||
* 添加系统主题监听器 ([#954](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 添加下拉框 activated 信号 ([#978](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/978)) |
||||
* 添加输入框自定义动作的功能 ([#987](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/987)) |
||||
* 添加点击遮罩关闭对话框的功能 ([#957](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/957)) |
||||
* 添加对话框验证表单数据的接口 ([#967](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/967)) |
||||
* 添加 ImageLabel 设置任意分辨率的功能 |
||||
* 添加设置 Pivot 和 BreadcrumbBar 导航项文本的功能 |
||||
|
||||
### 修复 |
||||
* 修复内存泄漏问题 ([#963](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954), [#977](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复遮罩对话框颜色问题 ([#964](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复清空菜单不彻底的问题 ([#988](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复二级菜单显示位置错误问题 ([#844](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复 IconInfoBadge.info 位置错误 ([#950](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复 ExpandLayout 坐标计算问题 ([#941](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复 SegmentedWidget.clear 报错的问题 ([#975](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
* 修复手风琴设置卡滚动事件被拦截的问题 ([#945](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/954)) |
||||
|
||||
## v1.6.0 |
||||
### 新组件 |
||||
* 添加分组卡片组件 `GroupHeaderCardWidget` ([#920](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/920)) |
||||
|
||||
### 新特性 |
||||
* 添加俄罗斯语翻译文件 ([#923](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/923)) |
||||
* 添加滚动区域透明背景接口 ([#912](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/912)) |
||||
* 添加 Pivot 当前选项变化信号 ([#908](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/908)) |
||||
* 添加 FlowLayout 插入组件的功能 ([#886](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/886)) |
||||
* 添加 FlipView 惰性加载图片的功能 ([#907](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/907)) |
||||
* 添加自定义侧边导航栏文本颜色的功能 ([#826](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/826)) |
||||
* 更新 FluentWindow 浅色模式下的默认背景颜色 ([#928](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/928)) |
||||
* 添加自定义 `FluentIconBase` 亮暗模式颜色的功能 ([#927](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/927)) |
||||
|
||||
|
||||
### 修复 |
||||
* 修复滚动事件被拦截的问题 |
||||
* 修复 Pivot 指示器位置问题 ([#888](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/888)) |
||||
* 修复 VideoWidget 停止播放的问题 ([#143](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/143)) |
||||
* 修复 SegmentedWidget 图标偏移的问题 ([#888](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/888)) |
||||
* 修复对话框报错 `QPainter::begin` 的问题 ([#867](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/867)) |
||||
* 修复 MessageBoxBase 重复触发信号的问题 ([#915](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/915)) |
@ -0,0 +1,675 @@
@@ -0,0 +1,675 @@
|
||||
GNU GENERAL PUBLIC LICENSE |
||||
Version 3, 29 June 2007 |
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> |
||||
Everyone is permitted to copy and distribute verbatim copies |
||||
of this license document, but changing it is not allowed. |
||||
|
||||
Preamble |
||||
|
||||
The GNU General Public License is a free, copyleft license for |
||||
software and other kinds of works. |
||||
|
||||
The licenses for most software and other practical works are designed |
||||
to take away your freedom to share and change the works. By contrast, |
||||
the GNU General Public License is intended to guarantee your freedom to |
||||
share and change all versions of a program--to make sure it remains free |
||||
software for all its users. We, the Free Software Foundation, use the |
||||
GNU General Public License for most of our software; it applies also to |
||||
any other work released this way by its authors. You can apply it to |
||||
your programs, too. |
||||
|
||||
When we speak of free software, we are referring to freedom, not |
||||
price. Our General Public Licenses are designed to make sure that you |
||||
have the freedom to distribute copies of free software (and charge for |
||||
them if you wish), that you receive source code or can get it if you |
||||
want it, that you can change the software or use pieces of it in new |
||||
free programs, and that you know you can do these things. |
||||
|
||||
To protect your rights, we need to prevent others from denying you |
||||
these rights or asking you to surrender the rights. Therefore, you have |
||||
certain responsibilities if you distribute copies of the software, or if |
||||
you modify it: responsibilities to respect the freedom of others. |
||||
|
||||
For example, if you distribute copies of such a program, whether |
||||
gratis or for a fee, you must pass on to the recipients the same |
||||
freedoms that you received. You must make sure that they, too, receive |
||||
or can get the source code. And you must show them these terms so they |
||||
know their rights. |
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: |
||||
(1) assert copyright on the software, and (2) offer you this License |
||||
giving you legal permission to copy, distribute and/or modify it. |
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains |
||||
that there is no warranty for this free software. For both users' and |
||||
authors' sake, the GPL requires that modified versions be marked as |
||||
changed, so that their problems will not be attributed erroneously to |
||||
authors of previous versions. |
||||
|
||||
Some devices are designed to deny users access to install or run |
||||
modified versions of the software inside them, although the manufacturer |
||||
can do so. This is fundamentally incompatible with the aim of |
||||
protecting users' freedom to change the software. The systematic |
||||
pattern of such abuse occurs in the area of products for individuals to |
||||
use, which is precisely where it is most unacceptable. Therefore, we |
||||
have designed this version of the GPL to prohibit the practice for those |
||||
products. If such problems arise substantially in other domains, we |
||||
stand ready to extend this provision to those domains in future versions |
||||
of the GPL, as needed to protect the freedom of users. |
||||
|
||||
Finally, every program is threatened constantly by software patents. |
||||
States should not allow patents to restrict development and use of |
||||
software on general-purpose computers, but in those that do, we wish to |
||||
avoid the special danger that patents applied to a free program could |
||||
make it effectively proprietary. To prevent this, the GPL assures that |
||||
patents cannot be used to render the program non-free. |
||||
|
||||
The precise terms and conditions for copying, distribution and |
||||
modification follow. |
||||
|
||||
TERMS AND CONDITIONS |
||||
|
||||
0. Definitions. |
||||
|
||||
"This License" refers to version 3 of the GNU General Public License. |
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of |
||||
works, such as semiconductor masks. |
||||
|
||||
"The Program" refers to any copyrightable work licensed under this |
||||
License. Each licensee is addressed as "you". "Licensees" and |
||||
"recipients" may be individuals or organizations. |
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work |
||||
in a fashion requiring copyright permission, other than the making of an |
||||
exact copy. The resulting work is called a "modified version" of the |
||||
earlier work or a work "based on" the earlier work. |
||||
|
||||
A "covered work" means either the unmodified Program or a work based |
||||
on the Program. |
||||
|
||||
To "propagate" a work means to do anything with it that, without |
||||
permission, would make you directly or secondarily liable for |
||||
infringement under applicable copyright law, except executing it on a |
||||
computer or modifying a private copy. Propagation includes copying, |
||||
distribution (with or without modification), making available to the |
||||
public, and in some countries other activities as well. |
||||
|
||||
To "convey" a work means any kind of propagation that enables other |
||||
parties to make or receive copies. Mere interaction with a user through |
||||
a computer network, with no transfer of a copy, is not conveying. |
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices" |
||||
to the extent that it includes a convenient and prominently visible |
||||
feature that (1) displays an appropriate copyright notice, and (2) |
||||
tells the user that there is no warranty for the work (except to the |
||||
extent that warranties are provided), that licensees may convey the |
||||
work under this License, and how to view a copy of this License. If |
||||
the interface presents a list of user commands or options, such as a |
||||
menu, a prominent item in the list meets this criterion. |
||||
|
||||
1. Source Code. |
||||
|
||||
The "source code" for a work means the preferred form of the work |
||||
for making modifications to it. "Object code" means any non-source |
||||
form of a work. |
||||
|
||||
A "Standard Interface" means an interface that either is an official |
||||
standard defined by a recognized standards body, or, in the case of |
||||
interfaces specified for a particular programming language, one that |
||||
is widely used among developers working in that language. |
||||
|
||||
The "System Libraries" of an executable work include anything, other |
||||
than the work as a whole, that (a) is included in the normal form of |
||||
packaging a Major Component, but which is not part of that Major |
||||
Component, and (b) serves only to enable use of the work with that |
||||
Major Component, or to implement a Standard Interface for which an |
||||
implementation is available to the public in source code form. A |
||||
"Major Component", in this context, means a major essential component |
||||
(kernel, window system, and so on) of the specific operating system |
||||
(if any) on which the executable work runs, or a compiler used to |
||||
produce the work, or an object code interpreter used to run it. |
||||
|
||||
The "Corresponding Source" for a work in object code form means all |
||||
the source code needed to generate, install, and (for an executable |
||||
work) run the object code and to modify the work, including scripts to |
||||
control those activities. However, it does not include the work's |
||||
System Libraries, or general-purpose tools or generally available free |
||||
programs which are used unmodified in performing those activities but |
||||
which are not part of the work. For example, Corresponding Source |
||||
includes interface definition files associated with source files for |
||||
the work, and the source code for shared libraries and dynamically |
||||
linked subprograms that the work is specifically designed to require, |
||||
such as by intimate data communication or control flow between those |
||||
subprograms and other parts of the work. |
||||
|
||||
The Corresponding Source need not include anything that users |
||||
can regenerate automatically from other parts of the Corresponding |
||||
Source. |
||||
|
||||
The Corresponding Source for a work in source code form is that |
||||
same work. |
||||
|
||||
2. Basic Permissions. |
||||
|
||||
All rights granted under this License are granted for the term of |
||||
copyright on the Program, and are irrevocable provided the stated |
||||
conditions are met. This License explicitly affirms your unlimited |
||||
permission to run the unmodified Program. The output from running a |
||||
covered work is covered by this License only if the output, given its |
||||
content, constitutes a covered work. This License acknowledges your |
||||
rights of fair use or other equivalent, as provided by copyright law. |
||||
|
||||
You may make, run and propagate covered works that you do not |
||||
convey, without conditions so long as your license otherwise remains |
||||
in force. You may convey covered works to others for the sole purpose |
||||
of having them make modifications exclusively for you, or provide you |
||||
with facilities for running those works, provided that you comply with |
||||
the terms of this License in conveying all material for which you do |
||||
not control copyright. Those thus making or running the covered works |
||||
for you must do so exclusively on your behalf, under your direction |
||||
and control, on terms that prohibit them from making any copies of |
||||
your copyrighted material outside their relationship with you. |
||||
|
||||
Conveying under any other circumstances is permitted solely under |
||||
the conditions stated below. Sublicensing is not allowed; section 10 |
||||
makes it unnecessary. |
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law. |
||||
|
||||
No covered work shall be deemed part of an effective technological |
||||
measure under any applicable law fulfilling obligations under article |
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or |
||||
similar laws prohibiting or restricting circumvention of such |
||||
measures. |
||||
|
||||
When you convey a covered work, you waive any legal power to forbid |
||||
circumvention of technological measures to the extent such circumvention |
||||
is effected by exercising rights under this License with respect to |
||||
the covered work, and you disclaim any intention to limit operation or |
||||
modification of the work as a means of enforcing, against the work's |
||||
users, your or third parties' legal rights to forbid circumvention of |
||||
technological measures. |
||||
|
||||
4. Conveying Verbatim Copies. |
||||
|
||||
You may convey verbatim copies of the Program's source code as you |
||||
receive it, in any medium, provided that you conspicuously and |
||||
appropriately publish on each copy an appropriate copyright notice; |
||||
keep intact all notices stating that this License and any |
||||
non-permissive terms added in accord with section 7 apply to the code; |
||||
keep intact all notices of the absence of any warranty; and give all |
||||
recipients a copy of this License along with the Program. |
||||
|
||||
You may charge any price or no price for each copy that you convey, |
||||
and you may offer support or warranty protection for a fee. |
||||
|
||||
5. Conveying Modified Source Versions. |
||||
|
||||
You may convey a work based on the Program, or the modifications to |
||||
produce it from the Program, in the form of source code under the |
||||
terms of section 4, provided that you also meet all of these conditions: |
||||
|
||||
a) The work must carry prominent notices stating that you modified |
||||
it, and giving a relevant date. |
||||
|
||||
b) The work must carry prominent notices stating that it is |
||||
released under this License and any conditions added under section |
||||
7. This requirement modifies the requirement in section 4 to |
||||
"keep intact all notices". |
||||
|
||||
c) You must license the entire work, as a whole, under this |
||||
License to anyone who comes into possession of a copy. This |
||||
License will therefore apply, along with any applicable section 7 |
||||
additional terms, to the whole of the work, and all its parts, |
||||
regardless of how they are packaged. This License gives no |
||||
permission to license the work in any other way, but it does not |
||||
invalidate such permission if you have separately received it. |
||||
|
||||
d) If the work has interactive user interfaces, each must display |
||||
Appropriate Legal Notices; however, if the Program has interactive |
||||
interfaces that do not display Appropriate Legal Notices, your |
||||
work need not make them do so. |
||||
|
||||
A compilation of a covered work with other separate and independent |
||||
works, which are not by their nature extensions of the covered work, |
||||
and which are not combined with it such as to form a larger program, |
||||
in or on a volume of a storage or distribution medium, is called an |
||||
"aggregate" if the compilation and its resulting copyright are not |
||||
used to limit the access or legal rights of the compilation's users |
||||
beyond what the individual works permit. Inclusion of a covered work |
||||
in an aggregate does not cause this License to apply to the other |
||||
parts of the aggregate. |
||||
|
||||
6. Conveying Non-Source Forms. |
||||
|
||||
You may convey a covered work in object code form under the terms |
||||
of sections 4 and 5, provided that you also convey the |
||||
machine-readable Corresponding Source under the terms of this License, |
||||
in one of these ways: |
||||
|
||||
a) Convey the object code in, or embodied in, a physical product |
||||
(including a physical distribution medium), accompanied by the |
||||
Corresponding Source fixed on a durable physical medium |
||||
customarily used for software interchange. |
||||
|
||||
b) Convey the object code in, or embodied in, a physical product |
||||
(including a physical distribution medium), accompanied by a |
||||
written offer, valid for at least three years and valid for as |
||||
long as you offer spare parts or customer support for that product |
||||
model, to give anyone who possesses the object code either (1) a |
||||
copy of the Corresponding Source for all the software in the |
||||
product that is covered by this License, on a durable physical |
||||
medium customarily used for software interchange, for a price no |
||||
more than your reasonable cost of physically performing this |
||||
conveying of source, or (2) access to copy the |
||||
Corresponding Source from a network server at no charge. |
||||
|
||||
c) Convey individual copies of the object code with a copy of the |
||||
written offer to provide the Corresponding Source. This |
||||
alternative is allowed only occasionally and noncommercially, and |
||||
only if you received the object code with such an offer, in accord |
||||
with subsection 6b. |
||||
|
||||
d) Convey the object code by offering access from a designated |
||||
place (gratis or for a charge), and offer equivalent access to the |
||||
Corresponding Source in the same way through the same place at no |
||||
further charge. You need not require recipients to copy the |
||||
Corresponding Source along with the object code. If the place to |
||||
copy the object code is a network server, the Corresponding Source |
||||
may be on a different server (operated by you or a third party) |
||||
that supports equivalent copying facilities, provided you maintain |
||||
clear directions next to the object code saying where to find the |
||||
Corresponding Source. Regardless of what server hosts the |
||||
Corresponding Source, you remain obligated to ensure that it is |
||||
available for as long as needed to satisfy these requirements. |
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided |
||||
you inform other peers where the object code and Corresponding |
||||
Source of the work are being offered to the general public at no |
||||
charge under subsection 6d. |
||||
|
||||
A separable portion of the object code, whose source code is excluded |
||||
from the Corresponding Source as a System Library, need not be |
||||
included in conveying the object code work. |
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any |
||||
tangible personal property which is normally used for personal, family, |
||||
or household purposes, or (2) anything designed or sold for incorporation |
||||
into a dwelling. In determining whether a product is a consumer product, |
||||
doubtful cases shall be resolved in favor of coverage. For a particular |
||||
product received by a particular user, "normally used" refers to a |
||||
typical or common use of that class of product, regardless of the status |
||||
of the particular user or of the way in which the particular user |
||||
actually uses, or expects or is expected to use, the product. A product |
||||
is a consumer product regardless of whether the product has substantial |
||||
commercial, industrial or non-consumer uses, unless such uses represent |
||||
the only significant mode of use of the product. |
||||
|
||||
"Installation Information" for a User Product means any methods, |
||||
procedures, authorization keys, or other information required to install |
||||
and execute modified versions of a covered work in that User Product from |
||||
a modified version of its Corresponding Source. The information must |
||||
suffice to ensure that the continued functioning of the modified object |
||||
code is in no case prevented or interfered with solely because |
||||
modification has been made. |
||||
|
||||
If you convey an object code work under this section in, or with, or |
||||
specifically for use in, a User Product, and the conveying occurs as |
||||
part of a transaction in which the right of possession and use of the |
||||
User Product is transferred to the recipient in perpetuity or for a |
||||
fixed term (regardless of how the transaction is characterized), the |
||||
Corresponding Source conveyed under this section must be accompanied |
||||
by the Installation Information. But this requirement does not apply |
||||
if neither you nor any third party retains the ability to install |
||||
modified object code on the User Product (for example, the work has |
||||
been installed in ROM). |
||||
|
||||
The requirement to provide Installation Information does not include a |
||||
requirement to continue to provide support service, warranty, or updates |
||||
for a work that has been modified or installed by the recipient, or for |
||||
the User Product in which it has been modified or installed. Access to a |
||||
network may be denied when the modification itself materially and |
||||
adversely affects the operation of the network or violates the rules and |
||||
protocols for communication across the network. |
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, |
||||
in accord with this section must be in a format that is publicly |
||||
documented (and with an implementation available to the public in |
||||
source code form), and must require no special password or key for |
||||
unpacking, reading or copying. |
||||
|
||||
7. Additional Terms. |
||||
|
||||
"Additional permissions" are terms that supplement the terms of this |
||||
License by making exceptions from one or more of its conditions. |
||||
Additional permissions that are applicable to the entire Program shall |
||||
be treated as though they were included in this License, to the extent |
||||
that they are valid under applicable law. If additional permissions |
||||
apply only to part of the Program, that part may be used separately |
||||
under those permissions, but the entire Program remains governed by |
||||
this License without regard to the additional permissions. |
||||
|
||||
When you convey a copy of a covered work, you may at your option |
||||
remove any additional permissions from that copy, or from any part of |
||||
it. (Additional permissions may be written to require their own |
||||
removal in certain cases when you modify the work.) You may place |
||||
additional permissions on material, added by you to a covered work, |
||||
for which you have or can give appropriate copyright permission. |
||||
|
||||
Notwithstanding any other provision of this License, for material you |
||||
add to a covered work, you may (if authorized by the copyright holders of |
||||
that material) supplement the terms of this License with terms: |
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the |
||||
terms of sections 15 and 16 of this License; or |
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or |
||||
author attributions in that material or in the Appropriate Legal |
||||
Notices displayed by works containing it; or |
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or |
||||
requiring that modified versions of such material be marked in |
||||
reasonable ways as different from the original version; or |
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or |
||||
authors of the material; or |
||||
|
||||
e) Declining to grant rights under trademark law for use of some |
||||
trade names, trademarks, or service marks; or |
||||
|
||||
f) Requiring indemnification of licensors and authors of that |
||||
material by anyone who conveys the material (or modified versions of |
||||
it) with contractual assumptions of liability to the recipient, for |
||||
any liability that these contractual assumptions directly impose on |
||||
those licensors and authors. |
||||
|
||||
All other non-permissive additional terms are considered "further |
||||
restrictions" within the meaning of section 10. If the Program as you |
||||
received it, or any part of it, contains a notice stating that it is |
||||
governed by this License along with a term that is a further |
||||
restriction, you may remove that term. If a license document contains |
||||
a further restriction but permits relicensing or conveying under this |
||||
License, you may add to a covered work material governed by the terms |
||||
of that license document, provided that the further restriction does |
||||
not survive such relicensing or conveying. |
||||
|
||||
If you add terms to a covered work in accord with this section, you |
||||
must place, in the relevant source files, a statement of the |
||||
additional terms that apply to those files, or a notice indicating |
||||
where to find the applicable terms. |
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the |
||||
form of a separately written license, or stated as exceptions; |
||||
the above requirements apply either way. |
||||
|
||||
8. Termination. |
||||
|
||||
You may not propagate or modify a covered work except as expressly |
||||
provided under this License. Any attempt otherwise to propagate or |
||||
modify it is void, and will automatically terminate your rights under |
||||
this License (including any patent licenses granted under the third |
||||
paragraph of section 11). |
||||
|
||||
However, if you cease all violation of this License, then your |
||||
license from a particular copyright holder is reinstated (a) |
||||
provisionally, unless and until the copyright holder explicitly and |
||||
finally terminates your license, and (b) permanently, if the copyright |
||||
holder fails to notify you of the violation by some reasonable means |
||||
prior to 60 days after the cessation. |
||||
|
||||
Moreover, your license from a particular copyright holder is |
||||
reinstated permanently if the copyright holder notifies you of the |
||||
violation by some reasonable means, this is the first time you have |
||||
received notice of violation of this License (for any work) from that |
||||
copyright holder, and you cure the violation prior to 30 days after |
||||
your receipt of the notice. |
||||
|
||||
Termination of your rights under this section does not terminate the |
||||
licenses of parties who have received copies or rights from you under |
||||
this License. If your rights have been terminated and not permanently |
||||
reinstated, you do not qualify to receive new licenses for the same |
||||
material under section 10. |
||||
|
||||
9. Acceptance Not Required for Having Copies. |
||||
|
||||
You are not required to accept this License in order to receive or |
||||
run a copy of the Program. Ancillary propagation of a covered work |
||||
occurring solely as a consequence of using peer-to-peer transmission |
||||
to receive a copy likewise does not require acceptance. However, |
||||
nothing other than this License grants you permission to propagate or |
||||
modify any covered work. These actions infringe copyright if you do |
||||
not accept this License. Therefore, by modifying or propagating a |
||||
covered work, you indicate your acceptance of this License to do so. |
||||
|
||||
10. Automatic Licensing of Downstream Recipients. |
||||
|
||||
Each time you convey a covered work, the recipient automatically |
||||
receives a license from the original licensors, to run, modify and |
||||
propagate that work, subject to this License. You are not responsible |
||||
for enforcing compliance by third parties with this License. |
||||
|
||||
An "entity transaction" is a transaction transferring control of an |
||||
organization, or substantially all assets of one, or subdividing an |
||||
organization, or merging organizations. If propagation of a covered |
||||
work results from an entity transaction, each party to that |
||||
transaction who receives a copy of the work also receives whatever |
||||
licenses to the work the party's predecessor in interest had or could |
||||
give under the previous paragraph, plus a right to possession of the |
||||
Corresponding Source of the work from the predecessor in interest, if |
||||
the predecessor has it or can get it with reasonable efforts. |
||||
|
||||
You may not impose any further restrictions on the exercise of the |
||||
rights granted or affirmed under this License. For example, you may |
||||
not impose a license fee, royalty, or other charge for exercise of |
||||
rights granted under this License, and you may not initiate litigation |
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that |
||||
any patent claim is infringed by making, using, selling, offering for |
||||
sale, or importing the Program or any portion of it. |
||||
|
||||
11. Patents. |
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this |
||||
License of the Program or a work on which the Program is based. The |
||||
work thus licensed is called the contributor's "contributor version". |
||||
|
||||
A contributor's "essential patent claims" are all patent claims |
||||
owned or controlled by the contributor, whether already acquired or |
||||
hereafter acquired, that would be infringed by some manner, permitted |
||||
by this License, of making, using, or selling its contributor version, |
||||
but do not include claims that would be infringed only as a |
||||
consequence of further modification of the contributor version. For |
||||
purposes of this definition, "control" includes the right to grant |
||||
patent sublicenses in a manner consistent with the requirements of |
||||
this License. |
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free |
||||
patent license under the contributor's essential patent claims, to |
||||
make, use, sell, offer for sale, import and otherwise run, modify and |
||||
propagate the contents of its contributor version. |
||||
|
||||
In the following three paragraphs, a "patent license" is any express |
||||
agreement or commitment, however denominated, not to enforce a patent |
||||
(such as an express permission to practice a patent or covenant not to |
||||
sue for patent infringement). To "grant" such a patent license to a |
||||
party means to make such an agreement or commitment not to enforce a |
||||
patent against the party. |
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, |
||||
and the Corresponding Source of the work is not available for anyone |
||||
to copy, free of charge and under the terms of this License, through a |
||||
publicly available network server or other readily accessible means, |
||||
then you must either (1) cause the Corresponding Source to be so |
||||
available, or (2) arrange to deprive yourself of the benefit of the |
||||
patent license for this particular work, or (3) arrange, in a manner |
||||
consistent with the requirements of this License, to extend the patent |
||||
license to downstream recipients. "Knowingly relying" means you have |
||||
actual knowledge that, but for the patent license, your conveying the |
||||
covered work in a country, or your recipient's use of the covered work |
||||
in a country, would infringe one or more identifiable patents in that |
||||
country that you have reason to believe are valid. |
||||
|
||||
If, pursuant to or in connection with a single transaction or |
||||
arrangement, you convey, or propagate by procuring conveyance of, a |
||||
covered work, and grant a patent license to some of the parties |
||||
receiving the covered work authorizing them to use, propagate, modify |
||||
or convey a specific copy of the covered work, then the patent license |
||||
you grant is automatically extended to all recipients of the covered |
||||
work and works based on it. |
||||
|
||||
A patent license is "discriminatory" if it does not include within |
||||
the scope of its coverage, prohibits the exercise of, or is |
||||
conditioned on the non-exercise of one or more of the rights that are |
||||
specifically granted under this License. You may not convey a covered |
||||
work if you are a party to an arrangement with a third party that is |
||||
in the business of distributing software, under which you make payment |
||||
to the third party based on the extent of your activity of conveying |
||||
the work, and under which the third party grants, to any of the |
||||
parties who would receive the covered work from you, a discriminatory |
||||
patent license (a) in connection with copies of the covered work |
||||
conveyed by you (or copies made from those copies), or (b) primarily |
||||
for and in connection with specific products or compilations that |
||||
contain the covered work, unless you entered into that arrangement, |
||||
or that patent license was granted, prior to 28 March 2007. |
||||
|
||||
Nothing in this License shall be construed as excluding or limiting |
||||
any implied license or other defenses to infringement that may |
||||
otherwise be available to you under applicable patent law. |
||||
|
||||
12. No Surrender of Others' Freedom. |
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or |
||||
otherwise) that contradict the conditions of this License, they do not |
||||
excuse you from the conditions of this License. If you cannot convey a |
||||
covered work so as to satisfy simultaneously your obligations under this |
||||
License and any other pertinent obligations, then as a consequence you may |
||||
not convey it at all. For example, if you agree to terms that obligate you |
||||
to collect a royalty for further conveying from those to whom you convey |
||||
the Program, the only way you could satisfy both those terms and this |
||||
License would be to refrain entirely from conveying the Program. |
||||
|
||||
13. Use with the GNU Affero General Public License. |
||||
|
||||
Notwithstanding any other provision of this License, you have |
||||
permission to link or combine any covered work with a work licensed |
||||
under version 3 of the GNU Affero General Public License into a single |
||||
combined work, and to convey the resulting work. The terms of this |
||||
License will continue to apply to the part which is the covered work, |
||||
but the special requirements of the GNU Affero General Public License, |
||||
section 13, concerning interaction through a network will apply to the |
||||
combination as such. |
||||
|
||||
14. Revised Versions of this License. |
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of |
||||
the GNU General Public License from time to time. Such new versions will |
||||
be similar in spirit to the present version, but may differ in detail to |
||||
address new problems or concerns. |
||||
|
||||
Each version is given a distinguishing version number. If the |
||||
Program specifies that a certain numbered version of the GNU General |
||||
Public License "or any later version" applies to it, you have the |
||||
option of following the terms and conditions either of that numbered |
||||
version or of any later version published by the Free Software |
||||
Foundation. If the Program does not specify a version number of the |
||||
GNU General Public License, you may choose any version ever published |
||||
by the Free Software Foundation. |
||||
|
||||
If the Program specifies that a proxy can decide which future |
||||
versions of the GNU General Public License can be used, that proxy's |
||||
public statement of acceptance of a version permanently authorizes you |
||||
to choose that version for the Program. |
||||
|
||||
Later license versions may give you additional or different |
||||
permissions. However, no additional obligations are imposed on any |
||||
author or copyright holder as a result of your choosing to follow a |
||||
later version. |
||||
|
||||
15. Disclaimer of Warranty. |
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY |
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT |
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY |
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, |
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM |
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF |
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION. |
||||
|
||||
16. Limitation of Liability. |
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING |
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS |
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY |
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE |
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF |
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD |
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), |
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF |
||||
SUCH DAMAGES. |
||||
|
||||
17. Interpretation of Sections 15 and 16. |
||||
|
||||
If the disclaimer of warranty and limitation of liability provided |
||||
above cannot be given local legal effect according to their terms, |
||||
reviewing courts shall apply local law that most closely approximates |
||||
an absolute waiver of all civil liability in connection with the |
||||
Program, unless a warranty or assumption of liability accompanies a |
||||
copy of the Program in return for a fee. |
||||
|
||||
END OF TERMS AND CONDITIONS |
||||
|
||||
How to Apply These Terms to Your New Programs |
||||
|
||||
If you develop a new program, and you want it to be of the greatest |
||||
possible use to the public, the best way to achieve this is to make it |
||||
free software which everyone can redistribute and change under these terms. |
||||
|
||||
To do so, attach the following notices to the program. It is safest |
||||
to attach them to the start of each source file to most effectively |
||||
state the exclusion of warranty; and each file should have at least |
||||
the "copyright" line and a pointer to where the full notice is found. |
||||
|
||||
<one line to give the program's name and a brief idea of what it does.> |
||||
Copyright (C) <year> <name of author> |
||||
|
||||
This program is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
This program is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License |
||||
along with this program. If not, see <https://www.gnu.org/licenses/>. |
||||
|
||||
Also add information on how to contact you by electronic and paper mail. |
||||
|
||||
If the program does terminal interaction, make it output a short |
||||
notice like this when it starts in an interactive mode: |
||||
|
||||
<program> Copyright (C) <year> <name of author> |
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. |
||||
This is free software, and you are welcome to redistribute it |
||||
under certain conditions; type `show c' for details. |
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate |
||||
parts of the General Public License. Of course, your program's commands |
||||
might be different; for a GUI interface, you would use an "about box". |
||||
|
||||
You should also get your employer (if you work as a programmer) or school, |
||||
if any, to sign a "copyright disclaimer" for the program, if necessary. |
||||
For more information on this, and how to apply and follow the GNU GPL, see |
||||
<https://www.gnu.org/licenses/>. |
||||
|
||||
The GNU General Public License does not permit incorporating your program |
||||
into proprietary programs. If your program is a subroutine library, you |
||||
may consider it more useful to permit linking proprietary applications with |
||||
the library. If this is what you want to do, use the GNU Lesser General |
||||
Public License instead of this License. But first, please read |
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>. |
||||
|
@ -0,0 +1,83 @@
@@ -0,0 +1,83 @@
|
||||
<p align="center"> |
||||
<img width="18%" align="center" src="https://raw.githubusercontent.com/zhiyiYo/PyQt-Fluent-Widgets/master/docs/source/_static/logo.png" alt="logo"> |
||||
</p> |
||||
<h1 align="center"> |
||||
PyQt-Fluent-Widgets |
||||
</h1> |
||||
<p align="center"> |
||||
A fluent design widgets library based on PyQt5 |
||||
</p> |
||||
|
||||
<div align="center"> |
||||
|
||||
[](https://pypi.org/project/PyQt-Fluent-Widgets) |
||||
[]() |
||||
[](LICENSE) |
||||
[]() |
||||
|
||||
</div> |
||||
|
||||
<p align="center"> |
||||
English | <a href="docs/README_zh.md">简体中文</a> | <a href="https://qfluentwidgets.com/">官网</a> |
||||
</p> |
||||
|
||||
 |
||||
|
||||
|
||||
## Install |
||||
To install lite version (`AcrylicLabel` is not available): |
||||
```shell |
||||
pip install PyQt-Fluent-Widgets -i https://pypi.org/simple/ |
||||
``` |
||||
Or install full-featured version: |
||||
```shell |
||||
pip install "PyQt-Fluent-Widgets[full]" -i https://pypi.org/simple/ |
||||
``` |
||||
|
||||
If you are using PySide2, PySide6 or PyQt6, you can download the code in [PySide2](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/tree/PySide2), [PySide6](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/tree/PySide6) or [PyQt6](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/tree/PyQt6) branch. |
||||
|
||||
The [Pro version](https://qfluentwidgets.com/pages/pro) library contains more advance components. You can download `PyQt-Fluent-Widgets-Pro-Gallery.zip` from the [release page](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/releases) for preview purposes. |
||||
|
||||
C++ QFluentWidgets require purchasing a license from the [official website](https://qfluentwidgets.com/price). You can also download the compiled demo `C++_QFluentWidgets.zip` from the [release page](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/releases). |
||||
|
||||
> [!Warning] |
||||
> Don't install PyQt-Fluent-Widgets, PyQt6-Fluent-Widgets, PySide2-Fluent-Widgets and PySide6-Fluent-Widgets at the same time, because their package names are all `qfluentwidgets`. |
||||
|
||||
|
||||
## Run Example |
||||
After installing PyQt-Fluent-Widgets package using pip, you can run any demo in the examples directory, for example: |
||||
```shell |
||||
cd examples/gallery |
||||
python demo.py |
||||
``` |
||||
|
||||
If you encounter `ImportError: cannot import name 'XXX' from 'qfluentwidgets'`, it indicates that the package version you installed is too low. You can replace the mirror source with https://pypi.org/simple and reinstall again. |
||||
|
||||
## Documentation |
||||
Want to know more about PyQt-Fluent-Widgets? Please read the [help document](https://qfluentwidgets.com) 👈 |
||||
|
||||
|
||||
## License |
||||
PyQt-Fluent-Widgets is licensed under [GPLv3](./LICENSE) for non-commercial project. For commercial use, please purchase a [commercial license](https://qfluentwidgets.com/price). |
||||
|
||||
Copyright © 2021 by zhiyiYo. |
||||
|
||||
|
||||
## Video Demonstration |
||||
Check out this [▶ example video](https://www.bilibili.com/video/BV12c411L73q) that shows off what PyQt-Fluent-Widgets are capable of 🎉 |
||||
|
||||
## Work with Designer |
||||
[Fluent Client](https://www.youtube.com/watch?v=7UCmcsOlhTk) integrates designer plugins, supporting direct drag-and-drop usage of QFluentWidgets components in Designer. You can purchase the client from [TaoBao](https://item.taobao.com/item.htm?ft=t&id=767961666600) or [Afdian](https://afdian.com/item/6726fcc4247311ef8c6852540025c377). |
||||
|
||||
 |
||||
|
||||
|
||||
## See Also |
||||
Here are some projects based on PyQt-Fluent-Widgets: |
||||
* [**zhiyiYo/Fluent-M3U8**: A cross-platform m3u8 downloader](https://fluent-m3u8.org) |
||||
* [**zhiyiYo/Groove**: A cross-platform music player based on PyQt5](https://github.com/zhiyiYo/Groove) |
||||
* [**zhiyiYo/Alpha-Gobang-Zero**: A gobang robot based on reinforcement learning](https://github.com/zhiyiYo/Alpha-Gobang-Zero) |
||||
|
||||
## Reference |
||||
* [**Windows design**: Design guidelines and toolkits for creating native app experiences](https://learn.microsoft.com/zh-cn/windows/apps/design/) |
||||
* [**Microsoft/WinUI-Gallery**: An app demonstrates the controls available in WinUI and the Fluent Design System](https://github.com/microsoft/WinUI-Gallery) |
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
# Read the Docs configuration file for Sphinx projects |
||||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
||||
|
||||
# Required |
||||
version: 2 |
||||
|
||||
# Set the OS, Python version and other tools you might need |
||||
build: |
||||
os: ubuntu-22.04 |
||||
tools: |
||||
python: "3.8" |
||||
# You can also specify other tool versions: |
||||
# nodejs: "20" |
||||
# rust: "1.70" |
||||
# golang: "1.20" |
||||
|
||||
# Build documentation in the "docs/" directory with Sphinx |
||||
sphinx: |
||||
configuration: docs/source/conf.py |
||||
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs |
||||
# builder: "dirhtml" |
||||
# Fail on all warnings to avoid broken references |
||||
# fail_on_warning: true |
||||
|
||||
# Optionally build your docs in additional formats such as PDF and ePub |
||||
# formats: |
||||
# - pdf |
||||
# - epub |
||||
|
||||
# Optional but recommended, declare the Python requirements required |
||||
# to build your documentation |
||||
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html |
||||
python: |
||||
install: |
||||
- requirements: docs/requirements.txt |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
# Minimal makefile for Sphinx documentation
|
||||
#
|
||||
|
||||
# You can set these variables from the command line, and also
|
||||
# from the environment for the first two.
|
||||
SPHINXOPTS ?= |
||||
SPHINXBUILD ?= sphinx-build |
||||
SOURCEDIR = source |
||||
BUILDDIR = build |
||||
|
||||
# Put it first so that "make" without argument is like "make help".
|
||||
help: |
||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
||||
|
||||
.PHONY: help Makefile |
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
%: Makefile |
||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
Binary file not shown.
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/index.rst:2 b5145793d0214379acbea23b4fa42866 |
||||
msgid "API Reference" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/index.rst:4 8e4a7c0d07be498284f87e427478cc60 |
||||
msgid "This page contains auto-generated API reference documentation [#f1]_." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/index.rst:11 83f60176b364453dba4edcbb08cd6c54 |
||||
msgid "" |
||||
"Created with `sphinx-autoapi <https://github.com/readthedocs/sphinx-" |
||||
"autoapi>`_" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/_rc/index.rst:4 |
||||
#: de6c08655ed04275be57c3aded4c8270 |
||||
msgid "_rc" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,365 @@
@@ -0,0 +1,365 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:2 |
||||
#: 7dd0eb8873cb4990995ef2d8fa75e0da |
||||
msgid "animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:8 |
||||
#: f777a7c98a144f3ea9a489106e3f395a |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 752f358af24c4358be7a0902b25f0c5d |
||||
msgid ":py:obj:`AnimationBase <qfluentwidgets.common.animation.AnimationBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:52 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 84f4b8d834f042f9912b3713edffeb25 b2a46343515149a290fbfba72f6561b9 |
||||
#: d661579bab6b43b3bb38420a698ae969 fe983d4095aa4e1ba3313d6aa46aa4a5 |
||||
msgid "Animation base class" |
||||
msgstr "动画基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: ddf169ae52fa4a799ed3fec057b348b0 |
||||
msgid "" |
||||
":py:obj:`TranslateYAnimation " |
||||
"<qfluentwidgets.common.animation.TranslateYAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: bb679762dacb4ae68a51a973b11bf6eb |
||||
msgid "" |
||||
":py:obj:`BackgroundAnimationWidget " |
||||
"<qfluentwidgets.common.animation.BackgroundAnimationWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:64 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 086e56d18bca4f5badf685b3776fbbb2 7cf575f044604c34bf4400f5d7b168ae |
||||
msgid "Background animation widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 522c97adba6f469581373b2746dcec0d |
||||
msgid "" |
||||
":py:obj:`BackgroundColorObject " |
||||
"<qfluentwidgets.common.animation.BackgroundColorObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:98 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 82c5d549f8944ab486d8608589cdf1be ce71b9c302cc430998ec07fbc25647d8 |
||||
msgid "Background color object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 73549e615967464a81b57ccd8834fd7e |
||||
msgid "" |
||||
":py:obj:`DropShadowAnimation " |
||||
"<qfluentwidgets.common.animation.DropShadowAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 04f3c8375625483eb7a3a842f236e45b e71838216bfe4e4c9b7de5c8822fbfac |
||||
msgid "Drop shadow animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 7ff133c9c77b4c4887fd4d4e5d073c07 |
||||
msgid "" |
||||
":py:obj:`FluentAnimationSpeed " |
||||
"<qfluentwidgets.common.animation.FluentAnimationSpeed>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:133 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 149cd7afee0d4b42b46237b04a6645d6 9ba029d2c6164661b17702a0d92266b5 |
||||
msgid "Fluent animation speed" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 41f47fddcd4f40d8a67407ee2f1f28fa |
||||
msgid "" |
||||
":py:obj:`FluentAnimationType " |
||||
"<qfluentwidgets.common.animation.FluentAnimationType>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:155 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 1c5bde7b61b640b7b3ad1e632e96c7f6 f9555a8ecc9f447ab899a46ddf169090 |
||||
msgid "Fluent animation type" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 86860a9b7f074329b7b1bd9f77c32e68 |
||||
msgid "" |
||||
":py:obj:`FluentAnimationProperty " |
||||
"<qfluentwidgets.common.animation.FluentAnimationProperty>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:192 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 9cbb6724f35041bc9413a7c510567367 bfba27a6abc745e085a4ebf18d4c07e4 |
||||
msgid "Fluent animation property" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 7588b0fc3284466f873ab0fc44039249 |
||||
msgid "" |
||||
":py:obj:`FluentAnimationProperObject " |
||||
"<qfluentwidgets.common.animation.FluentAnimationProperObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:219 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 1e61351cfa234fff8adef2a60f5c6a33 8d17c26bb99c450ba082d3ffe3cffb42 |
||||
msgid "Fluent animation property object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 7b8df328ebb4419a890db83014577172 |
||||
msgid "" |
||||
":py:obj:`PositionObject " |
||||
"<qfluentwidgets.common.animation.PositionObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:251 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 576d41b514a94f838664e87ea044324c c09959d851354629b8f5ed40311de602 |
||||
msgid "Position object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 876bf70947e846cf8dcd9d7f8e54f326 |
||||
msgid ":py:obj:`ScaleObject <qfluentwidgets.common.animation.ScaleObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:268 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: bce7d83f29b348a6af067646d83ab9ad dd276e4639dc4928895c4b87443e041b |
||||
msgid "Scale object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: f6f99c0e8afa45249519a06515da4a7d |
||||
msgid ":py:obj:`AngleObject <qfluentwidgets.common.animation.AngleObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:285 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 3c45a7d33fd84449bb48a990c5760d83 ee388b42b1fa4f049ea602f3f1bc16ff |
||||
msgid "Angle object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 4b9e1535a5bc48aabac9f0a1e3cdbbd7 |
||||
msgid ":py:obj:`OpacityObject <qfluentwidgets.common.animation.OpacityObject>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:302 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 815cda8f791146d8b8b49539b0254792 b8739354441c4a13825eef14585dfaf4 |
||||
msgid "Opacity object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 48d21bcef3134bfab1789e933285883f |
||||
msgid "" |
||||
":py:obj:`FluentAnimation " |
||||
"<qfluentwidgets.common.animation.FluentAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:319 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 85a6601b250349ce95b73839109f99e2 9e53717af8d54a56b3a41dc03e8c0e8f |
||||
#, fuzzy |
||||
msgid "Fluent animation base" |
||||
msgstr "动画基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 929791bf7d9c4cd2bf90af41e1ab2c29 |
||||
msgid "" |
||||
":py:obj:`FastInvokeAnimation " |
||||
"<qfluentwidgets.common.animation.FastInvokeAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:370 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 483376c93a2e4d1f90d5558ecb9f320a b0d719375a2248daa28924dcbf3c06ab |
||||
msgid "Fast invoke animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: f5da00a2f4664cbaa5f2a78ceab78972 |
||||
msgid "" |
||||
":py:obj:`StrongInvokeAnimation " |
||||
"<qfluentwidgets.common.animation.StrongInvokeAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:384 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 1f8f518b761a4245945765f73f7c4744 dc872a344fad4ec09889f6602af71b8c |
||||
msgid "Strong invoke animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 47ed00105ce745748658881202e855d4 |
||||
msgid "" |
||||
":py:obj:`FastDismissAnimation " |
||||
"<qfluentwidgets.common.animation.FastDismissAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:398 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 4c8e67fb382e41d8974679a511496ed1 4f1701032d344ceab12ec043ebebecc6 |
||||
msgid "Fast dismiss animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 68d023996ac8413a8fa09b1306110ad3 |
||||
msgid "" |
||||
":py:obj:`SoftDismissAnimation " |
||||
"<qfluentwidgets.common.animation.SoftDismissAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:405 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 4196b9ecf2954ee7b5891ca568d1c5d3 6e242df1727946c68276d3b6a9151cf8 |
||||
msgid "Soft dismiss animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: f56d9873be4443d49b5195c74b839c28 |
||||
msgid "" |
||||
":py:obj:`PointToPointAnimation " |
||||
"<qfluentwidgets.common.animation.PointToPointAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:419 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 1ea37481276c453ba492ffd2e883dedf 681215c377d7429d911121ce579228ab |
||||
msgid "Point to point animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 36c9b8040de54b9f9e8d964a436846d0 |
||||
msgid "" |
||||
":py:obj:`FadeInOutAnimation " |
||||
"<qfluentwidgets.common.animation.FadeInOutAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:430 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:37:<autosummary>:1 |
||||
#: 17134eff529f432ea90318bdb5e24bf0 6d3f3342ac3347deb7447485fbd3a0bf |
||||
msgid "Fade in/out animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:40 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:96 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:217 |
||||
#: 396a9e1815d34275a49cc124fcc8dae8 6f4e9dcbd957450095061225e8840c9e |
||||
#: a68dccecfe92411985d8291e8f09812b |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:50 |
||||
#: 50b32d5f314149739d74a1b506cb1197 |
||||
msgid "Bases: :py:obj:`AnimationBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:106 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:317 |
||||
#: 25eeb58b0a1c44358e14f371a3f4b4f3 c1bf1e38e93f4349bc7c46976d1b167c |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QPropertyAnimation`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:131 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:153 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:190 |
||||
#: 09e87bdabaa84867b08775f0d7b4bec8 4263b38bc2ef415c824d72c333d83532 |
||||
#: bd7ce16a2498480caec14858c2b01e04 |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:234 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:353 |
||||
#: 03611b6426854ac8933984775d9ddd7b c15bbd943b66465386d34e2fd447b317 |
||||
msgid "register menu animation manager" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:237 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:356 |
||||
#: 6dbd34ec224b412c80c8c6049c939bca dcbc1716f4704529b4b6b3d79ac95ec9 |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:238 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:357 |
||||
#: 72db586bc2e24d83a74f352ebfb4f84e 8b421333628b47d58409ecd537075949 |
||||
msgid "name: Any" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:239 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:358 |
||||
#: 2d1c717c685442dfb2d622115ffc80a3 c4b8c499cbdb4ac8bb9d8cc6311df73a |
||||
msgid "the name of manager, it should be unique" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:249 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:266 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:283 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:300 |
||||
#: 621cda0b95954907990911164ee49156 73a3eefb55ef49028d73c637847f60bd |
||||
#: 92e4ddfac3994c058437ad6a8f26115c e7a7cdebc6384795893e9fc49452c942 |
||||
msgid "Bases: :py:obj:`FluentAnimationProperObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:335 |
||||
#: 48a6c29dd2764fbfa1a3eb3d0e4eafca |
||||
msgid "set the speed of animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:368 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:382 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:403 |
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:428 |
||||
#: 0fdb466b66d348adb5eb0aeb0aa63248 44056150ce2b452797e5ae1262199e12 |
||||
#: 69474154819f497cb7c5fbe6f795af56 e5712cb0fc9e493186ee36a1c375d8f7 |
||||
msgid "Bases: :py:obj:`FluentAnimation`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:396 |
||||
#: 68ef35634b7c48e2a5f2123eed10ce1d |
||||
msgid "Bases: :py:obj:`FastInvokeAnimation`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/animation/index.rst:417 |
||||
#: fd920b593fdc4ed2b0b4c5564fb90c7f |
||||
msgid "Bases: :py:obj:`FastDismissAnimation`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,161 @@
@@ -0,0 +1,161 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:2 |
||||
#: 2b55433f0a2443fcba5a8a87b82624e5 |
||||
msgid "auto_wrap" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:8 |
||||
#: d0f11312e7844201a2c365c5dc5fcd4d |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:19:<autosummary>:1 |
||||
#: fc49aa87e6824856b188676060447d1f |
||||
msgid ":py:obj:`CharType <qfluentwidgets.common.auto_wrap.CharType>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:24 |
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:19:<autosummary>:1 |
||||
#: 633a73469e814e6faf1992a92f494b3c 9b38639650b44835ad00a9d64cff6cde |
||||
msgid "Generic enumeration." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:19:<autosummary>:1 |
||||
#: ef88d94b2b444187bb2dc9847a92d082 |
||||
msgid ":py:obj:`TextWrap <qfluentwidgets.common.auto_wrap.TextWrap>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:44 |
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:19:<autosummary>:1 |
||||
#: 319c6912964940d991472cc7dd5a053a c7dc1047b1d747b09adf4a530063d29b |
||||
msgid "Text wrap" |
||||
msgstr "文本折叠类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:22 |
||||
#: 20c7b7d267e64ecabd09e9cc08c9bfa0 |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:26 |
||||
#: a70ea2994191423daa1716dccd5a58c5 |
||||
msgid "Derive from this class to define new enumerations." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:53 |
||||
#: 65cb5ba560a745ca91b45edfb778130e |
||||
#, fuzzy |
||||
msgid "Returns the width of the char" |
||||
msgstr "返回一个字符的宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:59 |
||||
#: 9adbbf1b695b435da51a420c1db600b6 |
||||
msgid "Returns the width of the text" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:65 |
||||
#: d7aa3be2a4ec4207821c5ab6456ea385 |
||||
#, fuzzy |
||||
msgid "Returns the type of the char" |
||||
msgstr "返回一个字符的宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:71 |
||||
#: 890b32539dea45129de3aacbe71bc29b |
||||
msgid "Process whitespace and leading and trailing spaces in strings" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:77 |
||||
#: f96971f10c9947508e3852608271ec31 |
||||
msgid "Split long token into smaller chunks." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:83 |
||||
#: deeea9a49f414146bdaa41bbda57ab97 |
||||
msgid "tokenize line" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:89 |
||||
#: 61613ec096c34be7bbfdd0306362d1a3 |
||||
msgid "Wrap according to string length" |
||||
msgstr "根据指定最大长度进行折叠" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:92 |
||||
#: 1af6f9a6fd974f46b794c5efbd1c2377 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:94 |
||||
#: 0308359d82d24f3f9b49ddf9101ef7a9 |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:94 |
||||
#: 9bf75a72bf0c4d1b9037129857de42e6 |
||||
msgid "the text to be wrapped" |
||||
msgstr "将被折叠的字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:97 |
||||
#: 151db62197e44da79f1b9ca35da825d1 |
||||
msgid "width: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:97 |
||||
#: 688923d2d7c346d7b09503cf7599569a |
||||
msgid "the maximum length of a single line, the length of Chinese characters is 2" |
||||
msgstr "单行的最大长度,英文字符长度为 1,其他字符长度为 2" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:100 |
||||
#: d21372ba218d4d05814be3020a17a9ba |
||||
msgid "once: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:100 |
||||
#: a447724f0f6e4ede9f2e9d8754cf01a3 |
||||
msgid "whether to wrap only once" |
||||
msgstr "是否只换行一次" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:103 |
||||
#: 61760a547b1347b5ab4b6dd2efd0dc0a |
||||
msgid "Returns" |
||||
msgstr "返回值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:105 |
||||
#: 49de8725501b4b39b7f852b3bc1a1566 |
||||
msgid "wrap_text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:105 |
||||
#: 08aa69273a5c44d2b4d1770783dcaa16 |
||||
msgid "text after auto word wrap process" |
||||
msgstr "折叠处理后的字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:107 |
||||
#: 5a55a065b5e04220a2017792f1f135f1 |
||||
msgid "is_wrapped: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/auto_wrap/index.rst:108 |
||||
#: e42e8efe5a1a4bc3834764cb655f957c |
||||
msgid "whether a line break occurs in the text" |
||||
msgstr "原始字符串是否发生折叠" |
||||
|
@ -0,0 +1,55 @@
@@ -0,0 +1,55 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:2 |
||||
#: af54a14d52a742eeb574d2d3ae161004 |
||||
msgid "color" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:8 |
||||
#: 93a90dacc825431887395d1933250afe |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:18:<autosummary>:1 |
||||
#: eabcf4716a2e41d5a43561b8a98143b6 |
||||
msgid "" |
||||
":py:obj:`FluentThemeColor " |
||||
"<qfluentwidgets.common.color.FluentThemeColor>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:18:<autosummary>:1 |
||||
#: 1611317e4d1c4c259f228850003b57d1 312115924fdb46589e3156fd567ee8d3 |
||||
msgid "Fluent theme color" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:21 |
||||
#: 6bfd1f5562584532ab67fcbb21febdcc |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/color/index.rst:25 |
||||
#: 552dbd7208664d4493b9b20955675b45 |
||||
msgid "Refer to: https://www.figma.com/file/iM7EPX8Jn37zjeSezb43cF" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,436 @@
@@ -0,0 +1,436 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:2 |
||||
#: 11e1b31c88f845f8be07d6d176a94209 |
||||
msgid "config" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:8 |
||||
#: 5e4a8334f9f044f69c92f2bc6476d9c7 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 7563f3d8d3e94b6aa6774099b8a15663 |
||||
msgid ":py:obj:`Theme <qfluentwidgets.common.config.Theme>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 2f7845f3de3d4fabaebd9d83885abffe e4f2cbbca75240b7b81e94b25fba4041 |
||||
msgid "Theme enumeration" |
||||
msgstr "主题枚举类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 12a9ec4f80984f0ea8c0be66d5b36b76 |
||||
msgid ":py:obj:`ConfigValidator <qfluentwidgets.common.config.ConfigValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:93 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 536df1ca0508421ab8bd6ce016f6be45 b164f1a1722c4b29be48e80486e14ecf |
||||
msgid "Config validator" |
||||
msgstr "配置校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: c4fd76ba643149038f1ed5e7548997fc |
||||
msgid ":py:obj:`RangeValidator <qfluentwidgets.common.config.RangeValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:110 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 3a15267c7de64808b1e92531958cde70 476eef65b85e4a5fa04043714f2e7a35 |
||||
msgid "Range validator" |
||||
msgstr "范围校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: cbb00d8019064044984dd74bfa73dec4 |
||||
msgid "" |
||||
":py:obj:`OptionsValidator " |
||||
"<qfluentwidgets.common.config.OptionsValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:127 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 9b74ba07881441d19bfa5b413a3671fe f0f3591fea0348f6b824f63191716010 |
||||
msgid "Options validator" |
||||
msgstr "选项校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: c19a9c71023f49e185eb2a8077b40a56 |
||||
msgid ":py:obj:`BoolValidator <qfluentwidgets.common.config.BoolValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:144 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 987c24e281ea4c04997817431923ae56 bab60fb0ffc847839b35caf59ae0993f |
||||
msgid "Boolean validator" |
||||
msgstr "布尔校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 0f3359de40784c579db167f42ae96dbc |
||||
msgid ":py:obj:`FolderValidator <qfluentwidgets.common.config.FolderValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:151 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: dca66f2dce204886aa6d958643099920 e195801fee4c4122a8171a77ce6305ad |
||||
msgid "Folder validator" |
||||
msgstr "文件夹校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 1851f70fe9434d1b8df1c73604d092b6 |
||||
msgid "" |
||||
":py:obj:`FolderListValidator " |
||||
"<qfluentwidgets.common.config.FolderListValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:168 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: ddb0dd3a91e343e6846b0476cc7b327d e8b6a966b27f47fe930bd31aa34fb1f3 |
||||
msgid "Folder list validator" |
||||
msgstr "文件夹列表校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: deb7e0d6fa7b47d0b640bb66cc53dfa4 |
||||
msgid ":py:obj:`ColorValidator <qfluentwidgets.common.config.ColorValidator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:185 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 8553fd9cdb7043b59cb06bb1342a6beb 8555aa45a16041eba208007fbf88c508 |
||||
msgid "RGB color validator" |
||||
msgstr "颜色校验器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: b37cf95c096d474e8bd5073d24f0317a |
||||
msgid "" |
||||
":py:obj:`ConfigSerializer " |
||||
"<qfluentwidgets.common.config.ConfigSerializer>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:200 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 228cde129d034604bd4c6f637dd30c2d d3ecce8468614a32ae2c27c9f38c8b10 |
||||
msgid "Config serializer" |
||||
msgstr "配置序列化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 96e405ca0a094a0ea3f37073dac94d99 |
||||
msgid ":py:obj:`EnumSerializer <qfluentwidgets.common.config.EnumSerializer>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:217 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: cd223e20fee144adaaff78a1e0449ac6 e2b48a5ff5ce45b38b4686dbe491b9ca |
||||
msgid "enumeration class serializer" |
||||
msgstr "枚举类序列化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 4c694c2c658b4b04a911be792e0c87f0 |
||||
msgid ":py:obj:`ColorSerializer <qfluentwidgets.common.config.ColorSerializer>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:234 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 8639ea945bae4e94815863cc433d48c5 fd28fa92c88240b6a1d6576368add910 |
||||
msgid "QColor serializer" |
||||
msgstr "颜色序列化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 0b92a29a6d1b4f448f2b053e0aa8e443 |
||||
msgid ":py:obj:`ConfigItem <qfluentwidgets.common.config.ConfigItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:251 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 30b2bfd1237a42e7a52d3c2887a3c59b b29dce8f69c5483ca7aba587c4176cc2 |
||||
msgid "Config item" |
||||
msgstr "配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 96c3a36cd2334d35b058af620519b324 |
||||
msgid ":py:obj:`RangeConfigItem <qfluentwidgets.common.config.RangeConfigItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:281 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 123ae0e991bd4d50b9ebfebf8e9914cf f2e4b97a15c345af9ac1a8b743509dcb |
||||
msgid "Config item of range" |
||||
msgstr "取值范围配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: c3baafe465b44c3d91f719321bdcac9e |
||||
msgid "" |
||||
":py:obj:`OptionsConfigItem " |
||||
"<qfluentwidgets.common.config.OptionsConfigItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:296 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 628a5597976943bb9e0fee62e65d9be9 800e52006b1341ba9b9bf2c0129b975c |
||||
msgid "Config item with options" |
||||
msgstr "选项配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 1ae0bd7e7dde40b98eff59b42dd26274 |
||||
msgid ":py:obj:`ColorConfigItem <qfluentwidgets.common.config.ColorConfigItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:309 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 7d58695d18a84a80881f16ad04c3a192 f9988e84adaa43cf9985ac0f504a573c |
||||
msgid "Color config item" |
||||
msgstr "颜色配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 80a0b146b9df47dea607e81de14391dc |
||||
msgid ":py:obj:`QConfig <qfluentwidgets.common.config.QConfig>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:319 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:34:<autosummary>:1 |
||||
#: 6a49044dc9034bd79d41b686703ba84a d11249a0c0b94feaa377976ea00d9376 |
||||
msgid "Config of app" |
||||
msgstr "配置类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:43:<autosummary>:1 |
||||
#: 589ee553c8d14e8ba154d4d4f7c21b1a |
||||
msgid ":py:obj:`isDarkTheme <qfluentwidgets.common.config.isDarkTheme>`\\ \\(\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:404 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:43:<autosummary>:1 |
||||
#: 9218e323b2c84bbb873c17c9a2cce913 f4b63d3a84954c29b6d11d912f3eef1d |
||||
msgid "whether the theme is dark mode" |
||||
msgstr "当前的应用主题是否为深色模式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:43:<autosummary>:1 |
||||
#: fbb5f008050743bd886a54aec58110e9 |
||||
msgid ":py:obj:`theme <qfluentwidgets.common.config.theme>`\\ \\(\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:409 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:43:<autosummary>:1 |
||||
#: 38ed2374711946ab936ca2da96494f22 71c36d5f6f09450d8eca002d90a90209 |
||||
msgid "get theme mode" |
||||
msgstr "返回当前主题" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:49:<autosummary>:1 |
||||
#: 62f13b21ac6b4e3c98d3e7fb4aecb898 |
||||
msgid ":py:obj:`ALERT <qfluentwidgets.common.config.ALERT>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:49:<autosummary>:1 |
||||
#: d5024ededc32453da66922765908a5ff |
||||
msgid ":py:obj:`qconfig <qfluentwidgets.common.config.qconfig>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:71 |
||||
#: 4ce83e5d02e1400680597f7edc3db408 |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:97 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:114 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:131 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:155 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:172 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:189 |
||||
#: 6ae0dd1b65a546689554bf6af8ae5585 80978dd53cdd41c3bb3ff16ab93ab750 |
||||
#: 8cd6d84af4664d86ba68c94b9ffeb16b a92399ee6d4c4f278ec53aa92fc56c05 |
||||
#: b538a311b86846a195b3e52104bc1045 d4f32d49049342b397f7108bba4969b6 |
||||
msgid "Verify whether the value is legal" |
||||
msgstr "验证值是否合法" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:102 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:136 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:160 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:177 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:194 |
||||
#: 0eaa1b23f0504a1d88a4d410c64985c7 b56c5608140e494c88380c3ac52cdfb2 |
||||
#: bb5718e5bca94da7b3e2ccbf860073dd c7066e71246843b9b636bd4e8616f09b |
||||
#: c71d821a74b74474add8ea4ff3d22c94 d7473cc7c25a42cb92266245cd496f85 |
||||
msgid "correct illegal value" |
||||
msgstr "纠正非法值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:125 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:149 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:166 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:183 |
||||
#: 05d58192d43c40dbbe8507729cbd53c9 52c98723a953423695aafa35f8c2bed9 |
||||
#: 66be7910246149858f89189b99f55e09 78b5288a40694bd98c3e856a10e08227 |
||||
#: e89c6186f7c54b998e707b86397c62a2 |
||||
msgid "Bases: :py:obj:`ConfigValidator`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:142 |
||||
#: d8d4cce20e6d447285f70d12f7e86df7 |
||||
msgid "Bases: :py:obj:`OptionsValidator`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:204 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:221 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:238 |
||||
#: 342e8a506af24f6dba9094936ff950b9 3a11e60866d94611a4ac646c36792e5a |
||||
#: 4e749193e9fa4075a94e02a6a940b95b |
||||
msgid "serialize config value" |
||||
msgstr "序列化配置项的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:209 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:226 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:243 |
||||
#: 268f312fc2ae4823b1ad9ea0c3ff2a23 5fdfdcd7d2e645a794b31daadc165ef7 |
||||
#: e9e7edc83e684282b03d8e117acaf7f3 |
||||
msgid "deserialize config from config file's value" |
||||
msgstr "从配置文件中反序列化配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:215 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:232 |
||||
#: 78e6f851b4e84ac9855b8f25934a1895 c6cd4e7c973e4356bcc21d266505bd6c |
||||
msgid "Bases: :py:obj:`ConfigSerializer`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:249 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:317 |
||||
#: 29454dc1a9b94f35a9e6f5f1a3b72968 9f16013ef5e94bd0b347249710ef376c |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:255 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:352 |
||||
#: 8429e51915f24bf9a7f28ef203f9f603 ff40f76c9bb84592a5c367efc994bdf0 |
||||
msgid "get the value of config item" |
||||
msgstr "返回配置项的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:260 |
||||
#: b73f205fb17d4862a41343f2e7eb4d0c |
||||
msgid "get the config key separated by `.`" |
||||
msgstr "返回由 `.` 分隔的配置项 id" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:279 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:294 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:307 |
||||
#: 0059605a1c3442d99455e93d839d3175 174e88c002384ea3a363ee9281f1cfdb |
||||
#: bbf3f42f59a548daac051e985625d5bf |
||||
msgid "Bases: :py:obj:`ConfigItem`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:285 |
||||
#: 1a0dd2acb07c4397aeacbd3471eadc9d |
||||
msgid "get the available range of config" |
||||
msgstr "返回配置项合法取值返回" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:323 |
||||
#: bedfecc0df214bcbae4d0b10ce71abb9 |
||||
msgid "get theme mode, can be `Theme.Light` or `Theme.Dark`" |
||||
msgstr "返回应用主题,可以是 `Theme.Light` 或 `Theme.Dark`" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:357 |
||||
#: 4d6ce0760dd14424b357dbabbff6d8a1 |
||||
msgid "set the value of config item" |
||||
msgstr "设置配置项的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:360 |
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:389 |
||||
#: a0225cfee3274be8a483842609deb4f5 b8dd68dc149a496fab26b23e34c97f01 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:362 |
||||
#: 69c3c4f5171a4214841b1c51cdc14fdf |
||||
msgid "item: ConfigItem" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:362 |
||||
#: 8e0f1aaec907402b945bf83a60c2bdf1 |
||||
msgid "config item" |
||||
msgstr "配置项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:365 |
||||
#: 0ef11df4d2844efeb56b675b0047d729 |
||||
msgid "value:" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:365 |
||||
#: a82d48d5270e4ea3a28e781d477c7c4a |
||||
msgid "the new value of config item" |
||||
msgstr "配置项的新值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:368 |
||||
#: 88b1deb0f9b64c5e905bf88c7b688bec |
||||
msgid "save: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:368 |
||||
#: 2c40445a614e456e9b89d5be543011be |
||||
msgid "whether to save the change to config file" |
||||
msgstr "是否将当前改变保存到配置文件中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:370 |
||||
#: b8dc54a68a7948a6b71ca176a8e39abc |
||||
msgid "copy: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:371 |
||||
#: dd11a7435dd94296a6c7f5d720c90921 |
||||
msgid "whether to deep copy the new value" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:376 |
||||
#: 705a669a43694a58829ec82457b47706 |
||||
msgid "convert config items to `dict`" |
||||
msgstr "将配置转换为字典" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:381 |
||||
#: fb74ba76a980477cae4cda14050354a1 |
||||
msgid "save config" |
||||
msgstr "保存配置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:386 |
||||
#: 5918e43f5ad74694915c30253956afeb |
||||
msgid "load config" |
||||
msgstr "载入配置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:391 |
||||
#: 00bd201ffc2d4152afd771a334a192e9 |
||||
msgid "file: str or Path" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:391 |
||||
#: aec766f4c1c14edfa340773827c51b63 |
||||
msgid "the path of json config file" |
||||
msgstr "json 配置文件的路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:393 |
||||
#: fcbdc57c9e9749a7b3c3541be8f5681a |
||||
msgid "config: Config" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/config/index.rst:394 |
||||
#: 7b810e472cdc4eb4b67b8494b0d4ed5d |
||||
msgid "config object to be initialized" |
||||
msgstr "将被初始化的配置对象" |
||||
|
Binary file not shown.
@ -0,0 +1,252 @@
@@ -0,0 +1,252 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-05-24 10:30+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:2 |
||||
#: 42001f81dc2a4d51bc4edb171c697e04 |
||||
msgid "deprecation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:8 |
||||
#: d88b170eeb7f4e92be94085e04be64ee |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:19:<autosummary>:1 |
||||
#: d45a376b8b2445529bb0bc6410cbd647 |
||||
msgid "" |
||||
":py:obj:`warn_deprecated " |
||||
"<qfluentwidgets.common.deprecation.warn_deprecated>`\\ \\(since\\[\\, " |
||||
"message\\, name\\, alternative\\, ...\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:19:<autosummary>:1 |
||||
#: 811cfbba21284dbea98153e4bd143908 a741b2852c764b2e938005bf0238d4a4 |
||||
msgid "Display a standardized deprecation." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:19:<autosummary>:1 |
||||
#: 9866ab1fb90248c58ae038a9c0819de3 |
||||
msgid "" |
||||
":py:obj:`deprecated <qfluentwidgets.common.deprecation.deprecated>`\\ " |
||||
"\\(since\\[\\, message\\, name\\, alternative\\, ...\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:84 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:19:<autosummary>:1 |
||||
#: 65f38acfd541450fa7d272d606129eee e73199869c154091981641948f26b64d |
||||
msgid "Decorator to mark a function, a class, or a property as deprecated." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:22 |
||||
#: 8fa3eaa1ec334204a7ca153058a381a7 |
||||
msgid "Bases: :py:obj:`UserWarning`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:24 |
||||
#: cd711e59f228497a9b11f11e5f221761 |
||||
msgid "A class for issuing deprecation warnings for PyQt-Fluent-Widgets users." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:26 |
||||
#: e22b60bbe3a34fa3a10d851af649c249 |
||||
msgid "" |
||||
"In light of the fact that Python builtin DeprecationWarnings are ignored " |
||||
"by default as of Python 2.7 (see link below), this class was put in to " |
||||
"allow for the signaling of deprecation, but via UserWarnings which are " |
||||
"not ignored by default." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:31 |
||||
#: 2bc3573a4f4c47eb969b38d02a166198 |
||||
msgid "https://docs.python.org/dev/whatsnew/2.7.html#the-future-for-python-2-x" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:39 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:92 |
||||
#: d185cdf2445c4a9da58c803208b98238 f81397ff0284421e9724b74ea0d47767 |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:41 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:94 |
||||
#: 50a02f9f162b428c8e6fa6ad7b9349d8 8ee6448cbd9441988bc085fcae691d23 |
||||
msgid "since" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:-1 |
||||
#: e276750103da4eb0a4c058f0e8e652a2 ee752ed5f0ad4a39a7f0e2a69c1bff85 |
||||
msgid "str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:41 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:94 |
||||
#: 5b6b21ede13e4b148d405101fc58ca99 d59a03d814ad4b20b21291daa301b5e3 |
||||
msgid "The release at which this API became deprecated." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:47 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:100 |
||||
#: 5bd81a6c5461448ba11ffd8b91f94f7e 8eb38930583441dbad3cb8b8e467d8db |
||||
msgid "message" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:-1 |
||||
#: 0b87f344f8914ec2ad498bac75b49491 3e489c0376f24f4e9d46f48b392476c0 |
||||
#: 5066eca31e324c68b85e85bfeb5012d7 813db2844700463ab6604e59ecdeb52c |
||||
#: 9fcbca92c7824237bd1c0bb7e78b5923 b9c60988685742f9891b6adb4266affe |
||||
#: bad84609b94641a18f3af36baebeb5af bbb09e541d6d403d96cf63217234c467 |
||||
#: c7bd9f89d3424b0897ed99e7a55647bd d2b86504190845d4aae17ec9db4c4352 |
||||
#: db69449ae7844d08ab04ab9390da41c2 feaa580111f44d86b832222bdeaaccbf |
||||
msgid "str, optional" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:44 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:97 |
||||
#: 09953513b80941f183483a3b84ec5b8c 312bc0960b8746ddb13e1a30d1f8236e |
||||
#, python-format |
||||
msgid "" |
||||
"Override the default deprecation message. The ``%(since)s``, " |
||||
"``%(name)s``, ``%(alternative)s``, ``%(obj_type)s``, ``%(addendum)s``, " |
||||
"and ``%(removal)s`` format specifiers will be replaced by the values of " |
||||
"the respective arguments passed to this function." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:50 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:104 |
||||
#: 08f12e00e2614381996708c448360ea7 e025a52e887442c4875e6f697a0b916c |
||||
msgid "name" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:50 |
||||
#: c0df274cc4f545d5a93557f54eba08c6 |
||||
msgid "The name of the deprecated object." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:55 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:109 |
||||
#: 4aeafb7ff0434bdaa2157f44d1984835 6f30146e272e486191c366779111be6e |
||||
msgid "alternative" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:53 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:107 |
||||
#: 814572a237b54648a2d2881ad49aa4d3 98898d4e4f6f44b4a958a8a5b9c81d79 |
||||
msgid "" |
||||
"An alternative API that the user may use in place of the deprecated API." |
||||
" The deprecation warning will tell the user about this alternative if " |
||||
"provided." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:59 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:113 |
||||
#: 66aa39b085af415789108c2d2e2cf891 7ca73b997d1546d5880256806e023375 |
||||
msgid "pending" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:-1 |
||||
#: 09bc36aa49aa4718bf0b57538d4fff77 1684fd2e3c1440d6aa5f8784d3f9ef74 |
||||
msgid "bool, optional" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:58 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:112 |
||||
#: 1a54f344724e47fabf0f4fe03ad2ef4f eb08e5b2e26442ddacc3dfc5dccb5292 |
||||
msgid "" |
||||
"If True, uses a PendingDeprecationWarning instead of a " |
||||
"DeprecationWarning. Cannot be used together with *removal*." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:62 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:117 |
||||
#: 18a4d7424bf2496fbf5c631726175ce0 96c38d26a1b44297b043c650080ea06e |
||||
msgid "obj_type" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:62 |
||||
#: b8c8987042b1495093c54b71dbda7e8e |
||||
msgid "The object type being deprecated." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:120 |
||||
#: 8ab87b82114141af995cd3cf0b4f577f aa0681adc3bc48bd8251d299e57db434 |
||||
msgid "addendum" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:120 |
||||
#: 74dc3aa829d74f0b898941e5dd05fd62 a6c861443e3740eea2430a96571cd261 |
||||
msgid "Additional text appended directly to the final message." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:126 |
||||
#: 142511d4aa4442dfa92b9f74fe548f74 1b0cf73151cf4b8aae44d2bf9cd5fe70 |
||||
msgid "removal" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:68 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:123 |
||||
#: b5bbe770349c42ada0e6868a51d96812 d4eeef9a366545c1811d0e868962c675 |
||||
msgid "" |
||||
"The expected removal version. With the default (an empty string), a " |
||||
"removal version is automatically computed from *since*. Set to other " |
||||
"Falsy values to not schedule a removal date. Cannot be used together " |
||||
"with *pending*." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:74 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:129 |
||||
#: 81d74cedf10c4eae87250b95654fbce0 965003053eff4092a6a6d4ea7aa2f86a |
||||
msgid "Examples" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:75 |
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:130 |
||||
#: cb6f19d2b4964b1a8e147584e21d5540 eaccfe74776d49f9805e8c4c9d76302d |
||||
msgid "Basic example::" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:86 |
||||
#: 0fe8cdd4b02e4e96b878a459daff76a1 |
||||
msgid "" |
||||
"When deprecating a classmethod, a staticmethod, or a property, the " |
||||
"``@deprecated`` decorator should go *under* ``@classmethod`` and " |
||||
"``@staticmethod`` (i.e., `deprecated` should directly decorate the " |
||||
"underlying callable), but *over* ``@property``." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:103 |
||||
#: d5548f2d60f84803b587988f4835b5d2 |
||||
msgid "" |
||||
"The name used in the deprecation message; if not provided, the name is " |
||||
"automatically determined from the deprecated object." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/deprecation/index.rst:116 |
||||
#: a06b917ee8c04695b1a058b6c8a51739 |
||||
msgid "" |
||||
"The object type being deprecated; by default, 'class' if decorating a " |
||||
"class, 'attribute' if decorating a property, 'function' otherwise." |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:2 |
||||
#: caa0990cf53a4972939189597b674c25 |
||||
msgid "exception_handler" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:8 |
||||
#: 398829a90fc5415798d76e3a5fd92c77 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:18:<autosummary>:1 |
||||
#: 86529f3e7c4d42ec8432c0d0bd94d92a |
||||
msgid "" |
||||
":py:obj:`exceptionHandler " |
||||
"<qfluentwidgets.common.exception_handler.exceptionHandler>`\\ " |
||||
"\\(\\*default\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:21 |
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:18:<autosummary>:1 |
||||
#: 9747eb39f36f4c44960bee98af2244a5 d79fb683b2224f01b8a4e96a260294da |
||||
msgid "decorator for exception handling" |
||||
msgstr "异常处理装饰器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:24 |
||||
#: 14b897b40a99498b8b0e40a1fba77d17 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:25 |
||||
#: 70f1274140fc446b8d997b3e32ada3c0 |
||||
msgid "*default:" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/exception_handler/index.rst:26 |
||||
#: 440d2992d3874731a8e0bb5ec48fdb1f |
||||
msgid "the default value returned when an exception occurs" |
||||
msgstr "异常发生时返回的默认值" |
||||
|
Binary file not shown.
@ -0,0 +1,108 @@
@@ -0,0 +1,108 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:2 |
||||
#: 91814b7826b64ba2b0288f6abeb9eb70 |
||||
msgid "font" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:8 |
||||
#: 266f25b1283e46578d0b31d2b2c29b0f |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:19:<autosummary>:1 |
||||
#: e9616b2277264d37884c2c2f28bb5dd2 |
||||
msgid "" |
||||
":py:obj:`setFont <qfluentwidgets.common.font.setFont>`\\ \\(widget\\[\\, " |
||||
"fontSize\\, weight\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:22 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:19:<autosummary>:1 |
||||
#: 28b28744f68f458a8eea4d84ba570a45 6a15418fea3e4c26ba69a7b8e481ee25 |
||||
msgid "set the font of widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:19:<autosummary>:1 |
||||
#: 86d2bfeed32e47699f197020e37ca2dd |
||||
msgid "" |
||||
":py:obj:`getFont <qfluentwidgets.common.font.getFont>`\\ " |
||||
"\\(\\[fontSize\\, weight\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:38 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:19:<autosummary>:1 |
||||
#: a1113e3584d4483c943d33520e895f3e be3e74044fef4a569aedba4c4b59ca8c |
||||
msgid "create font" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:25 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:41 |
||||
#: 3c49679ecad14979a25b1170baf00a7e 83eaf19aa4414befae63d91b6559c27e |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:27 |
||||
#: 4f5e450011d2454a9d304284a1860de1 |
||||
msgid "widget: QWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:27 |
||||
#: 3489a569786e4ed1a7cb087213e103af |
||||
msgid "the widget to set font" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:30 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:43 |
||||
#: 8fbab91620b64d8682e9e25a31178762 9d3655fc34184fd097fe4d755343546a |
||||
msgid "fontSize: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:30 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:43 |
||||
#: 7be6d0e57f30485d9d4846fd1f52315c ec531a9d7a704f00a8e9b785423e8385 |
||||
msgid "font pixel size" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:32 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:45 |
||||
#: 25d28dca776e4daf9a6bca0c74315870 adbca2e9fb184f53937cf041abf6ff26 |
||||
msgid "weight: `QFont.Weight`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:33 |
||||
#: ../../source/autoapi/qfluentwidgets/common/font/index.rst:46 |
||||
#: 1319ec9a8469498591ea23c3a96a8010 ea5b800ad6b34c288657256dcfd4f4ae |
||||
msgid "font weight" |
||||
msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`setFont <qfluentwidgets.common.font.setFont>`\\ " |
||||
#~ "\\(widget\\[\\, fontSize\\]\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`getFont <qfluentwidgets.common.font.getFont>`\\ " |
||||
#~ "\\(\\[fontSize\\]\\)" |
||||
#~ msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,417 @@
@@ -0,0 +1,417 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:2 |
||||
#: 67f7b8ad3c124babbd6e857895ce25e3 |
||||
msgid "icon" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:8 |
||||
#: c63a50ab423f4577ad773e5215646e8c |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 2a5b9dffaf7b46338a1cf35db99c9fd1 |
||||
msgid ":py:obj:`FluentIconEngine <qfluentwidgets.common.icon.FluentIconEngine>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:39 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 8dfd9bd51e174af69ad9a590cadfac9a d04494843b204beb80bacc46be325106 |
||||
#, fuzzy |
||||
msgid "Fluent icon engine" |
||||
msgstr "svg 图标路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 44997fef43b649fbb55b058d9d8e68cf |
||||
msgid ":py:obj:`SvgIconEngine <qfluentwidgets.common.icon.SvgIconEngine>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:49 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 272837f74aee4035b1a99de7ff31ef1d 3694634e48d24a44ba839e6ec6460771 |
||||
#, fuzzy |
||||
msgid "Svg icon engine" |
||||
msgstr "svg 图标路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: a90765dcf9fc46099fb87f1bfa8026e3 |
||||
msgid ":py:obj:`FluentIconBase <qfluentwidgets.common.icon.FluentIconBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 6bc19abb05c14be3ac69e758dbdf4cde 82cdfd3d20e448ce924c154ad725966e |
||||
msgid "Fluent icon base class" |
||||
msgstr "流畅图标基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 30cc07e7740d40478485fecba65cf814 |
||||
msgid ":py:obj:`FluentIcon <qfluentwidgets.common.icon.FluentIcon>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:196 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 3d16f9d5e3504fe9995ad6111c9953c7 a67dadf42b224622a4488ff7b99136e7 |
||||
msgid "Fluent icon" |
||||
msgstr "流畅图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 44be4384c44048f2aa8136e8f48a5516 |
||||
msgid ":py:obj:`Icon <qfluentwidgets.common.icon.Icon>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 1cc33542966841d0a5245dfb50ca58d6 |
||||
msgid ":py:obj:`Action <qfluentwidgets.common.icon.Action>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1101 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:24:<autosummary>:1 |
||||
#: 1e37b2b9f8a4466a807716fae99bb9a6 da3a8a61cf8f4194894f2404cec07e49 |
||||
#, fuzzy |
||||
msgid "Fluent action" |
||||
msgstr "流畅图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 17945d1ba1b140dfa1c24bee36e91314 |
||||
msgid "" |
||||
":py:obj:`getIconColor <qfluentwidgets.common.icon.getIconColor>`\\ " |
||||
"\\(\\[theme\\, reverse\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 37b0e849b0e9475fbf594e5bef0f4fca f072cae12f844767b133d94de9342916 |
||||
msgid "get the color of icon based on theme" |
||||
msgstr "根据主题获取图标颜色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: b1de65428254413794e6cb4454e04c5a |
||||
msgid "" |
||||
":py:obj:`drawSvgIcon <qfluentwidgets.common.icon.drawSvgIcon>`\\ " |
||||
"\\(icon\\, painter\\, rect\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:68 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:168 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 8b7f538d5fef4622bacab6d00d957038 a6efc66636af4a28bc97e02afa42ddb6 |
||||
#: fc2071110c2e47268b439b6aaf3490a9 |
||||
msgid "draw svg icon" |
||||
msgstr "绘制 svg 图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 4ee77c997cc949888bb4ca42f6e7cc5d |
||||
msgid "" |
||||
":py:obj:`writeSvg <qfluentwidgets.common.icon.writeSvg>`\\ " |
||||
"\\(iconPath\\[\\, indexes\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:84 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 62d97ff480c74ecda2c2d9b4cca05817 667d8a5ea0134a8492cebf79f2c46fe0 |
||||
msgid "write svg with specified attributes" |
||||
msgstr "向 svg 图标的路径写入属性值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 9fe1511c36934fd88031a5e59582d5c2 |
||||
msgid "" |
||||
":py:obj:`drawIcon <qfluentwidgets.common.icon.drawIcon>`\\ \\(icon\\, " |
||||
"painter\\, rect\\[\\, state\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:105 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 14ea48aea0bb40409d6141a21a7a5d0b 4ad570dfe96c4bfc92f115b75dab8621 |
||||
msgid "draw icon" |
||||
msgstr "绘制图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 05caa12b25bd4e61bd2b9b7e49da515c |
||||
msgid "" |
||||
":py:obj:`toQIcon <qfluentwidgets.common.icon.toQIcon>`\\ \\(→ " |
||||
"PyQt5.QtGui.QIcon\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1094 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:34:<autosummary>:1 |
||||
#: 0bb445b0b9b746d8ad83bea2fe2fbb7b 2da603e10de44eb28b4688828c989244 |
||||
msgid "convet `icon` to `QIcon`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:47 |
||||
#: 348902426c064d2f921ede9857ff27b3 820665b97ace4767bc2b0079c5c695e8 |
||||
msgid "Bases: :py:obj:`PyQt5.QtGui.QIconEngine`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:87 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:132 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:145 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:161 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:171 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1078 |
||||
#: 21eee332a1024dd8b729d95923cd5d74 2a311b948aa3476c92d0cab696494c41 |
||||
#: 3d4cb9ecfa8342ad8897d4812d6dc70e 4ff7d9d933b346bd9c61fb0b3ebba725 |
||||
#: 649e5b9b569946ed8966d00ab97d7805 8e30a3c0695c4209ba61a88140d793b5 |
||||
#: 9413a2990e4949ee92ae1f06f045f305 fdfe78c0e1d74e3685170666be4bf88b |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:73 |
||||
#: 37b435777e5848b089e8ef6a745c9eb1 |
||||
msgid "icon: str | bytes | QByteArray" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:73 |
||||
#: a0d7e2cd3c924c83a23a7ecd2ce9dd3f |
||||
msgid "the path or code of svg icon" |
||||
msgstr "图标路径或者 svg 图标代码" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:76 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:113 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:173 |
||||
#: a5879cae0e8745aa81719627a6478f18 b6171ab313854b7a90a2d742fa819c08 |
||||
#: e7260b75b225473d84b46d7884b32818 |
||||
msgid "painter: QPainter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:76 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:113 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:173 |
||||
#: 019946eaba124448a079421413c9fba4 1896bc8dd321433ca3b334e0c8b4e81b |
||||
#: 41ff5f8b42054bee9cd2acc3196b52b9 |
||||
msgid "painter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:78 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:116 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:176 |
||||
#: 8a1a9420d6924365bd543c98c22797be 939625b26c7b4760881c07be8e7e6c3c |
||||
#: fc6a3b9956c940f3a2b133eeaf4c158d |
||||
msgid "rect: QRect | QRectF" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:79 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:116 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:176 |
||||
#: 1d1788b3d5c8414b9cedfb26ae998196 5fc36ded7dda4a87af920b033f79e726 |
||||
#: 8773f0e2d31e444aacc13fd2c5476273 |
||||
msgid "the rect to render icon" |
||||
msgstr "渲染图标的矩形区域" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:89 |
||||
#: c92e8b79596a4606b924a4f89c9fc969 |
||||
msgid "iconPath: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:89 |
||||
#: 35a9fe1d2b5f41588193203c83e1b84d |
||||
msgid "svg icon path" |
||||
msgstr "svg 图标路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:92 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:185 |
||||
#: 2433aed4d909415287f9288f925cb3cf 89919fa024c548f091a21e31b1fb0c50 |
||||
msgid "indexes: List[int]" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:92 |
||||
#: 54d63fc8e43c48dcbee0da3ceeedd715 |
||||
msgid "the path to be filled" |
||||
msgstr "将被写入属性值的图形路径索引,如果为 `None`,所有路径都会被写入属性值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:95 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:187 |
||||
#: 6d08cb589d2d42c99429f9576cbe3b03 cf3cba4debdd44b0ad10842639c78212 |
||||
msgid "**attributes:" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:95 |
||||
#: 77803c9c9dc54d6298444d0f8e437fd6 |
||||
msgid "the attributes of path" |
||||
msgstr "图形路径的属性值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:98 |
||||
#: 5473da434aad42bba644f7f60c6f1fe5 |
||||
msgid "Returns" |
||||
msgstr "返回值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:99 |
||||
#: 7f4b85d9b43a4e1b9d9ffabd31cf3799 |
||||
msgid "svg: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:100 |
||||
#: d1fc59f69fd3454cae95856c46eaac94 |
||||
msgid "svg code" |
||||
msgstr "svg 代码" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:110 |
||||
#: c1f371d1327249b7bd940436c23279ce |
||||
msgid "icon: str | QIcon | FluentIconBaseBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:110 |
||||
#: 781a8268c9f641c1b38c1ee88ef5bb9c |
||||
msgid "the icon to be drawn" |
||||
msgstr "将被绘制的图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:118 |
||||
#: 42c592316bcc4b6f821a5a2923fc5cb6 |
||||
msgid "**attribute:" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:119 |
||||
#: d0b8aebda28340ae9d7400ebf27e770b |
||||
msgid "the attribute of svg icon" |
||||
msgstr "svg 图标属性" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:129 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1075 |
||||
#: ba13c1f926ec4531bdd50e9bab5ce292 f67e03cfc19b4b14b4eb148c319ae408 |
||||
msgid "get the path of icon" |
||||
msgstr "返回图标路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:136 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:150 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:182 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1082 |
||||
#: 643d8fe5444a4bebacab8247855b13f4 821a039d7aa24e18a2a125bc4f275aa6 |
||||
#: bda22535e05343ccbfb6c3d5b935c6a1 e7e7bc5cb67644068fd114019f3e641c |
||||
msgid "theme: Theme" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:134 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:179 |
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1080 |
||||
#: 5134230fe7db42b0806628da2b82a82a 93c676326fdc40f29691f5eb8f9045f2 |
||||
#: cbb341a98cd84298a87d1dc5a1c39da4 |
||||
msgid "" |
||||
"the theme of icon * `Theme.Light`: black icon * `Theme.DARK`: white icon " |
||||
"* `Theme.AUTO`: icon color depends on `config.theme`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:142 |
||||
#: ed4583ab4ac442119bf58dc903c1c16f |
||||
#, fuzzy |
||||
msgid "create a fluent icon" |
||||
msgstr "返回一个 `QIcon` 图标实例" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:147 |
||||
#: 7129e85091c542d5bca86a438a6b4c33 |
||||
msgid "" |
||||
"the theme of icon * `Theme.Light`: black icon * `Theme.DARK`: white icon " |
||||
"* `Theme.AUTO`: icon color depends on `qconfig.theme`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:152 |
||||
#: 4f27dc97a6e44a77a9ff946d44a2fdc5 |
||||
msgid "color: QColor | Qt.GlobalColor | str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:153 |
||||
#: 1cffec77f65d4692a1fdf1d8bdd6eabd |
||||
msgid "icon color, only applicable to svg icon" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:158 |
||||
#: 7c11cef037f342ab95f41536131e3364 |
||||
msgid "convert to QIcon, the theme of icon will be updated synchronously with app" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:162 |
||||
#: 478df77528c348ea9b12ef426ad40294 |
||||
msgid "reverse: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:163 |
||||
#: 3593cb0a169f449a8d0a4458aa46f01c |
||||
#, fuzzy |
||||
msgid "whether to reverse the theme of icon" |
||||
msgstr "返回图标路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:185 |
||||
#: 4e0ef752959e40fea36448e542fc1b6f |
||||
msgid "the svg path to be modified" |
||||
msgstr "将被写入属性值的图形路径索引,如果为 `None`,所有路径都会被写入属性值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:188 |
||||
#: 33aaf1c713184175acfeb25c25fd62f5 |
||||
msgid "the attributes of modified path" |
||||
msgstr "图形路径的属性值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:194 |
||||
#: d887dfb294e04e4caa761894ebf0ee45 |
||||
msgid "Bases: :py:obj:`FluentIconBase`, :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1089 |
||||
#: 208fe1d4bac34635a52e9995ee483f1d |
||||
msgid "Bases: :py:obj:`PyQt5.QtGui.QIcon`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1099 |
||||
#: 4530560dddc843c6b1df21b8342fb39e |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QAction`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1104 |
||||
#: 9490602fb9dd437ea544d79a823db890 |
||||
msgid "Constructors" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1105 |
||||
#: 011984db086c4967b17a28caebd87201 |
||||
msgid "Action(`parent`: QWidget = None, `**kwargs`)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1106 |
||||
#: e547989027924f4bbf6fc5b380613047 |
||||
msgid "Action(`text`: str, `parent`: QWidget = None, `**kwargs`)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/icon/index.rst:1107 |
||||
#: 1a7333ac7c0b496e93eb2865cc2636b7 |
||||
msgid "" |
||||
"Action(`icon`: QIcon | FluentIconBase, `parent`: QWidget = None, " |
||||
"`**kwargs`)" |
||||
msgstr "" |
||||
|
||||
#~ msgid ":py:obj:`IconEngine <qfluentwidgets.common.icon.IconEngine>`\\" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "Icon engine" |
||||
#~ msgstr "图标引擎" |
||||
|
||||
#~ msgid ":py:obj:`MenuIconEngine <qfluentwidgets.common.icon.MenuIconEngine>`\\" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`drawIcon <qfluentwidgets.common.icon.drawIcon>`\\ " |
||||
#~ "\\(icon\\, painter\\, rect\\, \\*\\*attributes\\)" |
||||
#~ msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,123 @@
@@ -0,0 +1,123 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:2 |
||||
#: 5d19e17628524df48a9cb7f96c0fd00a |
||||
msgid "image_utils" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:8 |
||||
#: afef364212c94d1a9c646f0ed0b60aa1 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:19:<autosummary>:1 |
||||
#: 1550453d4a354f27a95b0316ac7ff5ec |
||||
msgid "" |
||||
":py:obj:`DominantColor " |
||||
"<qfluentwidgets.common.image_utils.DominantColor>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:19:<autosummary>:1 |
||||
#: 157d1c22276842a6b95ccb4e28278505 3bf4f372a8554b77a3b74516c39c8fbe |
||||
msgid "Dominant color class" |
||||
msgstr "主题色类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:26:<autosummary>:1 |
||||
#: 6d7593741b314ddfbdd48932d24ef89a |
||||
msgid "" |
||||
":py:obj:`gaussianBlur <qfluentwidgets.common.image_utils.gaussianBlur>`\\" |
||||
" \\(image\\[\\, blurRadius\\, brightFactor\\, ...\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:26:<autosummary>:1 |
||||
#: ac4c114310ad4ff88c8b75d86e21c6ba |
||||
msgid "" |
||||
":py:obj:`fromqpixmap <qfluentwidgets.common.image_utils.fromqpixmap>`\\ " |
||||
"\\(im\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:26:<autosummary> |
||||
#: bf7a7892f8e54da0ace681e8637475ce |
||||
msgid "param im" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:32 |
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:26:<autosummary>:1 |
||||
#: bcf776b1938c4766bcfd7d5c01f2e56f f19b6977b6664d54bbe9dcbe456fea71 |
||||
msgid "QImage or PIL ImageQt object" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst |
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:45 |
||||
#: 257f6d3d4fec41a995d1ceab57e24f92 3a023afacd9a4f3f8b58eef5c7528c8a |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:42 |
||||
#: 1f9d160b5eae44a9a23c4d9aeeac4217 |
||||
msgid "extract dominant color from image" |
||||
msgstr "提取图片的主题色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:47 |
||||
#: a488bce459a548bf9b011083b099b522 |
||||
msgid "imagePath: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:47 |
||||
#: 05c6d63007eb4d709f77831220eb7216 |
||||
msgid "image path" |
||||
msgstr "图像路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:50 |
||||
#: 073ce032eb85478882f84f91d633840f |
||||
msgid "Returns" |
||||
msgstr "返回值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:51 |
||||
#: 22dc1f81dda14dcab115dadf8c50a496 |
||||
msgid "r, g, b: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:52 |
||||
#: 2da734e559db44c0ad272abf4729417a |
||||
msgid "gray value of each color channel" |
||||
msgstr "各个通道的灰度值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:58 |
||||
#: df43537176ab4d6b9adba8c9e5776d03 |
||||
msgid "convert rgb to hsv" |
||||
msgstr "将 rgb 转换为 hsv" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/image_utils/index.rst:64 |
||||
#: 5b62c50a04794ea6a8dc953dffc32341 |
||||
msgid "convert hsv to rgb" |
||||
msgstr "将 hsv 转换为 rgb" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`gaussianBlur " |
||||
#~ "<qfluentwidgets.common.image_utils.gaussianBlur>`\\ " |
||||
#~ "\\(imagePath\\[\\, blurRadius\\, brightFactor\\, " |
||||
#~ "...\\]\\)" |
||||
#~ msgstr "" |
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:2 |
||||
#: c3034860bd424027acf8f893d8a340f5 |
||||
msgid "overload" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:8 |
||||
#: f18eb0848e0c4808b32e8426e16e11fd |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:18:<autosummary>:1 |
||||
#: c2e04ffad88248c5a8ff3ba820cbe254 |
||||
msgid "" |
||||
":py:obj:`singledispatchmethod " |
||||
"<qfluentwidgets.common.overload.singledispatchmethod>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:21 |
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:18:<autosummary>:1 |
||||
#: 2308d2084d164ef4b6e04db8715b8e77 e2d2e83bb73d4edba83b0831019dd914 |
||||
msgid "Single-dispatch generic method descriptor." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:23 |
||||
#: 4b4a826fd8234feab2b055a6f471f50b |
||||
msgid "" |
||||
"Supports wrapping existing descriptors and handles non-descriptor " |
||||
"callables as instance methods." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:31 |
||||
#: 306a1148d5c44422b0050374cd95769d |
||||
msgid "generic_method.register(cls, func) -> func" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/overload/index.rst:33 |
||||
#: a30bb4155ebc44d794edf6debc02c274 |
||||
msgid "Registers a new implementation for the given *cls* on a *generic_method*." |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,125 @@
@@ -0,0 +1,125 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-05-24 10:30+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:2 |
||||
#: 258fcb6dddfb42ac8d5790979739710a |
||||
msgid "router" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:8 |
||||
#: c3fb72f9f95a43919b1c39d3fb1966b7 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: f6804548d1e64f24b9e482a41de0b909 |
||||
msgid ":py:obj:`RouteItem <qfluentwidgets.common.router.RouteItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:30 |
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: 0af3126fbd564bdb9cd54afc1e2e371d a658d0b90eee4f5b855b85ab5bce8f12 |
||||
msgid "Route item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: f05d10cd2713484495b90b6098fb9f35 |
||||
msgid ":py:obj:`StackedHistory <qfluentwidgets.common.router.StackedHistory>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:40 |
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: 2169d1ffd70146399be14985a04d41f3 d5702c096c554644ba598bd51fa7dfde |
||||
msgid "Stacked history" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: 1dba31b3390b48d1911a00d47e52a8d1 |
||||
msgid ":py:obj:`Router <qfluentwidgets.common.router.Router>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:22:<autosummary>:1 |
||||
#: 90e175e2e9b84075a911045620a19e34 94806fb114e3457099618c722d5ba5ce |
||||
msgid "Router" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:27:<autosummary>:1 |
||||
#: ff98fdf1a62a4257aeec1ce87c119d23 |
||||
msgid ":py:obj:`qrouter <qfluentwidgets.common.router.qrouter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:34 |
||||
#: c0d702f5953e493f996b9c8c9a91486e |
||||
msgid "Return self==value." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:69 |
||||
#: 61ed08a686d04256bec0b698e86d767c |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:79 |
||||
#: ec2a7c3735354c1a8a89ed6607963b49 |
||||
msgid "set the default route key of stacked widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:84 |
||||
#: eb9674a453e9466884fd44fab25cbd8e |
||||
msgid "push history" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:87 |
||||
#: 7db59a503e3d4f9cbf5760ac84764cca |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:89 |
||||
#: 093ab4296d5440abbfc680c8f941510a |
||||
msgid "stacked: QStackedWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:89 |
||||
#: aef8fe9ebebe4329941a77d2a5bc1b24 |
||||
msgid "stacked widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:91 |
||||
#: beab710468764e6f86ce48d75f7209a4 |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:92 |
||||
#: e843b069843b4fa78390d469666c42fd |
||||
msgid "route key of sub insterface, it should be the object name of sub interface" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:97 |
||||
#: 503eefd0408943f69213e80aa1eb3870 |
||||
msgid "pop history" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/router/index.rst:102 |
||||
#: 7fd5f192caa74627a7a002a3816a84bf |
||||
msgid "remove history" |
||||
msgstr "" |
||||
|
@ -0,0 +1,59 @@
@@ -0,0 +1,59 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:2 |
||||
#: 5cbc41558be84815afd78c68d42f57f1 |
||||
msgid "screen" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:8 |
||||
#: cdfd877627da44a3aed7890115f1f7f5 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:19:<autosummary>:1 |
||||
#: b58daf2b841b4f67aef498b4ffdac276 |
||||
msgid "" |
||||
":py:obj:`getCurrentScreen " |
||||
"<qfluentwidgets.common.screen.getCurrentScreen>`\\ \\(\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:22 |
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:19:<autosummary>:1 |
||||
#: 537950fc0a7e485ca72a24c85031621a c96fe63ba32d42f5b7b310960aab68f6 |
||||
msgid "get current screen" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:19:<autosummary>:1 |
||||
#: 642ab5a36d3b4b67aa2e1c1caf37dc1e |
||||
msgid "" |
||||
":py:obj:`getCurrentScreenGeometry " |
||||
"<qfluentwidgets.common.screen.getCurrentScreenGeometry>`\\ " |
||||
"\\(\\[avaliable\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:27 |
||||
#: ../../source/autoapi/qfluentwidgets/common/screen/index.rst:19:<autosummary>:1 |
||||
#: 766a955c0bdb4b369bdc0515447bd04e a9fd07381e8c4d4d96f70a5c2b1284da |
||||
msgid "get current screen geometry" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,66 @@
@@ -0,0 +1,66 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:2 |
||||
#: e5cb8831558e447ba924c0d8b2c52837 |
||||
msgid "smooth_scroll" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:8 |
||||
#: 8c5ff1cf11be4c2092e7ec6ed376c874 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:19:<autosummary>:1 |
||||
#: 1d93a51fbab1416e83fb68d50687f5aa |
||||
msgid "" |
||||
":py:obj:`SmoothScroll " |
||||
"<qfluentwidgets.common.smooth_scroll.SmoothScroll>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:22 |
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:19:<autosummary>:1 |
||||
#: 81e97ec194b145ecaf47c9a23740f4c2 a7c503a6b23d4f4ebe626167203f66ee |
||||
msgid "Scroll smoothly" |
||||
msgstr "平滑滚动" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:19:<autosummary>:1 |
||||
#: 3c819c30938f4c4091286a33fe1e5f09 |
||||
msgid ":py:obj:`SmoothMode <qfluentwidgets.common.smooth_scroll.SmoothMode>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:19:<autosummary>:1 |
||||
#: 28559dbbc6c445cc99253c22f0c13a4f be35e46025104b78906aa95b48498168 |
||||
msgid "Smooth mode" |
||||
msgstr "平滑滚动模式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:26 |
||||
#: 486561319e944df5b0b16815bc054cc1 |
||||
msgid "set smooth mode" |
||||
msgstr "设置平滑滚动模式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/smooth_scroll/index.rst:35 |
||||
#: 3bf6e0cd2b114932b313cdd0b7abe0cf |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,693 @@
@@ -0,0 +1,693 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:2 |
||||
#: 9917f45c7e2f4d339b7222bf6bd7b6bf |
||||
msgid "style_sheet" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:8 |
||||
#: b731ed5275d241fb89aef2317b047d7f |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 77b310bf957b455ea7eb32d0f09e6f8c |
||||
msgid "" |
||||
":py:obj:`StyleSheetManager " |
||||
"<qfluentwidgets.common.style_sheet.StyleSheetManager>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:56 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 84aad0f9ade645369d99792a7124ea49 f6e31f6f627c49a78b74a8269a903757 |
||||
msgid "Style sheet manager" |
||||
msgstr "样式表管理器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: aee9eaf41be649f18dd29c5d4f790f1c |
||||
msgid ":py:obj:`QssTemplate <qfluentwidgets.common.style_sheet.QssTemplate>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:98 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 03ecad203d564abd9df77621cd5c09fe e2cbde6a71e2427a94aacf939df044d9 |
||||
msgid "style sheet template" |
||||
msgstr "样式表模板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 769dabab8b9842f99bbff019459f11f5 |
||||
msgid "" |
||||
":py:obj:`StyleSheetBase " |
||||
"<qfluentwidgets.common.style_sheet.StyleSheetBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 1d83529d084e4c9e9bbb071d179f2b08 ea36558c8814419cbd92eaaa8806232a |
||||
msgid "Style sheet base class" |
||||
msgstr "样式表基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: ba17ee418ea04e19a099a413edb22bb0 |
||||
msgid "" |
||||
":py:obj:`FluentStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.FluentStyleSheet>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:142 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 671c0d8bb1ba4bbca8c5e3bf8ec526af 8426b9a882c54d8c9dbf5dfc6c9b6042 |
||||
msgid "Fluent style sheet" |
||||
msgstr "流畅设计样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 44afa267639e430a8028b7d5455db669 |
||||
msgid "" |
||||
":py:obj:`StyleSheetFile " |
||||
"<qfluentwidgets.common.style_sheet.StyleSheetFile>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:324 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 50c28c7ba22245f48c0f9bd6b7559cf1 5fe47f761cc24dcea46db08a491b611f |
||||
#, fuzzy |
||||
msgid "Style sheet file" |
||||
msgstr "样式表模板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 68939bde7b9a4150a3192b7e087e7f0e |
||||
msgid "" |
||||
":py:obj:`CustomStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.CustomStyleSheet>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:336 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: b6d55bea7ffc494abe6ea2796d87b15d fea5058aa8274c3b9e0b075c843264b7 |
||||
#, fuzzy |
||||
msgid "Custom style sheet" |
||||
msgstr "返回样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 5fc18bbd4f7d42e9b7fc6711910bf60c |
||||
msgid "" |
||||
":py:obj:`CustomStyleSheetWatcher " |
||||
"<qfluentwidgets.common.style_sheet.CustomStyleSheetWatcher>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:389 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 13a6dbb5c70848129232f12193cfb15f 4ef4f1d5a2d94f0c98dfe1771874db6c |
||||
#, fuzzy |
||||
msgid "Custom style sheet watcher" |
||||
msgstr "样式表模板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: fc6b3a6a1fc1429cba250a6a1ef9bffb |
||||
msgid "" |
||||
":py:obj:`DirtyStyleSheetWatcher " |
||||
"<qfluentwidgets.common.style_sheet.DirtyStyleSheetWatcher>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:399 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 4478b579f0c04b11944d5a99273ca1e6 9a066c330a0f4367b64b9062c7f0a21d |
||||
#, fuzzy |
||||
msgid "Dirty style sheet watcher" |
||||
msgstr "样式表模板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 463757c061c240619f7ea4d6c67cf0b1 |
||||
msgid "" |
||||
":py:obj:`StyleSheetCompose " |
||||
"<qfluentwidgets.common.style_sheet.StyleSheetCompose>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:409 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 0662c2c95429462caaaa68974fa59844 73ab9ebbc82c4e2a80da9cdc9ad5fe26 |
||||
#, fuzzy |
||||
msgid "Style sheet compose" |
||||
msgstr "样式表模板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: eb1776dd637146269ee2fe0b69023744 |
||||
msgid ":py:obj:`ThemeColor <qfluentwidgets.common.style_sheet.ThemeColor>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:550 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:28:<autosummary>:1 |
||||
#: 38893d49314945c584819787df1bb0e6 fe5520ebf6a44f7ab0d9b812191a05b0 |
||||
msgid "Theme color type" |
||||
msgstr "主题颜色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: c1700097bf0e461f9fb7128de2c88bc1 |
||||
msgid "" |
||||
":py:obj:`applyThemeColor " |
||||
"<qfluentwidgets.common.style_sheet.applyThemeColor>`\\ \\(qss\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: cacf172ff78b43efa9c26068bbd039a6 df963aec822b489cbd02b44a1c7105a2 |
||||
msgid "apply theme color to style sheet" |
||||
msgstr "将主题色应用到样式表模板上" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 4608d2230d5b479c9f070c7ae39bcf3c |
||||
msgid "" |
||||
":py:obj:`getStyleSheetFromFile " |
||||
"<qfluentwidgets.common.style_sheet.getStyleSheetFromFile>`\\ \\(file\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:429 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: c8e21721ca6646d5a800bf33468f649d fa626a8d7ad34720ab4c7b0b217fd1d6 |
||||
#, fuzzy |
||||
msgid "get style sheet from qss file" |
||||
msgstr "返回样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 432d5d93c2704c96bba73d3871ca23c1 |
||||
msgid "" |
||||
":py:obj:`getStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.getStyleSheet>`\\ \\(source\\[\\, " |
||||
"theme\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:434 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 048a6564af57472bbd657de345379296 dc62d2e35e5943d59c57da979d317e8e |
||||
#, fuzzy |
||||
msgid "get style sheet" |
||||
msgstr "返回样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 72596cc2ae5d4ca0a5e3d1e205d9946f |
||||
msgid "" |
||||
":py:obj:`setStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.setStyleSheet>`\\ \\(widget\\, " |
||||
"source\\[\\, theme\\, register\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:449 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 97417a250ccf4df3ab11d7d9fb137dfd 9ae0dd220a0941d4aaf0dfd560b3958d |
||||
msgid "set the style sheet of widget" |
||||
msgstr "设置小部件的样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 0e018129db48441290063e8b27dae385 |
||||
msgid "" |
||||
":py:obj:`setCustomStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.setCustomStyleSheet>`\\ \\(widget\\, " |
||||
"lightQss\\, darkQss\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:471 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: d76c6ca287ee43a7a72fcec43d637462 f420fbd98e32499fa153e13bdd85f804 |
||||
#, fuzzy |
||||
msgid "set custom style sheet" |
||||
msgstr "返回样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: dc088980a1334c57a8a1e9f34af5231e |
||||
msgid "" |
||||
":py:obj:`addStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.addStyleSheet>`\\ \\(widget\\, " |
||||
"source\\[\\, theme\\, register\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:487 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: b967866ec18e42ebba241aa503c14824 e12e020db1a74f12bc934cb951d9574b |
||||
#, fuzzy |
||||
msgid "add style sheet to widget" |
||||
msgstr "将样式表应用在小部件上" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: d4341d9e17164ddeaa6b870b8c7b9aa0 |
||||
msgid "" |
||||
":py:obj:`updateStyleSheet " |
||||
"<qfluentwidgets.common.style_sheet.updateStyleSheet>`\\ \\(\\[lazy\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:509 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 7b03cc64d2924415a13d631ca9d1f264 b94097afbc55478b9720348be9a60465 |
||||
msgid "update the style sheet of all fluent widgets" |
||||
msgstr "更新所有注册到管理器中的部件的样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 6906ce98691b477f9896b6bcef02f1e5 |
||||
msgid "" |
||||
":py:obj:`setTheme <qfluentwidgets.common.style_sheet.setTheme>`\\ " |
||||
"\\(theme\\[\\, save\\, lazy\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:519 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 1221db42e7f0470296d0d97d5d990ddc 3faeb64125af4b0c870b5ec29f8d82f0 |
||||
msgid "set the theme of application" |
||||
msgstr "设置应用的主题" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 2b51aef425e64b81b709fdbc31ec3b6f |
||||
msgid "" |
||||
":py:obj:`toggleTheme <qfluentwidgets.common.style_sheet.toggleTheme>`\\ " |
||||
"\\(\\[save\\, lazy\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:535 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 53d55e818d364cc1bd749da94184ab81 9ef3d5d9f29b4bb0bb7ec1d448c3827c |
||||
#, fuzzy |
||||
msgid "toggle the theme of application" |
||||
msgstr "设置应用的主题" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: ba31760ae18b4d86a0942406aaa7d373 |
||||
msgid "" |
||||
":py:obj:`themeColor <qfluentwidgets.common.style_sheet.themeColor>`\\ " |
||||
"\\(\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:598 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 0c4c23662bf34d3e8de30e04515bd759 f0c5d82a1b754cebb73681bff32e3b24 |
||||
msgid "get theme color" |
||||
msgstr "返回主题色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: bb693370814a41e387074227a61c0025 |
||||
msgid "" |
||||
":py:obj:`setThemeColor " |
||||
"<qfluentwidgets.common.style_sheet.setThemeColor>`\\ \\(color\\[\\, " |
||||
"save\\, lazy\\]\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:603 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:46:<autosummary>:1 |
||||
#: 21ceb093eee84cd889f5b4c00136c814 92b006af958f42528b8c3aa6e52865f3 |
||||
msgid "set theme color" |
||||
msgstr "设置应用的主题色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:51:<autosummary>:1 |
||||
#: 8c7fa57a8eb44993a68bec32cb9e44ec |
||||
msgid "" |
||||
":py:obj:`styleSheetManager " |
||||
"<qfluentwidgets.common.style_sheet.styleSheetManager>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:387 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:397 |
||||
#: 1b0fc98699ca42b1bf4a461e9443779c 441d4c107a8b44b2bce89c01e9cc7148 |
||||
#: bab38200f3e4497dbba3b30d473c6275 |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:60 |
||||
#: d46641a542184ff0a2f640234dd74c14 |
||||
msgid "register widget to manager" |
||||
msgstr "将小部件注册到样式表管理器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:111 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:437 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:452 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:474 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:490 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:512 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:522 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:538 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:606 |
||||
#: 2bea1f8649b0424d8064abacd3cea9a4 4603017db1804a48b0dae4888d805e66 |
||||
#: 4915c2e6efc244baa16042c28f088224 91ed50dbba494a2392c5eb1a506b6254 |
||||
#: 9d02e5948a424a8fbe791c854906d57e ba76bd87c3bd4715afa8dc007fa6608e |
||||
#: be904d20c6e147968b810ef4dd3e1ff8 d1c2a678b02845ab8eab0e16e4bf4df9 |
||||
#: d387706be71b4471937f09efa34a9b0d fb4f39acec8b49558d88301cb1d30f1c |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:67 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:441 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:459 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:497 |
||||
#: 3830a4bcbdee420c88b04c0d79bcf62a 8109f8fb0095402fa5b2bfd2de0e48d5 |
||||
#: 8fbb34e2fdfd451fa6e21e79b6dfa85d b1a199ea7c1144a29eb2487ceae76167 |
||||
#, fuzzy |
||||
msgid "source: str | StyleSheetBase" |
||||
msgstr "流畅设计样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:65 |
||||
#: a36f62417b5c4fc99ce2beae6509cd61 |
||||
msgid "" |
||||
"qss source, it could be: * `str`: qss file path * `StyleSheetBase`: style" |
||||
" sheet instance" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:70 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:454 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:476 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:492 |
||||
#: 01f4832e8c7a457da3f300cac519c1c3 028b8db42da749a38d5fac6d21d46927 |
||||
#: e8383e54ca554d3f819faf7408dbe23e f8b4697453834629a7ac19e264c073f5 |
||||
msgid "widget: QWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:70 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:454 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:492 |
||||
#: 07b51300319d4e659d126edd0a9a4bd1 0f19257def7f4e3d9197b700ea842b61 |
||||
#: 6649618b25fd4181afc7a4f0f38f9be9 |
||||
msgid "the widget to set style sheet" |
||||
msgstr "将被设置样式表的小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:72 |
||||
#: dfc5b0f971944f26815d4f5a57c38c8c |
||||
msgid "reset: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:73 |
||||
#: 1e5ecf5d7f7946a38c832077cffd48d7 |
||||
msgid "whether to reset the qss source" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:78 |
||||
#: 16e017ed13874f98a4daae0ccd8b2869 |
||||
msgid "deregister widget from manager" |
||||
msgstr "从管理器中注销小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:86 |
||||
#: d9862d9844a646fa8d4dc1f3f30de096 |
||||
#, fuzzy |
||||
msgid "get the qss source of widget" |
||||
msgstr "设置小部件的样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:96 |
||||
#: 6eedc27112de44be8ca48b2c2980a441 |
||||
msgid "Bases: :py:obj:`string.Template`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:113 |
||||
#: f462af5a12154ca18f9b5c827042a6c0 |
||||
msgid "qss: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:113 |
||||
#: 44ca0e61aa574feebc12b6bb17a1a59a |
||||
msgid "" |
||||
"the style sheet string to apply theme color, the substituted variable " |
||||
"should be equal to the value of `ThemeColor` and starts width `--`, i.e " |
||||
"`--ThemeColorPrimary`" |
||||
msgstr "" |
||||
"将被应用主题色的样式表模板字符串,被替换的变量值应该是 `ThemeColor` 枚举成员的值并以 `--` 开头,比如 " |
||||
"`--ThemeColorPrimary`" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:316 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:328 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:350 |
||||
#: 34111b3f215642689562c00143587c5b 6898c46eb425469f85877aa9a4dd4c31 |
||||
#: 96eec1a420a24029ae0c1542df6571c6 edd3a22f31d242d39c7cc6abd54a14d3 |
||||
msgid "get the path of style sheet" |
||||
msgstr "返回样式表的路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:129 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:381 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:413 |
||||
#: 5c4393fbaadc471abe0863e1cb8d89aa d9e1e3ea342d4d7c84bf7c705dd95335 |
||||
#: e66b8875a8b044728b28d3570c8b1b36 |
||||
msgid "get the content of style sheet" |
||||
msgstr "返回样式表字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:134 |
||||
#: ea9db7f6f0c64f839451f814310dd202 |
||||
msgid "apply style sheet to widget" |
||||
msgstr "将样式表应用在小部件上" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:140 |
||||
#: 90494b391f5b41318771a0e4865de1e8 |
||||
msgid "Bases: :py:obj:`StyleSheetBase`, :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:322 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:334 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:407 |
||||
#: 0196a7d36d37419da49e49140c94879f 9ab7f7e4a6404d9d823acbeee7afc099 |
||||
#: d3245bd4b8904025912557f32200364b |
||||
msgid "Bases: :py:obj:`StyleSheetBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:355 |
||||
#: b9194053a6954976b2cb298239005987 |
||||
msgid "Return self==value." |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:360 |
||||
#: 17d1dff9b84843ad872d10f1ddb0fec4 |
||||
msgid "set custom style sheet in light and dark theme mode" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:365 |
||||
#: fc97a575f39d4fc6872ab996fa65f29f |
||||
#, fuzzy |
||||
msgid "set the style sheet in light mode" |
||||
msgstr "设置小部件的样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:370 |
||||
#: 673a8d896dff40a5850a7c978323fccf |
||||
#, fuzzy |
||||
msgid "set the style sheet in dark mode" |
||||
msgstr "设置小部件的样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:418 |
||||
#: 8545aec5602f47648e1dc8c691eba221 |
||||
#, fuzzy |
||||
msgid "add style sheet source" |
||||
msgstr "将样式表应用在小部件上" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:423 |
||||
#: 9581022820874f2d9e5e8a7a83877c87 |
||||
#, fuzzy |
||||
msgid "remove style sheet source" |
||||
msgstr "返回样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:441 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:459 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:497 |
||||
#: 1b20493cf8ea4313a5dfc5d307d0670f b96795a7650847e0a321cad68178b6bb |
||||
#: fdbb95d9757d4c03b430c851c2b348ef |
||||
msgid "qss source, it could be:" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:440 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:458 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:496 |
||||
#: 3309981f6afa4ca0801382687aa08482 98cbe8aa573444f281ce0480a7ee2c10 |
||||
#: f549fc3d6090425e8a2f802c4d107e1b |
||||
#, fuzzy |
||||
msgid "`str`: qss file path" |
||||
msgstr "样式表文件路径" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:441 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:459 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:497 |
||||
#: 1a6cef35f27f43aaa7d533e9e43c2c19 6d8558fa5e8742ae80ec54f4c0b411a5 |
||||
#: afb7a3ab330646f2b03db83e3256c5a0 |
||||
msgid "`StyleSheetBase`: style sheet instance" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:443 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:462 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:500 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:524 |
||||
#: c74683a34ddb411f9616c4b59b24c637 cd99d42956f6492daf20eb5f89f89291 |
||||
#: e1f1979bc56d4f78ac32b508bf76b62a f1323f28f893412a92c63965350bcc9f |
||||
msgid "theme: Theme" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:444 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:462 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:500 |
||||
#: 061ca203747b40738f86b279e26a3d49 afd58abefefd43d2ba43260d3e7e30a5 |
||||
#: e04dc0cd5b0a42b8ab750422c2cf8dcf |
||||
msgid "the theme of style sheet" |
||||
msgstr "样式表的主题" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:465 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:503 |
||||
#: cab0e91f05a14d798907c61779389025 d204462050824e4d99b642cabce4abd6 |
||||
msgid "register: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:465 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:503 |
||||
#: 0056b9444c70422b897e7c9bc9b9c2c7 8749bed8fe00427eba78ae9450a868d9 |
||||
msgid "" |
||||
"whether to register the widget to the style manager. If `register=True`, " |
||||
"the style of the widget will be updated automatically when the theme " |
||||
"changes" |
||||
msgstr "是否将小部件注册到样式表管理器中,如果 `register` 为 `True`,当主题改变时小部件的样式表也会随之改变" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:476 |
||||
#: 0407b4c862984437bc0b35c15a448d88 |
||||
#, fuzzy |
||||
msgid "the widget to add style sheet" |
||||
msgstr "将被设置样式表的小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:479 |
||||
#: b886c89ad4a84c0b9bd0f619a0309b5d |
||||
msgid "lightQss: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:479 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:482 |
||||
#: 2fb826ffbb714f33b823c80ac08b20d4 34924423a9d4471381fd9b5a4b8b2b84 |
||||
msgid "style sheet used in light theme mode" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:481 |
||||
#: ff10fba54c144aa698363ee6f5c3c7fc |
||||
msgid "darkQss: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:513 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:529 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:542 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:613 |
||||
#: 3f790688845f402cb7dfa5b5321f533a 4235b1d169a148538b9e12b465fe67b3 |
||||
#: 47b0077ec9a64e61951e68b66791a234 5e2cb46b6fe845e1892c55bc18b0ca7a |
||||
msgid "lazy: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:514 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:530 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:543 |
||||
#: baa1f9f8841b43df95dac53c0e82903f bbb980d658c44d15a3ae1be600afa699 |
||||
#: c56992be79d843918ed131f24eade3e2 |
||||
msgid "" |
||||
"whether to update the style sheet lazily, set to `True` will accelerate " |
||||
"theme switching" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:524 |
||||
#: 2e94ff6c0d264c83b863113597e3a8e6 |
||||
msgid "theme mode" |
||||
msgstr "主题模式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:527 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:540 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:611 |
||||
#: 23207ea82d8348ea942afe1c244f6256 44cf0da2aa6c434eadff72bd1112da65 |
||||
#: b2405a2eaff348aeb243b05d7be1f76a |
||||
msgid "save: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:527 |
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:540 |
||||
#: 1f4094a9439c4927a963a5c09779697e 9cf1ded13a4e434dac717cc03c329603 |
||||
msgid "whether to save the change to config file" |
||||
msgstr "是否将改变保存到样式表中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:548 |
||||
#: c939d1c9e4ce4dcc8f5485e2394fe13b |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:589 |
||||
#: 5b92c7b5c3ca4f8eb04eb2df692a5d17 |
||||
msgid "The name of the Enum member." |
||||
msgstr "枚举类成员的名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:608 |
||||
#: 2182c5a3ea5c4ad78d4c06473a3448f2 |
||||
msgid "color: QColor | Qt.GlobalColor | str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:608 |
||||
#: 06dda5b1c4904ae5a9b0035c33cf24c7 |
||||
msgid "theme color" |
||||
msgstr "主题色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:611 |
||||
#: e4fbbcc5cefd40be8d4db19248757f61 |
||||
msgid "whether to save to change to config file" |
||||
msgstr "是否将改变保存到样式表中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/style_sheet/index.rst:614 |
||||
#: 6f67827fc9fb4f4a8ce3de7c8dc5e08b |
||||
#, fuzzy |
||||
msgid "whether to update the style sheet lazily" |
||||
msgstr "将被设置样式表的小部件" |
||||
|
||||
#~ msgid "get style sheet from `qfluentwidgets` embedded qss file" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`getStyleSheet " |
||||
#~ "<qfluentwidgets.common.style_sheet.getStyleSheet>`\\ " |
||||
#~ "\\(file\\[\\, theme\\]\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`setStyleSheet " |
||||
#~ "<qfluentwidgets.common.style_sheet.setStyleSheet>`\\ " |
||||
#~ "\\(widget\\, file\\[\\, theme\\, register\\]\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "file: str" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "file: str | StyleSheetBase" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "qss file" |
||||
#~ msgstr "样式表文件" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`updateStyleSheet " |
||||
#~ "<qfluentwidgets.common.style_sheet.updateStyleSheet>`\\ \\(\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`setTheme " |
||||
#~ "<qfluentwidgets.common.style_sheet.setTheme>`\\ \\(theme\\[\\," |
||||
#~ " save\\]\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`toggleTheme " |
||||
#~ "<qfluentwidgets.common.style_sheet.toggleTheme>`\\ " |
||||
#~ "\\(\\[save\\]\\)" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`setThemeColor " |
||||
#~ "<qfluentwidgets.common.style_sheet.setThemeColor>`\\ " |
||||
#~ "\\(color\\[\\, save\\]\\)" |
||||
#~ msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,55 @@
@@ -0,0 +1,55 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-05-04 00:19+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:2 |
||||
#: 250f7dbbc48746feb49222af7a028687 |
||||
msgid "translator" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:8 |
||||
#: 981f5c5ef7704eca871ca04711c1a192 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:18:<autosummary>:1 |
||||
#: 44fba70c3936451aaa8ddfbf4d711d6c |
||||
msgid "" |
||||
":py:obj:`FluentTranslator " |
||||
"<qfluentwidgets.common.translator.FluentTranslator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:18:<autosummary>:1 |
||||
#: 39990d8788fa4c0e9fd31d1c3634fd0f a33e1c07219d41a2a3d618be0f63d3dc |
||||
msgid "Translator of fluent widgets" |
||||
msgstr "fluent widgets 翻译器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:21 |
||||
#: 6f87ff88fd884e469f900568e37a0c5c |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QTranslator`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/common/translator/index.rst:27 |
||||
#: 6158261bd5d542b9872b667446baec3c |
||||
msgid "load translation file" |
||||
msgstr "载入翻译文件" |
||||
|
Binary file not shown.
@ -0,0 +1,55 @@
@@ -0,0 +1,55 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-06-01 17:56+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:2 |
||||
#: 2c7a4eb494b047b7b2d1d878a5f8922d |
||||
msgid "calendar_picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:8 |
||||
#: a61263caff454426a5c4ef23aaba94c6 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:18:<autosummary>:1 |
||||
#: 73ca36eaf2804370a7b3929299e0cd0a |
||||
msgid "" |
||||
":py:obj:`CalendarPicker " |
||||
"<qfluentwidgets.components.date_time.calendar_picker.CalendarPicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:18:<autosummary>:1 |
||||
#: 9f8c9513514745018e2949f4c9b6c9af abb5f98b738344ab90bb1e0a3b89e2b5 |
||||
msgid "Calendar picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:21 |
||||
#: be59c5e217d34b2eb5088f7d3db90341 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QPushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_picker/index.rst:31 |
||||
#: 67e9fa08ecb8439dbd377d39c5b187a1 |
||||
msgid "set the selected date" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,259 @@
@@ -0,0 +1,259 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-06-01 17:56+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:2 |
||||
#: 2c988020c6f641cf92836e19597b1272 |
||||
msgid "calendar_view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:8 |
||||
#: b1e547b688a147e6bcb8cdb9b6ebbf29 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: bdd754a4d7bd4f36a49c2d226646254a |
||||
msgid "" |
||||
":py:obj:`ScrollButton " |
||||
"<qfluentwidgets.components.date_time.calendar_view.ScrollButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:35 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: a2d093ab1b4245b08128b7412b6c7ae1 b0d6cdd4877b4241939a36a126e6803d |
||||
msgid "Scroll button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 55eeb982b4f845d085eaa50d34a514e2 |
||||
msgid "" |
||||
":py:obj:`ScrollItemDelegate " |
||||
"<qfluentwidgets.components.date_time.calendar_view.ScrollItemDelegate>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 0e7a0115ef4546eabf7dbd91ce6afb95 |
||||
msgid "" |
||||
":py:obj:`YearScrollItemDelegate " |
||||
"<qfluentwidgets.components.date_time.calendar_view.YearScrollItemDelegate>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: d2509d80d136456c9871969bedd049e0 f266246c911744408c5821ec92897cf3 |
||||
msgid "Year scroll item delegate" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: e76738aad06546ffa3e41fbc96f750e0 |
||||
msgid "" |
||||
":py:obj:`DayScrollItemDelegate " |
||||
"<qfluentwidgets.components.date_time.calendar_view.DayScrollItemDelegate>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:72 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 44f23ec1710e4743b26aabaf8d728d2c cdbc6abca6954d29afa87622c6696187 |
||||
msgid "Day scroll item delegate" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: d09859a212e043bf9d314f12cfd5409c |
||||
msgid "" |
||||
":py:obj:`ScrollViewBase " |
||||
"<qfluentwidgets.components.date_time.calendar_view.ScrollViewBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:79 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 5da98688b4f34612972789c7fcd67b41 d32737ac0bd34920bbe0f13afb1e4da3 |
||||
msgid "Scroll view base class" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 58dea08db4b44a6190efd510d2f0609f |
||||
msgid "" |
||||
":py:obj:`CalendarViewBase " |
||||
"<qfluentwidgets.components.date_time.calendar_view.CalendarViewBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:116 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 20f6bbe661d94d29ac72f7a0f0b43941 d9155cc883074a51a6c52e048a5c5020 |
||||
msgid "Calendar view base class" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: d7230c4edbfc43208ba89f212702cccf |
||||
msgid "" |
||||
":py:obj:`YearScrollView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.YearScrollView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:144 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 1322c5c3909947f8ab006d1c61a002e6 acd53b1830d64ff5a16063d9ca72aff3 |
||||
msgid "Year scroll view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: dfd726d11b5042acb88bd593addf276f |
||||
msgid "" |
||||
":py:obj:`YearCalendarView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.YearCalendarView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:157 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 679c78e45ca14a2cbbd1ad9d7a5c88e7 a2c0afb24b22417ab86f443186ee8af8 |
||||
msgid "Year calendar view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 98668e45068e45188a784862e878ffba |
||||
msgid "" |
||||
":py:obj:`MonthScrollView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.MonthScrollView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:164 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 08b7e51e6a8540d0a58d4446cab0865f c1deeb35b77643309bde47d0b2377af5 |
||||
msgid "Month scroll view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 116e14b6686b4d65a84e848974987b53 |
||||
msgid "" |
||||
":py:obj:`MonthCalendarView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.MonthCalendarView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:177 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: b5ba0d7f3764434d8798be09fb6e2cf2 cddbcdf66ee745d4ad203141f4d1ebe6 |
||||
msgid "Month calendar view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: d4c5de70160640f7ae248cbdb71451e5 |
||||
msgid "" |
||||
":py:obj:`DayScrollView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.DayScrollView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:187 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 88bef63906e64b5793c2d49efffc6e8c b320d066f1ff465db2f865d3506139e0 |
||||
msgid "Day scroll view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 3673635cfc6d4e188c04900e134f0626 |
||||
msgid "" |
||||
":py:obj:`DayCalendarView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.DayCalendarView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:212 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 1574d319bf1c49c181d119ae5abfe608 26bcea1b968f4b9e867d0bef87b4dca9 |
||||
msgid "Day calendar view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 3c458b4753514a73bc8d3c72d5dc4358 |
||||
msgid "" |
||||
":py:obj:`CalendarView " |
||||
"<qfluentwidgets.components.date_time.calendar_view.CalendarView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:225 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:30:<autosummary>:1 |
||||
#: 72229873b28d4bbba6daf82c32ac2110 e35f8e474e5748b6bca3c8198b17a393 |
||||
msgid "Calendar view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:33 |
||||
#: 866f6ea5fea445b9849da45bbbddfcd4 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.widgets.button.TransparentToolButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:43 |
||||
#: aae780aadcb64f04b86a3dd7dbb68305 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QStyledItemDelegate`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:70 |
||||
#: 572f849630224896a8b0b47ec88e09ea efd01b2bf1ff46008c461132eb52d059 |
||||
msgid "Bases: :py:obj:`ScrollItemDelegate`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:77 |
||||
#: 316cd424f3554e9d80d16f9fbf8be3c1 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QListWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:114 |
||||
#: f5a470f5714246b89a580bbae72f71e4 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QFrame`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:142 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:162 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:185 |
||||
#: 029bbbe0e3274575a34395cccc15e45f e66a198e5daf4c7ababf9644fd0e0824 |
||||
#: e8d7e62817804d93853558edbefb9dd7 |
||||
msgid "Bases: :py:obj:`ScrollViewBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:155 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:175 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:210 |
||||
#: 2acbf87d60c44a9db9d35db9f35db55b 8cfee58132b44720bee3ba64d8959b52 |
||||
#: f3d094c7231c44c1aa7bf592b633953c |
||||
msgid "Bases: :py:obj:`CalendarViewBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:223 |
||||
#: fcb82323d5dd467a8e956ea58b486e14 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:233 |
||||
#: f729fa3364464cdd853c5a9ef6231789 |
||||
msgid "add shadow to dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:238 |
||||
#: 1b9cacd39a1b4df1a3dbfe4a60f4b47e |
||||
msgid "set the selected date" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/calendar_view/index.rst:243 |
||||
#: b7767d3d96564500af8f9794b7ab51d2 |
||||
msgid "show calendar view" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,219 @@
@@ -0,0 +1,219 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:2 |
||||
#: 8179a0c304fe44639fd3dc95f5c401cc |
||||
msgid "date_picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:8 |
||||
#: 0368f8a3111c4ecebd29d498103ad99f |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 4a3b8b7d7161485188fb1948c0b7a5e5 |
||||
msgid "" |
||||
":py:obj:`DatePickerBase " |
||||
"<qfluentwidgets.components.date_time.date_picker.DatePickerBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:30 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 07e6ab24b5e24bae81c098520075860f 5bf28be9000f458d8217b196240b25b4 |
||||
msgid "Date picker base class" |
||||
msgstr "日期选择器基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 185a378e477547ce966af1c98d9985b5 |
||||
msgid "" |
||||
":py:obj:`MonthFormatter " |
||||
"<qfluentwidgets.components.date_time.date_picker.MonthFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 921cc9edd38b4e53a57119722c151d35 ff7d3f1ab98a41e78d640006d42ac147 |
||||
msgid "Month formatter" |
||||
msgstr "月份格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 56f270358d5642d8b7e12bf56112e545 |
||||
msgid "" |
||||
":py:obj:`DatePicker " |
||||
"<qfluentwidgets.components.date_time.date_picker.DatePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:82 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: adbf9cd262dc4759bdf56843c5f68f7f eda15d78353d4853926e60ac37fdb8ac |
||||
msgid "Date picker" |
||||
msgstr "日期选择器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: e0cd55eaea7f4f6fa5d00a1035425142 |
||||
msgid "" |
||||
":py:obj:`ZhFormatter " |
||||
"<qfluentwidgets.components.date_time.date_picker.ZhFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 07bf1e0897d34d808ce47c42e4b33e05 af79c263b8784053a4e960a4dadcb98a |
||||
msgid "Chinese date formatter" |
||||
msgstr "中文日期格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: beec9abfba9242879a654d055eed8fbb |
||||
msgid "" |
||||
":py:obj:`ZhYearFormatter " |
||||
"<qfluentwidgets.components.date_time.date_picker.ZhYearFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:146 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 863d52d90350438dbd9fb8873b5e715c 9f45980dcd444e678db27aae9ddfc6d2 |
||||
msgid "Chinese year formatter" |
||||
msgstr "中文年份格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: cc976201f35b4764806b0683306d4f8e |
||||
msgid "" |
||||
":py:obj:`ZhMonthFormatter " |
||||
"<qfluentwidgets.components.date_time.date_picker.ZhMonthFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:158 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: a839898cafda4573beb3a196420462b0 beebb683b2074ec49e6ed8076ef5ed7d |
||||
msgid "Chinese month formatter" |
||||
msgstr "中文月份格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 6938db54c3284b88a4283bd4978424b4 |
||||
msgid "" |
||||
":py:obj:`ZhDayFormatter " |
||||
"<qfluentwidgets.components.date_time.date_picker.ZhDayFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:170 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 4abde06c2d3f40c3ba84ca3ef4f4b47e a98456b5996e4d94ab0ba45009c2d66f |
||||
msgid "Chinese day formatter" |
||||
msgstr "中文日格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: e8be83593bcb49b0b4bd241bb27b6bad |
||||
msgid "" |
||||
":py:obj:`ZhDatePicker " |
||||
"<qfluentwidgets.components.date_time.date_picker.ZhDatePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:182 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:25:<autosummary>:1 |
||||
#: 38d3c179018c4712b6acf0a367106c10 acd144c4d6064d06a3d6bf7b1958cc69 |
||||
msgid "Chinese date picker" |
||||
msgstr "中文日期选择器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:28 |
||||
#: 21918a3510184af4ada8cac964b35136 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.PickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:39 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:116 |
||||
#: 2e06e0a99fbb4496a6fceefd558b4df1 cd55c486d89e4a84927e2364f8e2842e |
||||
msgid "set current date" |
||||
msgstr "设置当前日期" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:122 |
||||
#: 0c0132b27b8646ec9f8fd74982d262c7 538a973141a94b9595ee7b8b3d9ff000 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.PickerColumnFormatter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:133 |
||||
#: 800f8d46340f44ca8324dd9c3e194ad9 b48304d318b5441dbc1e0b17c3fc13bb |
||||
msgid "convert original value to formatted value" |
||||
msgstr "将原始值转换为格式后的字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:74 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:138 |
||||
#: 52c2e84a40704fe7873257b4eabc7ca0 d7ffb92ad15845e190455387b6cdca98 |
||||
msgid "convert formatted value to original value" |
||||
msgstr "将格式化字符串转换为原始值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:80 |
||||
#: da9481ee4d874a6385adaa159a2f9b35 |
||||
msgid "Bases: :py:obj:`DatePickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:96 |
||||
#: 96c2136b041c4b8ca967e0396e86594b |
||||
msgid "set the format of date" |
||||
msgstr "设置日期格式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:99 |
||||
#: 2b44f4cf08fc4ce0be5e322304befa67 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:100 |
||||
#: 418819a9fbc640498dbdb1dcad2b5e38 |
||||
msgid "format: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:101 |
||||
#: 5784a286395847b2bd47f29b0c9491cf |
||||
msgid "" |
||||
"the format of date, could be `DatePicker.MM_DD_YYYY` or " |
||||
"`DatePicker.YYYY_MM_DD`" |
||||
msgstr "日期格式,可以是 `DatePicker.MM_DD_YYYY` 或者 `DatePicker.YYYY_MM_DD`" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:106 |
||||
#: 80770ecddfd7482287092a14a4643b1f |
||||
msgid "initial value of panel" |
||||
msgstr "选择面板的初始值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:111 |
||||
#: 769b34db9e244063bcdd413bdcc41b9c |
||||
msgid "set whether the month column is tight" |
||||
msgstr "设置年份月份列是否紧凑" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:144 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:156 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:168 |
||||
#: 573ddf9a37b743fcb759214d0019e703 83237f8af9254755b6a7b2aeae4fcb0a |
||||
#: 946357f1c5794bc097e32bfec2555dce |
||||
msgid "Bases: :py:obj:`ZhFormatter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/date_picker/index.rst:180 |
||||
#: b2258e0474624490b3dfbfd32bb6fae9 |
||||
msgid "Bases: :py:obj:`DatePicker`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,453 @@
@@ -0,0 +1,453 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-06-01 17:56+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:2 |
||||
#: e08ec471dfd74877843628cc62555155 |
||||
msgid "date_time" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:21 |
||||
#: 2c0a9b79116b4bafadcb49615196097f |
||||
msgid "Package Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 21c4434d24db4672a70f7db948b54317 |
||||
msgid "" |
||||
":py:obj:`CalendarPicker " |
||||
"<qfluentwidgets.components.date_time.CalendarPicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:44 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 727e7ed65dce40a18bad745cf47e1836 |
||||
msgid "Calendar picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: d0ee286c2cea4e1d949cf12e12d52d15 |
||||
msgid "" |
||||
":py:obj:`DatePickerBase " |
||||
"<qfluentwidgets.components.date_time.DatePickerBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:66 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 83d56adb3b464bceae52847026a70df8 |
||||
msgid "Date picker base class" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 21c4434d24db4672a70f7db948b54317 |
||||
msgid ":py:obj:`DatePicker <qfluentwidgets.components.date_time.DatePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:101 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 35d860bd938849bc85c0deff1d1e8175 |
||||
msgid "Date picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 104dab6b70c344ee9c8574aa7146e74a |
||||
msgid "" |
||||
":py:obj:`ZhDatePicker " |
||||
"<qfluentwidgets.components.date_time.ZhDatePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:143 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 727e7ed65dce40a18bad745cf47e1836 |
||||
msgid "Chinese date picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: b793e844e30447db975869ce74d738fd |
||||
msgid ":py:obj:`PickerBase <qfluentwidgets.components.date_time.PickerBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:150 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 00bc9432f3304e3bac886cfd8325f630 |
||||
msgid "Picker base class" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: abccd2c06f094a95b8ac7abf0fe3af98 |
||||
msgid ":py:obj:`PickerPanel <qfluentwidgets.components.date_time.PickerPanel>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:271 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: cc7451a872fa43ad961f87235d7f2d0d |
||||
msgid "picker panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 649dc303fe864d21984452684c10c4ca |
||||
msgid "" |
||||
":py:obj:`PickerColumnFormatter " |
||||
"<qfluentwidgets.components.date_time.PickerColumnFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:348 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: c51d37cc13c6467d8ac6ca29bf26252b |
||||
msgid "Picker column formatter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 7f75efffd71a437b9696baba2d138ea5 |
||||
msgid ":py:obj:`TimePicker <qfluentwidgets.components.date_time.TimePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:365 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 06870662e6ac47e3849dc1c02460b8c5 |
||||
msgid "24 hours time picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: 22d176e94c77474b994782ff4f5053f5 |
||||
msgid "" |
||||
":py:obj:`AMTimePicker " |
||||
"<qfluentwidgets.components.date_time.AMTimePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:392 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:39:<autosummary>:1 |
||||
#: a0ff2dc836604d3d86e987d5cb3fbc91 |
||||
msgid "AM/PM time picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:148 |
||||
#: 9db228f439cd4296abdac06b19ddcb4a |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QPushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:52 |
||||
#: 3a1694f98053401c9d52b67629f75d86 |
||||
msgid "set the selected date" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:64 |
||||
#: eea2daa19cd84b20bfa45a5618d39c27 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.PickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:75 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:135 |
||||
#: 2519b71e33e7421191433dea0bc4fdfc |
||||
msgid "set current date" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:99 |
||||
#: 59e815b54e61471c91106547df490116 |
||||
msgid "Bases: :py:obj:`DatePickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:115 |
||||
#: 3a1694f98053401c9d52b67629f75d86 |
||||
msgid "set the format of date" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:118 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:157 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:227 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:291 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:335 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:372 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:404 |
||||
#: 06ae62a5e65e4c2a8d99385573c0467e |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:119 |
||||
#: fbea75ffb0584cabaf6f319ff96003fa |
||||
msgid "format: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:120 |
||||
#: fb3ef9762dff4f3ca1fd3a690df2186d |
||||
msgid "" |
||||
"the format of date, could be `DatePicker.MM_DD_YYYY` or " |
||||
"`DatePicker.YYYY_MM_DD`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:125 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:263 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:384 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:411 |
||||
#: 1ba814d9850a4e9a93410cc023317675 |
||||
msgid "initial value of panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:130 |
||||
#: 7addbdb4615f468084178582d17d2acb |
||||
msgid "set whether the month column is tight" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:141 |
||||
#: 8a642c6df7ac45a89b448d82a66f4fc9 |
||||
msgid "Bases: :py:obj:`DatePicker`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:154 |
||||
#: e1b00d23e4c345cf944628327286917a |
||||
msgid "add column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:159 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:232 |
||||
#: 27bea6239a8646ecb6a6e0c9fffc76c4 |
||||
msgid "name: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:159 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:232 |
||||
#: 3fbb0a8d3a79410eb51d0dcb766c27f6 |
||||
msgid "the name of column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:162 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:235 |
||||
#: 82591e865f84452291c55814508636b1 |
||||
msgid "items: Iterable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:162 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:235 |
||||
#: de047abccc6e429a90cd5df27e2c3d83 |
||||
msgid "the items of column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:165 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:238 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:296 |
||||
#: f7c9ea00c2914042b09fa647cd501df9 |
||||
msgid "width: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:165 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:238 |
||||
#: 0ffd58dc353246faa2d9723c817ea2be |
||||
msgid "the width of column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:168 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:240 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:298 |
||||
#: 74225c43060944b7b15b0925dc67b408 |
||||
msgid "align: Qt.AlignmentFlag" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:168 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:241 |
||||
#: d631ae2ebd234c01a1d5857a68fdde7e |
||||
msgid "the text alignment of button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:170 |
||||
#: cb9b2c54c667488d97f4cc527592670e |
||||
msgid "formatter: PickerColumnFormatter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:171 |
||||
#: 38663ae3a83646a598693e9e4edf5634 |
||||
msgid "the formatter of column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:176 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:191 |
||||
#: ebfea1809c0b44c49ed3494448a30736 |
||||
msgid "set the text alignment of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:181 |
||||
#: 3f1c46bb5f07416aa1ae47866929b178 |
||||
msgid "set the width of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:186 |
||||
#: 479f260cea2e485592b0f40934712b00 |
||||
msgid "make the specified column to be tight" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:214 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:352 |
||||
#: 2806a08e0bf9455eb203068faee3b8cd |
||||
msgid "convert original value to formatted value" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:219 |
||||
#: 7fca634926e646348bf8c8c1ca8779a7 |
||||
msgid "convert formatted value to origin value" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:224 |
||||
#: f56a6e42ac6e4450bdaa3372203c4a2f |
||||
msgid "set column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:229 |
||||
#: 446d70bff706452dbe66a9c689d1af6f |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:229 |
||||
#: a1ae9ea6b6944a7482aacf43c71e93cc |
||||
msgid "the index of column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:246 |
||||
#: 374b98116a35428895417f71040226ad |
||||
msgid "clear columns" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:269 |
||||
#: 6cc8890c87154330981530d23d46a261 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:283 |
||||
#: 173710d871e94369b0f6761722c18acb |
||||
msgid "add shadow to dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:288 |
||||
#: 1830376ebaf44d09ab70cacc4b036917 |
||||
msgid "add one column to view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:293 |
||||
#: 44facbdb4b7a4fd9938248987d3966c2 |
||||
msgid "items: Iterable[Any]" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:293 |
||||
#: f299ed82ca544d48a99f35b231d67385 |
||||
msgid "the items to be added" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:296 |
||||
#: 8ea5b7bdaadf4a3bbcebaabd7a91ffbb |
||||
msgid "the width of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:299 |
||||
#: 5d812c44596446769b25847ff4729171 |
||||
msgid "the text alignment of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:307 |
||||
#: a68e3702564141b49c2c3359d86aea0e |
||||
msgid "return the value of columns" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:312 |
||||
#: f3c649ef803541f4934856ded5251cda |
||||
msgid "set the value of columns" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:317 |
||||
#: 170ddc8d3c5846c5a3b0fb2593c47f09 |
||||
msgid "return the value of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:322 |
||||
#: 596d071510bb449ba874776c8057f064 |
||||
msgid "set the value of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:327 |
||||
#: 32a01b21571b4bdcbc751ff4d027b92b |
||||
msgid "return the list widget of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:332 |
||||
#: 9e12415a9c664cd6ad9fe1d3f91263b8 |
||||
msgid "show panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:337 |
||||
#: 82a124958d514d1b95e1aa9ed2f81f6d |
||||
msgid "pos: QPoint" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:337 |
||||
#: c0df96bcf96a44ce91e297780eff3277 |
||||
msgid "pop-up position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:339 |
||||
#: 3c04a51d0b8742918829de39e98a3c1d |
||||
msgid "ani: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:340 |
||||
#: ff7f22a38f954fffae5ee1da90308ce1 |
||||
msgid "Whether to show pop-up animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:346 |
||||
#: 7f443f7c027b46a5989b886349fa9442 |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:357 |
||||
#: 70da90c3818646628d07c589c60db7a3 |
||||
msgid "convert formatted value to original value" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:363 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:390 |
||||
#: ab34c99f94424a8d97f96de7ae76c3f1 |
||||
msgid "Bases: :py:obj:`TimePickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:369 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:401 |
||||
#: e290ebc883ad4ff0b3b769c128ba2232 |
||||
msgid "set current time" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:373 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:405 |
||||
#: 0d9fb9202864488f8b34b466ed8a2765 |
||||
msgid "time: QTime" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:374 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:406 |
||||
#: 37194521b2804b7ab3eb2003768e9de1 |
||||
msgid "current time" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:379 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/index.rst:396 |
||||
#: 13a8d6146ff2498eac1c80a006ec89c9 |
||||
msgid "set the visibility of seconds column" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,400 @@
@@ -0,0 +1,400 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:2 |
||||
#: a0383fc65cb243039aae3b1c6521eed2 |
||||
msgid "picker_base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:8 |
||||
#: 2ab836cd9eeb4af1aa2d523488304d33 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: a852507788c54f739399c324903faae4 |
||||
msgid "" |
||||
":py:obj:`SeparatorWidget " |
||||
"<qfluentwidgets.components.date_time.picker_base.SeparatorWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 8cce2f7231374573ae466ff902be911a e6006f75bcc744ba800f06851cadcc8c |
||||
msgid "Separator widget" |
||||
msgstr "分割符小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: e81f68865731492cb5d2f522ae5f049f |
||||
msgid "" |
||||
":py:obj:`ItemMaskWidget " |
||||
"<qfluentwidgets.components.date_time.picker_base.ItemMaskWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:44 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: c7720b51720f4f468ce334492b0c7107 f8320a4da73b4faa96be62457d33e848 |
||||
msgid "Item mask widget" |
||||
msgstr "遮罩部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 5df21faea6664949bc4c494e9e2e2ae2 |
||||
msgid "" |
||||
":py:obj:`PickerColumnFormatter " |
||||
"<qfluentwidgets.components.date_time.picker_base.PickerColumnFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 861de0d2bd3c46b9b7023174f82e4f84 dc75e1a3a8fd4d2e88c956e66f3a408c |
||||
msgid "Picker column formatter" |
||||
msgstr "选择器列格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: f5de8e644e324f539c635ed0a7332200 |
||||
msgid "" |
||||
":py:obj:`DigitFormatter " |
||||
"<qfluentwidgets.components.date_time.picker_base.DigitFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 2539ea73ce8840509b44e113f093da91 6c66d10f5a4841359140d00dce5af853 |
||||
msgid "Digit formatter" |
||||
msgstr "数字格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 521122586c72467aa4934ee865b5ee8c |
||||
msgid "" |
||||
":py:obj:`PickerColumnButton " |
||||
"<qfluentwidgets.components.date_time.picker_base.PickerColumnButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:83 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 498a036bd9d24eea8b3ed7e7accab20d d7de3203098d4740a86f974d8bf1d745 |
||||
msgid "Picker column button" |
||||
msgstr "选择器列按钮" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 9be0bfbf80864dbca31ed16f2c95389b |
||||
msgid "" |
||||
":py:obj:`PickerBase " |
||||
"<qfluentwidgets.components.date_time.picker_base.PickerBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:127 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 4819da9c47a346768c1a4513f91cefc6 e034aceba5ff4d04bb568c42cd696658 |
||||
msgid "Picker base class" |
||||
msgstr "选择器基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 2401cfaa87a5452594a06ffaf82062e3 |
||||
msgid "" |
||||
":py:obj:`PickerToolButton " |
||||
"<qfluentwidgets.components.date_time.picker_base.PickerToolButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:248 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 219eaad93b51433e9a7a3b31c0d618ad 54e399553076488ab9e8c24b1e3336b0 |
||||
msgid "Picker tool button" |
||||
msgstr "选择器工具按钮" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 6019a5a9245f4ac4914360d4e79c0cef |
||||
msgid "" |
||||
":py:obj:`PickerPanel " |
||||
"<qfluentwidgets.components.date_time.picker_base.PickerPanel>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:255 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:26:<autosummary>:1 |
||||
#: 87d729ab3c3d4977aad27218d7cf9762 d6819251ed3f409483d4a9453ed1f8d2 |
||||
msgid "picker panel" |
||||
msgstr "选择器面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:32:<autosummary>:1 |
||||
#: 893d928009814030b1ea7c31d76fa125 |
||||
msgid "" |
||||
":py:obj:`checkColumnIndex " |
||||
"<qfluentwidgets.components.date_time.picker_base.checkColumnIndex>`\\ " |
||||
"\\(func\\)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:120 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:32:<autosummary>:1 |
||||
#: 22a230ad2bd74adf884d99d2d15d8cc7 f758c323b2864d7faf4f110f0caa9cf5 |
||||
msgid "check whether the index is out of range" |
||||
msgstr "检查索引是否越界装饰器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:35 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:253 |
||||
#: 2c9b101ca8894d95a096e8802fe7fa32 3a757d6dc4db4ea8afadda9a72601b1d |
||||
#: 9165ecdefcec472197faea02b172c722 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:52 |
||||
#: 5ec23595475548ccad8e76b734ff7b4d |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:58 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:191 |
||||
#: 2d40091006de48a384957e2608840e67 4ac62f772edd482fa798e3baaf519c87 |
||||
msgid "convert original value to formatted value" |
||||
msgstr "将原始值转换为格式化后的字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:75 |
||||
#: 124108c625d746f8b17f8d80c7e1b976 1f2d20a1ddc84aabb2b8f51f174c0f8e |
||||
msgid "convert formatted value to original value" |
||||
msgstr "将格式化后的字符串转换为原始值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:69 |
||||
#: 55747a8720b14352b9bb5120c43ca55e |
||||
msgid "Bases: :py:obj:`PickerColumnFormatter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:81 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:125 |
||||
#: 1f3ad100339b473d8a82e4b5c727e828 edbe48729e04467f894b3f75ce6ad470 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QPushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:90 |
||||
#: 128cdf50fd3c46ff8c3e7eee0132bb74 |
||||
msgid "set the text alignment" |
||||
msgstr "设置文本对齐方式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:131 |
||||
#: d5682da9e9f84e818c56f006b7db61ff |
||||
msgid "add column" |
||||
msgstr "添加列" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:134 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:204 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:275 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:319 |
||||
#: 76bb76a6134f4a54b5d4ed6a8eccfdc6 ae88c22735ab4bf39d5f50a18bc1fe67 |
||||
#: c04ea35ec9cb43e6bab844ef1f5c3ce2 dd492371ab80492baaaa8406f4c36a11 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:136 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:209 |
||||
#: 7d4cdc4fe98e4987b28846de420bf18b 847596d34bb144a5a89b16547da9262d |
||||
msgid "name: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:136 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:209 |
||||
#: 94e82ebba72b47dba0e81b5daae15360 f19a089572ef4def8b422e3f7b47af48 |
||||
msgid "the name of column" |
||||
msgstr "列的名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:139 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:212 |
||||
#: 461fab65530b4f1ebc3d5f85d83aa01a 7929934175d047d6a637732590cb7b38 |
||||
msgid "items: Iterable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:139 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:212 |
||||
#: 95e21418f52d498ba408341213034835 d92e1a007f224a97808cf6c8b90a35e2 |
||||
msgid "the items of column" |
||||
msgstr "列的选项列表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:142 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:215 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:280 |
||||
#: 1694a5befc6a4d9c80b9a554c68aea31 367af086b33648088548cb06408996e0 |
||||
#: b6f5d57b1a8947f2b4711c9b726c1419 |
||||
msgid "width: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:142 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:215 |
||||
#: 8633961938eb44f583e715a204d64564 997e5d6a0e7a4a89aeaaff21e4163fb0 |
||||
msgid "the width of column" |
||||
msgstr "列的宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:145 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:217 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:282 |
||||
#: a9d2c722525841eb850f773354caea9a c562ed87ee404942ae22657170144cd8 |
||||
#: e81e60ddb93c4aa28c22ad8609cfb557 |
||||
msgid "align: Qt.AlignmentFlag" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:145 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:218 |
||||
#: 1cbf9acd32524ed984ca8b105dd43ccc c3129064657843edbab5e1ffd1715aaf |
||||
msgid "the text alignment of button" |
||||
msgstr "文本对齐方式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:147 |
||||
#: 95dc0b8fb65a486baeec40a2add2093c |
||||
msgid "formatter: PickerColumnFormatter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:148 |
||||
#: 15b4646c11b647fc8ab3aabef2ea576a |
||||
msgid "the formatter of column" |
||||
msgstr ""列的格式化器 |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:153 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:168 |
||||
#: e7530fce57bb4811b2c5c5024c998008 f42505e37e05449683acd3a6d8931bbd |
||||
msgid "set the text alignment of specified column" |
||||
msgstr "设置指定列的文本对齐方式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:158 |
||||
#: 0bb4f0970a934ff2b0ad0a5056c5dadf |
||||
msgid "set the width of specified column" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:163 |
||||
#: 21ddff1d2a9e4e419207fc7efbca22d2 |
||||
msgid "make the specified column to be tight" |
||||
msgstr "紧凑布局指定列" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:196 |
||||
#: 5e665c34347140e7ba924a8f146d12a2 |
||||
msgid "convert formatted value to origin value" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:201 |
||||
#: 040aba18bba44de7a5b0d696f0343f95 |
||||
msgid "set column" |
||||
msgstr "设置列" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:206 |
||||
#: 9c77266a93a149f1a83f3235d3fb6dd9 |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:206 |
||||
#: 384363994b82409c817a3a2a8cc610ba |
||||
msgid "the index of column" |
||||
msgstr "列索引" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:223 |
||||
#: e6e28f44cac2450680aa86bd4f064392 |
||||
msgid "clear columns" |
||||
msgstr "清空列" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:240 |
||||
#: 1bb2b7f19ac24b04ab09c9dc238e38ab |
||||
msgid "initial value of panel" |
||||
msgstr "面板的初始值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:246 |
||||
#: 829887056af74d519c15e03f8aae7662 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.widgets.button.TransparentToolButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:267 |
||||
#: c6aa217f135042e1bb77aa343a8e969b |
||||
msgid "add shadow to dialog" |
||||
msgstr "给面板添加阴影" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:272 |
||||
#: 29f27234ce6341229f74ee5c7327e78a |
||||
msgid "add one column to view" |
||||
msgstr "添加列" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:277 |
||||
#: 034a20bb756c4d22b4772bd988062f14 |
||||
msgid "items: Iterable[Any]" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:277 |
||||
#: e82273003f544b35a24dc270680d922f |
||||
msgid "the items to be added" |
||||
msgstr "列的选项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:280 |
||||
#: 67357023f7dc4a8d986d7b97fa24b1eb |
||||
msgid "the width of item" |
||||
msgstr "列的宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:283 |
||||
#: 855479968c63477198d611e57eb5fda1 |
||||
msgid "the text alignment of item" |
||||
msgstr "列的文本对齐方式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:291 |
||||
#: 6c988d4ba24d494f828cd53a3ad109ee |
||||
msgid "return the value of columns" |
||||
msgstr "返回所有列的值组成的列表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:296 |
||||
#: 340f767b501f4fa592ca2fb6f88953ef |
||||
msgid "set the value of columns" |
||||
msgstr "设置所有列的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:301 |
||||
#: 8cf19942084342ab88c0a67710fbf355 |
||||
msgid "return the value of specified column" |
||||
msgstr "返回指定列的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:306 |
||||
#: 6b38b4cac22145d4b8fffc64d3089f45 |
||||
msgid "set the value of specified column" |
||||
msgstr "设置指定列的值" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:311 |
||||
#: c538ea73c40b4dba8d18243e96cf6762 |
||||
msgid "return the list widget of specified column" |
||||
msgstr "返回指定列的列表控件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:316 |
||||
#: 156b68d5867c41609649b48917490dac |
||||
msgid "show panel" |
||||
msgstr "显示面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:321 |
||||
#: 41ce50a58b6643d285664a978bfbf50f |
||||
msgid "pos: QPoint" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:321 |
||||
#: 64310c1500024eea8954cb4f8ee1f3f4 |
||||
msgid "pop-up position" |
||||
msgstr "弹出位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:323 |
||||
#: 8e6e5308acbb45ebbb433482813f8f41 |
||||
msgid "ani: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/picker_base/index.rst:324 |
||||
#: 749dd09f74b84eefbd4b3f33fb584b9a |
||||
msgid "Whether to show pop-up animation" |
||||
msgstr "弹出时是否使用动画" |
||||
|
Binary file not shown.
@ -0,0 +1,192 @@
@@ -0,0 +1,192 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:2 |
||||
#: b03d2d8574b94331a2dc9172dad158f3 |
||||
msgid "time_picker" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:8 |
||||
#: c5c5b6102a9a4675b1462d12cae29dbc |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 126c2382826b46f1af902c19b7da0849 |
||||
msgid "" |
||||
":py:obj:`TimePickerBase " |
||||
"<qfluentwidgets.components.date_time.time_picker.TimePickerBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:28 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 7b740a508fdd446e9852e692e6fccb13 f07f48fd55b943b6bc10e837e53a52ce |
||||
msgid "Time picker base class" |
||||
msgstr "时间选择器基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 36c367176c6745c885755117dd5ac137 |
||||
msgid "" |
||||
":py:obj:`MiniuteFormatter " |
||||
"<qfluentwidgets.components.date_time.time_picker.MiniuteFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:56 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 18037babaf904d22812d65a03538d2f3 6d6209f43f4c4fe794b5be80ac115827 |
||||
msgid "Minute formatter" |
||||
msgstr "分钟格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 5b983b1c8cb44ad5839f29c08eb72465 |
||||
msgid "" |
||||
":py:obj:`AMHourFormatter " |
||||
"<qfluentwidgets.components.date_time.time_picker.AMHourFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:68 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 7e827d121253416fa2df5140324a07cf 8dca32107b69414096aa8ba91573f6cb |
||||
msgid "AM/PM Hour formatter" |
||||
msgstr "AM/PM 小时格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 663ffb8960f44c7992736b27fa5bf0e2 |
||||
msgid "" |
||||
":py:obj:`AMPMFormatter " |
||||
"<qfluentwidgets.components.date_time.time_picker.AMPMFormatter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:80 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 20040a6dfbef4ced8b1289bc1b56a2d3 406ba78048ae48d5941b4a39f94b541a |
||||
msgid "AM/PM formatter" |
||||
msgstr "AM/PM 格式化器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: bb758b32abf3414fb9fa1077363276ea |
||||
msgid "" |
||||
":py:obj:`TimePicker " |
||||
"<qfluentwidgets.components.date_time.time_picker.TimePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:92 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 7f79b46355fe4bf8a4e8dc46cb59544b ee63c2657af04f8ca01b78c041430142 |
||||
msgid "24 hours time picker" |
||||
msgstr "24小时时间选择器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 3b0f2e76fa41439b8ee7aca851e3ebf9 |
||||
msgid "" |
||||
":py:obj:`AMTimePicker " |
||||
"<qfluentwidgets.components.date_time.time_picker.AMTimePicker>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:23:<autosummary>:1 |
||||
#: 7d8583f19b9c4fd490426b05427e278b 9e74e313151348d7a4c14cc683a402a4 |
||||
msgid "AM/PM time picker" |
||||
msgstr "AM/PM 格式时间选择器" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:26 |
||||
#: 23a905d5799c4d75b5aa5d54965864e3 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.PickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:96 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:128 |
||||
#: 3add540810e14a4185cad74c6659255b 49178846f2894a9da0328d803cbce312 |
||||
#: bb2382cf900048848b9f4b1624ee9ba5 |
||||
msgid "set current time" |
||||
msgstr "设置当前时间" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:40 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:99 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:131 |
||||
#: 2e089546082f434cad19a86fd4f3da57 9ff917c1ba42470da1bb498b036e1f12 |
||||
#: db1600dd99cf40cc80d5c81b3f89fc1b |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:41 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:100 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:132 |
||||
#: 8bd1a7bfb9aa454abd7f252cd7e45a7d c8d8b39436f840f8ac2c97bd9b887cc4 |
||||
#: fed3b43cf6594d72a2112dbea47ee4e2 |
||||
msgid "time: QTime" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:101 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:133 |
||||
#: 2ff92593e868457dbc87fcaaaa98257a 502f05875ed14b338fb22b4cac6e904a |
||||
#: 80b9f217c3bd457488acba6542d900e0 |
||||
msgid "current time" |
||||
msgstr "当前时间" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:48 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:106 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:123 |
||||
#: 3785480b6a034611a4624cf282f33cda 444ed68755e44d7496a43da220d2d2cf |
||||
#: a06cc4d137bf41238d0909ceee997ff5 |
||||
msgid "set the visibility of seconds column" |
||||
msgstr "设置秒数列是否可见" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:66 |
||||
#: 70bdb704cf004c63a731eb4d5a6aa251 a627581028ac4022acf27d5770e0844b |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.DigitFormatter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:60 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:72 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:84 |
||||
#: 132e3420ecba4c038b7c56ca4d0026f9 51e8c620078d4ccd90c7bc294cbf5d9b |
||||
#: d5bca320da484b90aef762f8d1397cae |
||||
msgid "convert original value to formatted value" |
||||
msgstr "将原始值转换为格式化后的字符串" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:78 |
||||
#: 3db28462d9d1405b9be03246ed64ad9b |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.date_time.picker_base.PickerColumnFormatter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:90 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:117 |
||||
#: 7c8ccd706046454fa1c47e6320a51aa2 c6a28802d8aa4fba94a36ab656e7168e |
||||
msgid "Bases: :py:obj:`TimePickerBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:111 |
||||
#: ../../source/autoapi/qfluentwidgets/components/date_time/time_picker/index.rst:138 |
||||
#: 63048720529d436d85c5090f63412a26 ea05b8158b534a93ac613950c05989b6 |
||||
msgid "initial value of panel" |
||||
msgstr "面板的初始值" |
||||
|
Binary file not shown.
@ -0,0 +1,185 @@
@@ -0,0 +1,185 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:2 |
||||
#: 2d6888c7a3c643cc93233b08a95b6211 |
||||
msgid "color_dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:8 |
||||
#: d757ae592ad94124897f59c9e32f9c8e |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 78b5afa885f94f2b83ec0de3ce0734e8 |
||||
msgid "" |
||||
":py:obj:`HuePanel " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.HuePanel>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:29 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 24e5eaf75bec4203a55216c38a7cde6d 801af067886747568f9f50075464e286 |
||||
msgid "Hue panel" |
||||
msgstr "色调面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: d4ecf4da23e5459886173aa87d15b3ce |
||||
msgid "" |
||||
":py:obj:`BrightnessSlider " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.BrightnessSlider>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 27aa1ca011064bb58bc4ac8b70feaa95 af66974b480642cca83c5c28dea999a6 |
||||
msgid "Brightness slider" |
||||
msgstr "亮度滑动条" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: a5ea81e19674483cb8e6239ff5e9cec1 |
||||
msgid "" |
||||
":py:obj:`ColorCard " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.ColorCard>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:81 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 2b6aa7f1c2fb4f11a4f30e4f56f60c9b 8e78bc1b20784cf8b353809ebc2ab51d |
||||
msgid "Color card" |
||||
msgstr "颜色卡" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 5652553bddd140e3ae7e351dc56a242a |
||||
msgid "" |
||||
":py:obj:`ColorLineEdit " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.ColorLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:96 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 78e8f52eaf4f4f76bcca412fb000b963 a5f1117ae44c429d8839f600616a19bd |
||||
msgid "Color line edit" |
||||
msgstr "颜色编辑框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: d2d0a8ad024d4bd3af29159a6ba03701 |
||||
msgid "" |
||||
":py:obj:`HexColorLineEdit " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.HexColorLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:107 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 50aa98abe92f45dbb6e2ac175ba26f4f 9e3195bc73984d4ab7a2f13c01a5f99c |
||||
msgid "Hex color line edit" |
||||
msgstr "十六进制颜色编辑框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: d1f53e3c2be24790a269c2ee2ca3db8a |
||||
msgid "" |
||||
":py:obj:`OpacityLineEdit " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.OpacityLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 1334fbe0c1bd47bc9e19ed1bb26e924d 94c22af5d2934f74ac813ad7c04af6af |
||||
#, fuzzy |
||||
msgid "Opacity line edit" |
||||
msgstr "颜色编辑框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 3502ee11c5fc4a589014ed758e2fa22e |
||||
msgid "" |
||||
":py:obj:`ColorDialog " |
||||
"<qfluentwidgets.components.dialog_box.color_dialog.ColorDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:129 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:24:<autosummary>:1 |
||||
#: 914577b6d86c406499af743925d8ec19 db20b542055e4187a066b66f6547d929 |
||||
msgid "Color dialog" |
||||
msgstr "颜色对话框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:27 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:79 |
||||
#: 5ac22ca81a664ba49a76de49751c0f03 7f103c08292741b7b199fcdc7b8f4814 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:49 |
||||
#: 9c8efd67e2894346952d50194d273ada |
||||
msgid "set the position of" |
||||
msgstr "设置拾色器的位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:111 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:137 |
||||
#: 17fb1bc03fbd4eb1941855192a0fa3b1 98986974710d4db9aabf2dd02bbe7773 |
||||
#: 9efd12eb9d4545bb8140b225aece6b17 d0773175fba04e1d9507a8d04d6ff338 |
||||
msgid "set color" |
||||
msgstr "设置颜色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:63 |
||||
#: 8b1a27441f2b469d82a4af63137d5c9a |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.ClickableSlider`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:85 |
||||
#: 6922bf25ab724813b2b8ef7938716e49 |
||||
msgid "set the color of card" |
||||
msgstr "设置卡片的颜色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:94 |
||||
#: 82be1312babc43ca9b3b36de23470da6 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.line_edit.LineEdit`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:105 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:117 |
||||
#: 63fb7ffae1314ead8d24354dae5adf8b da5df8d4bf34487982fd4be8492bba34 |
||||
msgid "Bases: :py:obj:`ColorLineEdit`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:127 |
||||
#: 56b27969760a4c349a613e298288251a |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:142 |
||||
#: a78c7471f7204a829d06969255b524a6 |
||||
msgid "update style sheet" |
||||
msgstr "更新样式表" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/color_dialog/index.rst:147 |
||||
#: 947b6bfc01684fbcbe2518b4b070ee84 |
||||
msgid "fade in" |
||||
msgstr "淡入" |
||||
|
||||
#~ msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.Slider`" |
||||
#~ msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,87 @@
@@ -0,0 +1,87 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:2 |
||||
#: d1c957cf64b34c7ebc66636d2be1fd9d |
||||
msgid "dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:8 |
||||
#: 0a3fa5d41c1f4166b99f55eccf8da5ea |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: 9bee48eddc3f44c98a135914d4cfeb67 |
||||
msgid "" |
||||
":py:obj:`Ui_MessageBox " |
||||
"<qfluentwidgets.components.dialog_box.dialog.Ui_MessageBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: ab45e343d21943deb0322ef526a08ecd d505ced080644f9498a978accf79f5f7 |
||||
msgid "Ui of message box" |
||||
msgstr "消息框的 Ui 类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: 801f59775591435297981401df2a3411 |
||||
msgid ":py:obj:`Dialog <qfluentwidgets.components.dialog_box.dialog.Dialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:43 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: 5a8252abe1c443e48cebc8952398d188 b09e0d7008074968a2dec6f457a4b7fb |
||||
msgid "Dialog box" |
||||
msgstr "无边框消息框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: b1dde6c2ed5e475d83ff3e7105347eff |
||||
msgid "" |
||||
":py:obj:`MessageBox " |
||||
"<qfluentwidgets.components.dialog_box.dialog.MessageBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:61 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:20:<autosummary>:1 |
||||
#: 4120f2c271d34980b2d41a1409f5d070 9a8363a1367842b0a9752bd2753679a2 |
||||
msgid "Message box" |
||||
msgstr "带遮罩的消息框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:35 |
||||
#: f99a38e5672044d8986a85422227f7cd |
||||
msgid "set whether the content is copyable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:41 |
||||
#: cad449b2f8ac48278ae12d7dd225a2c8 |
||||
msgid "Bases: :py:obj:`qframelesswindow.FramelessDialog`, :py:obj:`Ui_MessageBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/dialog/index.rst:59 |
||||
#: 4ae872b2ce1c416b8ec6242d0913d7a5 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`," |
||||
" :py:obj:`Ui_MessageBox`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,113 @@
@@ -0,0 +1,113 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:2 |
||||
#: d5c0759c31514a28b0f351c04a5689bf |
||||
msgid "folder_list_dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:8 |
||||
#: b0e882a6d78049d0b9550be2673c8859 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: cefee160ea7a4bc0b2657c25c45b1cdd |
||||
msgid "" |
||||
":py:obj:`FolderListDialog " |
||||
"<qfluentwidgets.components.dialog_box.folder_list_dialog.FolderListDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:26 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 511aaf0109184f8a884a48e54a0dbab2 87f411d23dd742278b2d31cf4f1ce23b |
||||
msgid "Folder list dialog box" |
||||
msgstr "文件夹列表对话框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: fb819482d9b144fdbba4853640436b1a |
||||
msgid "" |
||||
":py:obj:`ClickableWindow " |
||||
"<qfluentwidgets.components.dialog_box.folder_list_dialog.ClickableWindow>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:37 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 8595e14087ff44bea467c481ac5a1c01 b9845c0a834343e8bea6405a414843df |
||||
msgid "Clickable window" |
||||
msgstr "可点击窗口" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 1acefdf8f1754ca1b15bd5da74b17876 |
||||
msgid "" |
||||
":py:obj:`FolderCard " |
||||
"<qfluentwidgets.components.dialog_box.folder_list_dialog.FolderCard>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 06f7ef8390764adaa0b241e2e728a158 b34c193dd2ee40f3aa20e173c9e66369 |
||||
msgid "Folder card" |
||||
msgstr "文件夹卡片" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 792ba91264264c22a5e27bc9c274034a |
||||
msgid "" |
||||
":py:obj:`AddFolderCard " |
||||
"<qfluentwidgets.components.dialog_box.folder_list_dialog.AddFolderCard>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:77 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:21:<autosummary>:1 |
||||
#: 05b8c67641a44a54ba3b2540e63231e2 4c1adfc5edac4707a292c88200d67323 |
||||
msgid "Add folder card" |
||||
msgstr "添加文件夹卡片" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:24 |
||||
#: 6a01c4220bc64d4f9eba99bd310bee17 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:35 |
||||
#: 11b1bf6a820142c38f5a550a51c30e4f |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:57 |
||||
#: c3d62839979c4e4e858777dba257cb76 |
||||
msgid "paint window" |
||||
msgstr "绘制窗口" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:63 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:75 |
||||
#: 364273ff290e4bc7a1fb8d42ef44cd58 5a8bae3534844816affc6508e87055e7 |
||||
msgid "Bases: :py:obj:`ClickableWindow`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/folder_list_dialog/index.rst:81 |
||||
#: 357957a9592f468788490a5bac75f734 7a4d0cd7741545b2a53133e075d3cf3e |
||||
msgid "paint card" |
||||
msgstr "绘制卡片" |
||||
|
Binary file not shown.
@ -0,0 +1,143 @@
@@ -0,0 +1,143 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:2 |
||||
#: 1297ce655a4b4aadb1c6305f9a9d82a7 |
||||
msgid "dialog_box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:22 |
||||
#: 111c9d59dee54527b5c5e3abf54fdd0c |
||||
msgid "Package Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 1eab22f32c3b4f73b518412b50b94926 |
||||
msgid ":py:obj:`ColorDialog <qfluentwidgets.components.dialog_box.ColorDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 457be396053a476ca0623349c956dd44 fd092fce5817491a9e1cd8ef102406d3 |
||||
msgid "Color dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 19bbc05ecacc44d0ad15e6a519eedc99 |
||||
msgid ":py:obj:`Dialog <qfluentwidgets.components.dialog_box.Dialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:68 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 30e9f8bb761c4beda4ff451adde98812 d3aaa43493bf427d998c27dc4ea7f94a |
||||
msgid "Dialog box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: a04143444a6f40f283ed2741e83e7b19 |
||||
msgid ":py:obj:`MessageBox <qfluentwidgets.components.dialog_box.MessageBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:86 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: ee3b1745291841518189e66e0b90d43b fb261fa03641418fa76759760246a446 |
||||
msgid "Message box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: e724a490f6c44194b9389e8c249a947c |
||||
msgid "" |
||||
":py:obj:`FolderListDialog " |
||||
"<qfluentwidgets.components.dialog_box.FolderListDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:104 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 0528a705355a4615a67cef7ebcbf8cdb 28b3d27dfea64e13bfc66c7b386a1bce |
||||
msgid "Folder list dialog box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 411658a58d4a4fc08d4852e894ca2df4 |
||||
msgid "" |
||||
":py:obj:`MessageDialog " |
||||
"<qfluentwidgets.components.dialog_box.MessageDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:115 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 19cf52939597495aaa73bdcf2bdb72c6 a032bd6d206e48ebbcc57abb4e919a85 |
||||
msgid "Win10 style message dialog box with a mask" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 2414b2a1661e49efa5fd756734a716cb |
||||
msgid "" |
||||
":py:obj:`MessageBoxBase " |
||||
"<qfluentwidgets.components.dialog_box.MessageBoxBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:130 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:37:<autosummary>:1 |
||||
#: 750dc1efdfa3486582fa3e033b60cc5c d9b5dbf6354e4dada830f739e021c873 |
||||
msgid "Message box base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:40 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:102 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:113 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:128 |
||||
#: 56845413843e4651bf32770ceea7a366 88d245a4564042e2838d9eac76d010aa |
||||
#: a7926ce6e6b042ac86cd148f20dc8c38 e43ab403acbb443fb4be39935a73c3f2 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:50 |
||||
#: 63280307ad4f4449a1b48c63386b944f |
||||
msgid "set color" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:55 |
||||
#: f0d0bea335b44907840686a77be47bec |
||||
msgid "update style sheet" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:60 |
||||
#: 791bf37217dc4489b90294ebb628f711 |
||||
msgid "fade in" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:66 |
||||
#: 6b6b6de9c8094c1ebc48a5b353da46ed |
||||
msgid "Bases: :py:obj:`qframelesswindow.FramelessDialog`, :py:obj:`Ui_MessageBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/index.rst:84 |
||||
#: 7c5b7c2fcebf45d3aebd841a79c7a648 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`," |
||||
" :py:obj:`Ui_MessageBox`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,70 @@
@@ -0,0 +1,70 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:2 |
||||
#: 7dfc5e362ca642ce941455abe8f1f30e |
||||
msgid "mask_dialog_base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:8 |
||||
#: 778aaff3f38a45d3985c36d280b1d388 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:18:<autosummary>:1 |
||||
#: c4b63c4442294efca10ea89c3b0cdfbc |
||||
msgid "" |
||||
":py:obj:`MaskDialogBase " |
||||
"<qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:18:<autosummary>:1 |
||||
#: 7bd08e5b10174f398e27bfeb47188753 8926760f0a8049c8abb35f5ddf403fc6 |
||||
msgid "Dialog box base class with a mask" |
||||
msgstr "带遮罩的对话框基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:21 |
||||
#: 01dc7c672e3c487d8dcc572e829c3fb2 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QDialog`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:27 |
||||
#: 62c60051645e47f49afb4b4bb054ee7c |
||||
msgid "add shadow to dialog" |
||||
msgstr "给对话框添加阴影" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:32 |
||||
#: fce9ace825124e5eaf349474d083948b |
||||
msgid "set the color of mask" |
||||
msgstr "设置遮罩颜色" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:37 |
||||
#: addfbd5f8af94d038541af0c4cd9327e |
||||
msgid "fade in" |
||||
msgstr "淡入" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/mask_dialog_base/index.rst:42 |
||||
#: 14993efa7567493c9e252cba8caf052f |
||||
msgid "fade out" |
||||
msgstr "淡出" |
||||
|
@ -0,0 +1,52 @@
@@ -0,0 +1,52 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:2 |
||||
#: 88802143712b49f596a93e1015f698c4 |
||||
msgid "message_box_base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:8 |
||||
#: 87afd26363fd48488ad072020e3aa853 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:18:<autosummary>:1 |
||||
#: ea18fe8fe9144a638c9bf725f057dc20 |
||||
msgid "" |
||||
":py:obj:`MessageBoxBase " |
||||
"<qfluentwidgets.components.dialog_box.message_box_base.MessageBoxBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:18:<autosummary>:1 |
||||
#: 9f0f890a50ce4cd8bae05f544941cbc3 df934503f6124331ba8903de83cebaf9 |
||||
msgid "Message box base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_box_base/index.rst:21 |
||||
#: 1660be80c728404f9daeac5623c07675 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,52 @@
@@ -0,0 +1,52 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:2 |
||||
#: b03ad29d10d14f24a5bfdc1c58d507be |
||||
msgid "message_dialog" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:8 |
||||
#: 14bfc684126446f18348fe9d719af80d |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:18:<autosummary>:1 |
||||
#: a9cd7e55fffe41c3af9cca4f2bd9f0ef |
||||
msgid "" |
||||
":py:obj:`MessageDialog " |
||||
"<qfluentwidgets.components.dialog_box.message_dialog.MessageDialog>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:18:<autosummary>:1 |
||||
#: 06780e98d32f4fd1880b1bea38d40342 5f48a5a05207403bbb3409aa79d39db4 |
||||
msgid "Win10 style message dialog box with a mask" |
||||
msgstr "Win10 风格的带遮罩消息框" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/dialog_box/message_dialog/index.rst:21 |
||||
#: 25762ef026a44b5e84bb9a2cabce83b4 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.dialog_box.mask_dialog_base.MaskDialogBase`" |
||||
msgstr "" |
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,55 @@
@@ -0,0 +1,55 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:2 |
||||
#: 3ec3eb77bf3f4ecfba152dab5e75f713 |
||||
msgid "expand_layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:8 |
||||
#: f4b6f61aed274753863c409deb1a2e72 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:18:<autosummary>:1 |
||||
#: 3aa290f6235a4f298dac3678c68145f3 |
||||
msgid "" |
||||
":py:obj:`ExpandLayout " |
||||
"<qfluentwidgets.components.layout.expand_layout.ExpandLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:18:<autosummary>:1 |
||||
#: 1cb8672bb6a248c39e62ffb261064430 e1a1b7035da148589f0030a0c8a3cc4c |
||||
msgid "Expand layout" |
||||
msgstr "可自动伸缩的布局" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:21 |
||||
#: 63c21cabf5db4a0e999279892de17c8e |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QLayout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/expand_layout/index.rst:48 |
||||
#: 6ae76ecad7934c92a4fe3dc4d41741c5 |
||||
msgid "get the minimal height according to width" |
||||
msgstr "根据宽度获取最小高度" |
||||
|
Binary file not shown.
@ -0,0 +1,115 @@
@@ -0,0 +1,115 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:2 |
||||
#: 29dfeaabd0094cfc9f46d70d66d96dae |
||||
msgid "flow_layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:8 |
||||
#: 1d5963fbf8f846edb4f6191a5b79fb8d |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:18:<autosummary>:1 |
||||
#: 532654c44f634553a4e48447e77f6602 |
||||
msgid "" |
||||
":py:obj:`FlowLayout " |
||||
"<qfluentwidgets.components.layout.flow_layout.FlowLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:18:<autosummary>:1 |
||||
#: 014281748a0342678eec5b67d8a74058 6621dc3caf2b4db79d0dff611085b23c |
||||
msgid "Flow layout" |
||||
msgstr "流式布局" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:21 |
||||
#: 12e831d2e0964220ac4d217a193046d5 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QLayout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:33 |
||||
#: d51bda6e59a44e93a50603cf6ab01a39 |
||||
msgid "set the moving animation" |
||||
msgstr "设置移动动画" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:36 |
||||
#: 141c551f58034832a5b8544af92a6b34 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:38 |
||||
#: 2b0865cbb7a7460ca0e1afd18dbb9ba3 |
||||
msgid "duration: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:38 |
||||
#: f687c31d46c542b1818fe39310dadb3a |
||||
msgid "the duration of animation in milliseconds" |
||||
msgstr "动画持续时间,单位为毫秒" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:40 |
||||
#: e6474898374a47c697169bfbf95de995 |
||||
msgid "ease: QEasingCurve" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:41 |
||||
#: 294a4efd35e3427dbc338d15238ee8de |
||||
msgid "the easing curve of animation" |
||||
msgstr "动画插值方式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:55 |
||||
#: b6094d7280c94339ba49a613b67e89ea |
||||
msgid "remove all widgets from layout" |
||||
msgstr "从布局中移除所以小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:60 |
||||
#: eb3638c0cd7647b59956e8753b925c00 |
||||
msgid "remove all widgets from layout and delete them" |
||||
msgstr "从布局中移除所以小部件并删除它们" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:71 |
||||
#: 451e77c0dd1f467db69fc820a8689c9d |
||||
msgid "get the minimal height according to width" |
||||
msgstr "根据宽度获取最小高度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:85 |
||||
#: 13d9098fcd6f4a2cbc15b11d233d9008 |
||||
msgid "set vertical spacing between widgets" |
||||
msgstr "设置小部件间的垂直间距" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:90 |
||||
#: 723641c4cbee4632abbc3d713efe84d3 |
||||
msgid "get vertical spacing between widgets" |
||||
msgstr "返回小部件间的垂直间距" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:95 |
||||
#: 40332f8bdbcc4cd982500b22176c9a82 |
||||
msgid "set horizontal spacing between widgets" |
||||
msgstr "设置小部件间的水平间距" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/flow_layout/index.rst:100 |
||||
#: b7a4abd2c07249eda34871b6787b3301 |
||||
msgid "get horizontal spacing between widgets" |
||||
msgstr "返回小部件间的水平间距" |
||||
|
Binary file not shown.
@ -0,0 +1,163 @@
@@ -0,0 +1,163 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:2 |
||||
#: 96e79c9cafa74860a254d8bd3f0ad393 |
||||
msgid "layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:19 |
||||
#: d569e9782823405a91898f6fd7ae63c5 |
||||
msgid "Package Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: b6b2c90cc00d4ca09a002810c1573367 |
||||
msgid ":py:obj:`ExpandLayout <qfluentwidgets.components.layout.ExpandLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: d04ca71477294d48b7a3786ccc35f00e e1e96ab1d44d426e83e1a2f52e8c22b9 |
||||
msgid "Expand layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: e36a5a8600b246f194559b62dd2dfb7f |
||||
msgid ":py:obj:`FlowLayout <qfluentwidgets.components.layout.FlowLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:81 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: 99117f8211444f58991505f08f077eb3 cf138ffb7ae9446daafffe59d0007467 |
||||
msgid "Flow layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: cf9d15078c654d0daf262796fdefb03f |
||||
msgid ":py:obj:`VBoxLayout <qfluentwidgets.components.layout.VBoxLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:166 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:31:<autosummary>:1 |
||||
#: 0885755835a74963994d39d44c70c0d8 d4a8fa1317db437b952403a64f81db40 |
||||
msgid "Vertical box layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:34 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:79 |
||||
#: 5ace85f5a95e49108023b2f1dbbc8a7c ade4618b433f4acca364c8c90814487e |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QLayout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:61 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:129 |
||||
#: 2c9a48847b7646a580a6a48237a331a6 ab970e23e93248008e724007595d06cd |
||||
msgid "get the minimal height according to width" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:91 |
||||
#: 4db80e9b5d92469a9cdd040d79f72a20 |
||||
msgid "set the moving animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:94 |
||||
#: 8a8d5143807746faa54b3efe60e38d6c |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:96 |
||||
#: 7ab4902fc62c49f0a55bbc3f662314db |
||||
msgid "duration: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:96 |
||||
#: 56054ef59b6f433ba4e9805d156ba344 |
||||
msgid "the duration of animation in milliseconds" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:98 |
||||
#: e1a523c0a3804b49a4ad4b4b865c0042 |
||||
msgid "ease: QEasingCurve" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:99 |
||||
#: a73f1b8409ce480f8c012161826776aa |
||||
msgid "the easing curve of animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:113 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:190 |
||||
#: 850eb8c7af7a462dbed6e6227b5e9d9c b18ea7d082b74d7d9927b20818fecd2d |
||||
msgid "remove all widgets from layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:118 |
||||
#: 05c79b33505a4c87a8e82cb7b31c5a07 |
||||
msgid "remove all widgets from layout and delete them" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:143 |
||||
#: 16ce1a4d6d1b4df9be06e377a927199e |
||||
msgid "set vertical spacing between widgets" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:148 |
||||
#: 8b90109498dc47d2b7125c0405596472 |
||||
msgid "get vertical spacing between widgets" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:153 |
||||
#: 9e87dbb6b8d742b6a4bed46004a91d45 |
||||
msgid "set horizontal spacing between widgets" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:158 |
||||
#: c0cee318b1de492cb3f89e985247251b |
||||
msgid "get horizontal spacing between widgets" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:164 |
||||
#: d8725a7b33d14f109695e270081f117a |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QVBoxLayout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:170 |
||||
#: 850cc3cc9c794bfd9ebebce934f26609 |
||||
msgid "add widgets to layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:175 |
||||
#: e5a96aa7613d47aa9be2b09b8c1f12df |
||||
msgid "add widget to layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:180 |
||||
#: c38371454466401bb073918edbb0e973 |
||||
msgid "remove widget from layout but not delete it" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/index.rst:185 |
||||
#: 90fb0d27db7b4894807b3e2e89748329 |
||||
msgid "remove widget from layout and delete it" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,75 @@
@@ -0,0 +1,75 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-04-22 20:49+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:2 |
||||
#: f7b666fef220499ea91ff6edb639375b |
||||
msgid "v_box_layout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:8 |
||||
#: d5f24d2d0af84d37bbcc7f2fa45d3d3f |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:18:<autosummary>:1 |
||||
#: 5bde8ec026974ffa8d171bc18a13e256 |
||||
msgid "" |
||||
":py:obj:`VBoxLayout " |
||||
"<qfluentwidgets.components.layout.v_box_layout.VBoxLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:18:<autosummary>:1 |
||||
#: 894163b487e44b63a1ac65c062e1d59c a71fb467c91b44a19e9fc7d1d89ee7e7 |
||||
msgid "Vertical box layout" |
||||
msgstr "垂直布局" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:21 |
||||
#: c3862dede9d24bd4b39c9f73382355cc |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QVBoxLayout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:27 |
||||
#: 1d0bb7df9adb4171b5a65b73a6f0c82d |
||||
msgid "add widgets to layout" |
||||
msgstr "添加多个小部件到布局中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:32 |
||||
#: 1ffbfe8e84014e1a97293564d45240d2 |
||||
msgid "add widget to layout" |
||||
msgstr "添加小部件到布局中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:37 |
||||
#: 12394ed7e0cb4ca8b429d7baa629bebd |
||||
msgid "remove widget from layout but not delete it" |
||||
msgstr "从布局中移除小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:42 |
||||
#: e0e481dd651b477f826940a1b400c7f0 |
||||
msgid "remove widget from layout and delete it" |
||||
msgstr "从布局中移除小部件并删除它" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/layout/v_box_layout/index.rst:47 |
||||
#: d916462e9ef6421293c7882a5d98558a |
||||
msgid "remove all widgets from layout" |
||||
msgstr "从布局中移除所有小部件" |
||||
|
@ -0,0 +1,131 @@
@@ -0,0 +1,131 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:2 |
||||
#: 57471f0b780c48148f7d82876245c42f |
||||
msgid "acrylic_combo_box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:8 |
||||
#: 74f05495edf74634acb1bce7b045f379 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: b64f58a085ae4bc89282e532f8e89497 |
||||
msgid "" |
||||
":py:obj:`AcrylicComboMenuActionListWidget " |
||||
"<qfluentwidgets.components.material.acrylic_combo_box.AcrylicComboMenuActionListWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:27 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 1365879f18a8490fae57a3681f3a9644 6fd2c29e30054c40928cc6b6ec0bc1e2 |
||||
msgid "Menu action list widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 474856e005a34f818be0ca2b894ccb4d |
||||
msgid "" |
||||
":py:obj:`AcrylicComboBoxMenu " |
||||
"<qfluentwidgets.components.material.acrylic_combo_box.AcrylicComboBoxMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:34 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 3ede132863ea49a49910217c1b7fa9e4 fe8747e03ce443509b7d3fad179ea30e |
||||
msgid "Round corner menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 98ba358a4c194875bc26536f69e70244 |
||||
msgid "" |
||||
":py:obj:`AcrylicComboBox " |
||||
"<qfluentwidgets.components.material.acrylic_combo_box.AcrylicComboBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:41 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:48 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 2d198204d5234a0abdaa869f19111e5c ba36789bb90d40c287cadd771622ea23 |
||||
#: c15b27fd713948578babca4702d98bb4 fb26441da43c4f75a68a9837fb3e8c8d |
||||
msgid "Acrylic combo box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 72a94db0805e43c78195ba0d571e1a14 |
||||
msgid "" |
||||
":py:obj:`AcrylicEditableComboBox " |
||||
"<qfluentwidgets.components.material.acrylic_combo_box.AcrylicEditableComboBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: aaf2f7566bb1420187796c24da3a4303 |
||||
msgid "" |
||||
":py:obj:`AcrylicComboBoxSettingCard " |
||||
"<qfluentwidgets.components.material.acrylic_combo_box.AcrylicComboBoxSettingCard>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:55 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:22:<autosummary>:1 |
||||
#: 3fb4d024203c405a947c056454a589f0 5af0d2aed0c84ef585cf2ce29ad7499c |
||||
msgid "Setting card with a combo box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:25 |
||||
#: 28e2bcc477cf41bab7ef3ca739b438c3 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_menu.AcrylicMenuActionListWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:32 |
||||
#: 9b8417ac14fc41f589d5eaf8fd8d8eea |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_menu.AcrylicMenuBase`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.menu.RoundMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:39 |
||||
#: 8eb6455a20e44d0dbd2ec573373bee6d |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.combo_box.ComboBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:46 |
||||
#: 40619602a682412b8df8378ab213b23e |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_line_edit.AcrylicLineEditBase`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.combo_box.EditableComboBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:53 |
||||
#: 5cbb6d97ae7749d8bf542241a13d2c6d |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.settings.SettingCard`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_combo_box/index.rst:59 |
||||
#: d3358c7a2d734679a9a16e21361efe6e |
||||
msgid "set the value of config item" |
||||
msgstr "" |
||||
|
@ -0,0 +1,197 @@
@@ -0,0 +1,197 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:2 |
||||
#: e14d3f04441c466296dc1f55756f7075 |
||||
msgid "acrylic_flyout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:8 |
||||
#: 12cdad3ce34443ed9eda36cb27166fd5 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: 7c7eb7558387473b895baa71316035ea |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyoutViewBase " |
||||
"<qfluentwidgets.components.material.acrylic_flyout.AcrylicFlyoutViewBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:25 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: 443c14a14b7f45bea95f7716928de834 fce241d2cbc54c40937c20e0c15e2d4d |
||||
msgid "Acrylic flyout view base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: f3b955bdd0b046ef810f4536473d593a |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyoutView " |
||||
"<qfluentwidgets.components.material.acrylic_flyout.AcrylicFlyoutView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:38 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: 3f3edfa4a67545a1b68151fcfd803458 b2cb368513bf4cbfba73105d24f21539 |
||||
msgid "Acrylic flyout view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: 40821f1c81fd44f997bc938c98329e0b |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyout " |
||||
"<qfluentwidgets.components.material.acrylic_flyout.AcrylicFlyout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:51 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:20:<autosummary>:1 |
||||
#: 568020474cc2481c9e4f388b44379c22 7bfe2e3302aa4d7594f01e050488b88e |
||||
msgid "Acrylic flyout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:23 |
||||
#: 266f2711b6374cfc84fee7d2cf76188e |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.flyout.FlyoutViewBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:36 |
||||
#: 3da6d3c59dea4e37a0f46b2e8f62b501 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.flyout.FlyoutView`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:49 |
||||
#: 2e51edbb96764a77ba5317e9b0423a10 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.flyout.Flyout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:56 |
||||
#: 3f8df5b3d3db464699188f57b8492d49 |
||||
msgid "create and show a flyout using the default view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:59 |
||||
#: 579b99b498b447c2a6a1561211ce843f |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:61 |
||||
#: 63d34bc0e4204fd78ca28533f640f310 |
||||
msgid "title: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:61 |
||||
#: 20b9c260a79d4a0aae6791af354c7cfa |
||||
msgid "the title of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:64 |
||||
#: 932c75138bdc47b5a1a7caea4a6067bc |
||||
msgid "content: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:64 |
||||
#: 2f95afcf346a4a329468da04a5104841 |
||||
msgid "the content of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:67 |
||||
#: 0b1b024dc8ae4778b447d6edc1dc3a07 |
||||
msgid "icon: InfoBarIcon | FluentIconBase | QIcon | str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:67 |
||||
#: 39dfaf0d5abe4e8da67c008325b54c95 |
||||
msgid "the icon of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:70 |
||||
#: 99dfdb66ed474d7a92a5d6707af0cd57 |
||||
msgid "image: str | QPixmap | QImage" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:70 |
||||
#: 80d094751575484da750dd37b02fd88a |
||||
msgid "the image of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:73 |
||||
#: 0da67254f7194d13a10a51be360c23f8 |
||||
msgid "isClosable: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:73 |
||||
#: 071c6c2583f84df6a7ccbddc6e54f967 |
||||
msgid "whether to show the close button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:76 |
||||
#: 18634c5c1e3144b3897db5c064ebceb2 |
||||
msgid "target: QWidget | QPoint" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:76 |
||||
#: c9951a10298d4f75839b8c81cf89cc97 |
||||
msgid "the target widget or position to show flyout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:79 |
||||
#: 6714d8fb0e83456aa2764df0c9eee88c |
||||
msgid "parent: QWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:79 |
||||
#: 0ec1744a88a242e98694ced6ad2ed904 |
||||
msgid "parent window" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:82 |
||||
#: 2ac8977ce7784022a6dec01d7541ddf7 |
||||
msgid "aniType: FlyoutAnimationType" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:82 |
||||
#: 3260aff3a5df4189ab5f75a701b03bf4 |
||||
msgid "flyout animation type" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:84 |
||||
#: 9cb841d57b304fb09986d46e90ba8ea3 |
||||
msgid "isDeleteOnClose: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:85 |
||||
#: 92537ee0b83e4acc9a0e4658a48742ea |
||||
msgid "whether delete flyout automatically when flyout is closed" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_flyout/index.rst:90 |
||||
#: 790d6822298644e7975d5c7b1091062d |
||||
msgid "show calendar view" |
||||
msgstr "" |
||||
|
@ -0,0 +1,85 @@
@@ -0,0 +1,85 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:2 |
||||
#: 78d042f85f4d423d98c1ff288d2c66db |
||||
msgid "acrylic_line_edit" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:8 |
||||
#: 5ffc63fbd4324c8d9352926cfdc239af |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: cb161490f369428dbd2a97bb21b6ec77 |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEditBase " |
||||
"<qfluentwidgets.components.material.acrylic_line_edit.AcrylicLineEditBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: e6b04f42905541138a53a93604c4b21b f701556d4ce846f7aa20b942bd71d477 |
||||
msgid "Acrylic line edit base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: e9999d8aab3a4ecab0e0c9a4d2904cb7 |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEdit " |
||||
"<qfluentwidgets.components.material.acrylic_line_edit.AcrylicLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: 0f5a12006eb6486c99ee253a6ab21816 8a26f37b4f374a81ae882b3984ad6f9f |
||||
msgid "Acrylic line edit" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: e146fcb0f61340e2a48825fd819c639f |
||||
msgid "" |
||||
":py:obj:`AcrylicSearchLineEdit " |
||||
"<qfluentwidgets.components.material.acrylic_line_edit.AcrylicSearchLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:43 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:20:<autosummary>:1 |
||||
#: 2a58939c19e546079171d46aade18313 362007dfbf534545b60e7386fe2d041c |
||||
msgid "Acrylic search line edit" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:34 |
||||
#: 885c5319a0ad4c07bf002547d004fd3d |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicLineEditBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.line_edit.LineEdit`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_line_edit/index.rst:41 |
||||
#: d1bb3723f3f24b8e8922ee0e449c6270 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicLineEditBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.line_edit.SearchLineEdit`" |
||||
msgstr "" |
||||
|
@ -0,0 +1,204 @@
@@ -0,0 +1,204 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:2 |
||||
#: 99b928d0cd884c548becb696ece36850 |
||||
msgid "acrylic_menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:8 |
||||
#: 23eb973a0fa048ebbb73d1660f29d2d8 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 856e6561b7d846ad91697a4dd56ef23e |
||||
msgid "" |
||||
":py:obj:`AcrylicMenuActionListWidget " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicMenuActionListWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:31 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 1dc2c8e4b1114b3e9832ac35f1a7c3c1 354be05d8e454a4980778b82f8ed01b3 |
||||
#: 3f784a31793f4dceb8f67d5ec52e8a89 5873d361dfe8404990f8cb3abc276312 |
||||
msgid "Menu action list widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 9da3a829ef484d329c326f0fc4ed4efd |
||||
msgid "" |
||||
":py:obj:`AcrylicMenuBase " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicMenuBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: eb5549e87e49464181e357f03f6ec062 |
||||
msgid "" |
||||
":py:obj:`AcrylicMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:66 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 1f9f01315c2940029c46c99bab64713e 90c27543d7a5426cbebd367d61bca937 |
||||
msgid "Acrylic menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 3b1d51dd90ad4530b0d0590019abd14c |
||||
msgid "" |
||||
":py:obj:`AcrylicCompleterMenuActionListWidget " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicCompleterMenuActionListWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 673bb9ee7a614d74b3baf70b5f5f4c74 |
||||
msgid "" |
||||
":py:obj:`AcrylicCompleterMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicCompleterMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:83 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 6a647557f95843d4b1db0c3f047d023b e48378a777c64eadb8bd037f91b1a98b |
||||
msgid "Acrylic completer menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: bd8d049d57c44fc98a4394e9df5e488e |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEditMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicLineEditMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:95 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 0cf905142bf34af59377a77daf84569a a7499d2e90da4e69bf7053a0bef9f55f |
||||
msgid "Acrylic line edit menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: caf3855693f74b418bdcb16d86e9dec4 |
||||
msgid "" |
||||
":py:obj:`AcrylicCheckableMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicCheckableMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:102 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 2a910df349cf4472bd70cbb7203eda47 c694ef8fd85f45ea9bd45208a9b479ff |
||||
msgid "Checkable menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: ff24f004da14490f814c666c306a6e93 |
||||
msgid "" |
||||
":py:obj:`AcrylicSystemTrayMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicSystemTrayMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:109 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 5353d14a60b54fd08790251766aaffe5 d0bb34d89efd47929208740002e710e2 |
||||
msgid "System tray menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 116a2bcff18b43dda74462d8f375a900 |
||||
msgid "" |
||||
":py:obj:`AcrylicCheckableSystemTrayMenu " |
||||
"<qfluentwidgets.components.material.acrylic_menu.AcrylicCheckableSystemTrayMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:26:<autosummary>:1 |
||||
#: 36a235cfc2fc4b268a416f33435eec3f e1870521b7b64d908005aff27cbfcad9 |
||||
msgid "Checkable system tray menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:29 |
||||
#: f723b1c2001d4c51bbde7fb640a41bff |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.MenuActionListWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:35 |
||||
#: ec23b0b7a1424ee1a1dadee03a764814 |
||||
msgid "set the height of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:40 |
||||
#: 0fd20cfdcd2d4dfb92728eb125a3de94 |
||||
msgid "add menu item at the end" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:64 |
||||
#: 383758261c094cb5841c7fe91ad5e9d9 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.RoundMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:71 |
||||
#: b14bc594f3754594aa21b63f55d9c5c3 |
||||
msgid "Bases: :py:obj:`AcrylicMenuActionListWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:81 |
||||
#: 4c077f562dff493395db46c9f1ac4794 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.line_edit.CompleterMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:87 |
||||
#: fbe8ed45e7b944ca8af81eb5d1db0216 |
||||
msgid "set completion items" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:93 |
||||
#: 1adabc90bb2948ed80828e20f57a469f |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.LineEditMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:100 |
||||
#: fee6ffc530f74cfab60f4a0e3c671cd3 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.CheckableMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:107 |
||||
#: dc1f863cd86e4b268c4ba34ab50c8029 |
||||
msgid "Bases: :py:obj:`AcrylicMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_menu/index.rst:117 |
||||
#: 4039abe723524afcadd975658331a975 |
||||
msgid "Bases: :py:obj:`AcrylicCheckableMenu`" |
||||
msgstr "" |
||||
|
@ -0,0 +1,76 @@
@@ -0,0 +1,76 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:2 |
||||
#: 0000d98b9da940079c5b8ac897d398b2 |
||||
msgid "acrylic_navigation_interface" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:8 |
||||
#: 2bd6f07be8074d48a4f3c0a5b629e961 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:19:<autosummary>:1 |
||||
#: 9c05d4f85fa24d7ca10dd40aaec8a045 |
||||
msgid "" |
||||
":py:obj:`AcrylicNavigationPanel " |
||||
"<qfluentwidgets.components.material.acrylic_navigation_interface.AcrylicNavigationPanel>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:24 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:19:<autosummary>:1 |
||||
#: 46dbb5825aeb4b2e8b69b74d5bc8b7eb 77b85d2763e141fabfc0e8c0277af137 |
||||
msgid "Acrylic navigation panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:19:<autosummary>:1 |
||||
#: 4be9221d6065473a858b11ae3f9c0df7 |
||||
msgid "" |
||||
":py:obj:`AcrylicNavigationInterface " |
||||
"<qfluentwidgets.components.material.acrylic_navigation_interface.AcrylicNavigationInterface>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:19:<autosummary>:1 |
||||
#: 49a0ded556e6491cbb76e51d01283f91 dbaab4baa8e34caea6a6d40773999373 |
||||
msgid "Acrylic navigation interface" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:22 |
||||
#: 7aa837ab21704c9b9fe558f44b7948a2 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`qfluentwidgets.components.navigation.NavigationPanel`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:28 |
||||
#: 5fe6ce3d3f6d4a4994271ca90f1bcd23 |
||||
msgid "expand navigation panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_navigation_interface/index.rst:34 |
||||
#: 532301426b6e4f58810c13644643651e |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.navigation.NavigationInterface`" |
||||
msgstr "" |
||||
|
@ -0,0 +1,89 @@
@@ -0,0 +1,89 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:2 |
||||
#: c98904a009ac4422b3c1aed282133c0f |
||||
msgid "acrylic_tool_tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:8 |
||||
#: eec418290f1d413c8fe24cf0a8dd043a |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: f971e11c76994c1da8fec52f466d6cd8 |
||||
msgid "" |
||||
":py:obj:`AcrylicToolTipContainer " |
||||
"<qfluentwidgets.components.material.acrylic_tool_tip.AcrylicToolTipContainer>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:25 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: 535830f653bf4bd78f8ec5eb3ab389e5 a0ccd126f5d9432a9ab778e7528bd39b |
||||
msgid "Acrylic tool tip container" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: 58a29fa9bbcb4868ad92232b58ccb896 |
||||
msgid "" |
||||
":py:obj:`AcrylicToolTip " |
||||
"<qfluentwidgets.components.material.acrylic_tool_tip.AcrylicToolTip>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:35 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: 66ee4808a6b742539ca8f12fc69ce359 b15116032710415191ff1d62602ca56a |
||||
msgid "Acrylic tool tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: dab6532621e24c58bb91b7aff23ffcab |
||||
msgid "" |
||||
":py:obj:`AcrylicToolTipFilter " |
||||
"<qfluentwidgets.components.material.acrylic_tool_tip.AcrylicToolTipFilter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:45 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:20:<autosummary>:1 |
||||
#: 459915527fc44558b241352a5e57910f 4c57f395fa154ea98bb812000d28bb65 |
||||
msgid "Acrylic tool tip filter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:23 |
||||
#: e6dc798b714a4ee3a002c31660ed5891 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`PyQt5.QtWidgets.QFrame`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:33 |
||||
#: d6a4baeacc0947d8adbccd41c895bf75 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.tool_tip.ToolTip`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_tool_tip/index.rst:43 |
||||
#: 419f3f7de58a4a5fa9a3a9ff07b24a8d |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.tool_tip.ToolTipFilter`" |
||||
msgstr "" |
||||
|
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_widget/index.rst:2 |
||||
#: c76a4041255c4cd293670a533aab52a7 |
||||
msgid "acrylic_widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_widget/index.rst:8 |
||||
#: f5b633c1fed4479ebfd23d338fe507c4 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_widget/index.rst:18:<autosummary>:1 |
||||
#: 662c95d7a5194986bda088941a779409 |
||||
msgid "" |
||||
":py:obj:`AcrylicWidget " |
||||
"<qfluentwidgets.components.material.acrylic_widget.AcrylicWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_widget/index.rst:21 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/acrylic_widget/index.rst:18:<autosummary>:1 |
||||
#: 26dcfece9fe343e096b6b52684382f18 f81bea2d17314a82a449ea42b0e286ce |
||||
msgid "Acrylic widget" |
||||
msgstr "" |
||||
|
@ -0,0 +1,483 @@
@@ -0,0 +1,483 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:2 |
||||
#: 3a70b0429b894657b206e06d6fb711d5 |
||||
msgid "material" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:23 |
||||
#: 400a661d10fd40f6a988296835bb2c61 |
||||
msgid "Package Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 848c9c756d9b420d854918b38b92b930 |
||||
msgid ":py:obj:`AcrylicMenu <qfluentwidgets.components.material.AcrylicMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:55 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: c25801c190074582b6a5b808989175fb e2419221ca3842fd8c83c4a7bbfe9b6a |
||||
msgid "Acrylic menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: ac8836d9a8504736a79001ee8eab8cad |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEditMenu " |
||||
"<qfluentwidgets.components.material.AcrylicLineEditMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:62 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 603ddd3613564080a5aae25ccf1d7042 b5f8756b0405443e95bf6c8632327d19 |
||||
msgid "Acrylic line edit menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 0a2febf53dad4e5698326b6a10718e59 |
||||
msgid "" |
||||
":py:obj:`AcrylicCheckableMenu " |
||||
"<qfluentwidgets.components.material.AcrylicCheckableMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 7f7026b2ad3249d3a5ca90eb023c4ced eb13f47012f141c28d5ba4f6ac213679 |
||||
msgid "Checkable menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: c6aeddd36d69444f851b833d81bc2da5 |
||||
msgid "" |
||||
":py:obj:`AcrylicCheckableSystemTrayMenu " |
||||
"<qfluentwidgets.components.material.AcrylicCheckableSystemTrayMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:76 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 887cc24cda6f4d3c89d968577701fd29 c3f73513b91944e5af1ef7bf09db1df3 |
||||
msgid "Checkable system tray menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: e952bf719e4140809f96be60fc9bfb78 |
||||
msgid "" |
||||
":py:obj:`AcrylicSystemTrayMenu " |
||||
"<qfluentwidgets.components.material.AcrylicSystemTrayMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:86 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 02fb17f1800f41c58197779e610cc453 5cdb385fc27c409cb31ca3c2d7a75f03 |
||||
msgid "System tray menu" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 5c5b43be37294c59bc78c0e96507f502 |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEditBase " |
||||
"<qfluentwidgets.components.material.AcrylicLineEditBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:94 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: d85c590fefed46beb9ac8eb64f1cfe8d e340e7ec2c1946fdae1d1bab8020a3ac |
||||
msgid "Acrylic line edit base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: af86afd6395840e6acacb6c0d1289d86 |
||||
msgid "" |
||||
":py:obj:`AcrylicLineEdit " |
||||
"<qfluentwidgets.components.material.AcrylicLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:107 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 1c1643b371c8406597ce90b83ec5559f 7946a8d817d74626a1dc2beb703cc10e |
||||
msgid "Acrylic line edit" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 81d574fa560e45f9b13338f820fc481c |
||||
msgid "" |
||||
":py:obj:`AcrylicSearchLineEdit " |
||||
"<qfluentwidgets.components.material.AcrylicSearchLineEdit>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:114 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 3248bdcaefb3439a9c374940b0a26a33 7661e38acdf04dd196895c334baeebe0 |
||||
msgid "Acrylic search line edit" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: ca60c2214b4849b5b124be3c277e9ef2 |
||||
msgid "" |
||||
":py:obj:`AcrylicComboBox " |
||||
"<qfluentwidgets.components.material.AcrylicComboBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:121 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:140 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 1ad5242995c74062b12a8cfbc9c4d2b8 3a645d9eea204a338a8a014605accd64 |
||||
#: 68a0cd505abd4599902f06ee800cb100 807a6a9c1cdf4e2c92b5a5b8a3f1a482 |
||||
msgid "Acrylic combo box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: e26521c641304079839666d202380cff |
||||
msgid "" |
||||
":py:obj:`AcrylicComboBoxSettingCard " |
||||
"<qfluentwidgets.components.material.AcrylicComboBoxSettingCard>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:128 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 10630e4918f4444abb32863ef3e03a6b 2f284499dc6e4dbba27350b8324e00f9 |
||||
msgid "Setting card with a combo box" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 07787a041fa54e60ab836aa58ea6c1cc |
||||
msgid "" |
||||
":py:obj:`AcrylicEditableComboBox " |
||||
"<qfluentwidgets.components.material.AcrylicEditableComboBox>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 1c37fcecc6b94bcd8b1e8cda5175cc8e |
||||
msgid "" |
||||
":py:obj:`AcrylicWidget " |
||||
"<qfluentwidgets.components.material.AcrylicWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:145 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 439b2b1bb3a746f7b8ae3ac5dd1d51b6 b8b22c6fa68d4745bd93c69aa9bc9861 |
||||
msgid "Acrylic widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 06f9360b89244f7dbb5f20e5ead3c10b |
||||
msgid ":py:obj:`AcrylicBrush <qfluentwidgets.components.material.AcrylicBrush>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:156 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: b81dd50887a2425d9c1a37a05ef6a73e fd82335003a54eb7a0ecf0735add65ad |
||||
msgid "Acrylic brush" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: bba5c64cfb2e4f099d9a72a422a140cf |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyoutView " |
||||
"<qfluentwidgets.components.material.AcrylicFlyoutView>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:199 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 5a9c1c13a07b423fb5d97a98a97205ad d39955cb6c8c4bcdbf81cd174d678774 |
||||
msgid "Acrylic flyout view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 0564e1dff9564b4f8b0a1d7fe04d83e3 |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyoutViewBase " |
||||
"<qfluentwidgets.components.material.AcrylicFlyoutViewBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:212 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 240a325c74d04b06a89aae7cd9cdd2f3 e304611e7f2f402bbcc04399e2b6f398 |
||||
msgid "Acrylic flyout view base" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 422ba22f5a044f22bbfdafee4206e5fd |
||||
msgid "" |
||||
":py:obj:`AcrylicFlyout " |
||||
"<qfluentwidgets.components.material.AcrylicFlyout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:225 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 347932975809473d8b2284648d77d2b0 b1692a6ed1b74a949ae3e2e7d66f7005 |
||||
msgid "Acrylic flyout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: e7eed254e99445c38605d1730d39f580 |
||||
msgid "" |
||||
":py:obj:`AcrylicToolTip " |
||||
"<qfluentwidgets.components.material.AcrylicToolTip>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:272 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 99c320776f9b4dc88335a8b211c9c9b6 fa253dc12227483eac35c3a0017f2fc8 |
||||
msgid "Acrylic tool tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: e70b039ce9e2460dbf7de80d6768e612 |
||||
msgid "" |
||||
":py:obj:`AcrylicToolTipFilter " |
||||
"<qfluentwidgets.components.material.AcrylicToolTipFilter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:282 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:50:<autosummary>:1 |
||||
#: 661ef4a02b10466da434e8e10794b5bb da22f15102c54f65a0e6cda6016c77c1 |
||||
msgid "Acrylic tool tip filter" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:53 |
||||
#: be797b499f5943dcbb6b5efdc0730627 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.RoundMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:60 |
||||
#: 9d9062525cd64b91bc2ee368ce931ffa |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.LineEditMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:67 |
||||
#: a313cc2de59c49ec9b9d03ec51c9f001 |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicMenuBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.menu.CheckableMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:74 |
||||
#: 5301d0f6f3044d7a80d62eb12a1a49fc |
||||
msgid "Bases: :py:obj:`AcrylicCheckableMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:84 |
||||
#: a3468c962dd04739bbe0d230ce44174e |
||||
msgid "Bases: :py:obj:`AcrylicMenu`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:105 |
||||
#: 641e3a9c58c1473c9c71b0943923e15e |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicLineEditBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.line_edit.LineEdit`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:112 |
||||
#: 1fdd33d0dbff4fd2919e4ae0121da74b |
||||
msgid "" |
||||
"Bases: :py:obj:`AcrylicLineEditBase`, " |
||||
":py:obj:`qfluentwidgets.components.widgets.line_edit.SearchLineEdit`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:119 |
||||
#: 622827e7c3b7490083048b765da9e72b |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.combo_box.ComboBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:126 |
||||
#: b24dc136f6834cbab8ff4a3d5c2d5ad7 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.settings.SettingCard`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:132 |
||||
#: 3445763ef66249d394acf044981caeb8 |
||||
msgid "set the value of config item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:138 |
||||
#: a472c839b1ee490fb646a8880a7016da |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_line_edit.AcrylicLineEditBase`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.combo_box.EditableComboBox`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:172 |
||||
#: 1ea69ddedf2d4763ac27880c84d5bc09 |
||||
msgid "grab image from screen" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:175 |
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:233 |
||||
#: 64a8639154dc481b895cdee0c2709466 df01b69a9bad464fa9c1807a9f219dd6 |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:176 |
||||
#: 6ab7e43a49c6478d99c1d28da09c56aa |
||||
msgid "rect: QRect" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:177 |
||||
#: 4e881117a59f47b99d57d37fdcfe8a6e |
||||
msgid "grabbed region" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:182 |
||||
#: d71f20bd7e9647d1b56c6d33fe360f09 |
||||
msgid "set blurred image" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:197 |
||||
#: c197304eb54b46d4af2af74ce42533ba |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.flyout.FlyoutView`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:210 |
||||
#: 92821dcbc59147f88d0d49d58a807702 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.material.acrylic_widget.AcrylicWidget`," |
||||
" :py:obj:`qfluentwidgets.components.widgets.flyout.FlyoutViewBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:223 |
||||
#: 08bcca41897244eeb0fdc5c5f9818be5 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.flyout.Flyout`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:230 |
||||
#: c2dc0e02381646449d2d792bf3626569 |
||||
msgid "create and show a flyout using the default view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:235 |
||||
#: 5826e07d40954739a96b711e5771bdd7 |
||||
msgid "title: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:235 |
||||
#: 62dea964e8b64aaeb6b4d328b46c7231 |
||||
msgid "the title of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:238 |
||||
#: d369d5ef8da14a23974971343f474730 |
||||
msgid "content: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:238 |
||||
#: f05cb2875c2a4a009bd8cebdc17c9f9c |
||||
msgid "the content of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:241 |
||||
#: b305a32cec444fcfad5e898a7a7ed86c |
||||
msgid "icon: InfoBarIcon | FluentIconBase | QIcon | str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:241 |
||||
#: 813ef8745dc7452aaa2dfe6eb10bd1b7 |
||||
msgid "the icon of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:244 |
||||
#: 24ccf0bae9234a9ab519eefb7369c78c |
||||
msgid "image: str | QPixmap | QImage" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:244 |
||||
#: 3416628643824a7ead2221b9121ad159 |
||||
msgid "the image of teaching tip" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:247 |
||||
#: 61fbcf6e0c1e476496442bf8cc323dc4 |
||||
msgid "isClosable: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:247 |
||||
#: 5be05ee709b34eb28295696b63b32933 |
||||
msgid "whether to show the close button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:250 |
||||
#: 4ef418606a154d9380c3a55c3e66505e |
||||
msgid "target: QWidget | QPoint" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:250 |
||||
#: af8ff2618115487aa52c37af552785cd |
||||
msgid "the target widget or position to show flyout" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:253 |
||||
#: e6714cd0ad3e4a13872f51474a6eeede |
||||
msgid "parent: QWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:253 |
||||
#: af3bd233576944fea8c3f9142d9c0a23 |
||||
msgid "parent window" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:256 |
||||
#: 32f31ddd28c944d2b764e9ff6ad4143a |
||||
msgid "aniType: FlyoutAnimationType" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:256 |
||||
#: 6e1ec72c0a97484fba7e05ee39ca3d90 |
||||
msgid "flyout animation type" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:258 |
||||
#: 4df6bbdbfb9749dabe9ee5e7a45308bd |
||||
msgid "isDeleteOnClose: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:259 |
||||
#: e800dba1f6ff43e1a571bec1012d97af |
||||
msgid "whether delete flyout automatically when flyout is closed" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:264 |
||||
#: 45250142b91a4f299b377b5e1c90a998 |
||||
msgid "show calendar view" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:270 |
||||
#: f3c0077868134ef59f9d187d0bffb1b4 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.tool_tip.ToolTip`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/material/index.rst:280 |
||||
#: 5e167fff09f84071b129a407583f0409 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.tool_tip.ToolTipFilter`" |
||||
msgstr "" |
||||
|
@ -0,0 +1,136 @@
@@ -0,0 +1,136 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2023-10-08 09:58+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:2 |
||||
#: d26cc166fcb24fe386c9bfb9003f1bef |
||||
msgid "breadcrumb" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:8 |
||||
#: fb6251ee8dda401fb21bbdd262c00a2a |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: f897e11cbae148ac89fc5bf496594fd3 |
||||
msgid "" |
||||
":py:obj:`BreadcrumbWidget " |
||||
"<qfluentwidgets.components.navigation.breadcrumb.BreadcrumbWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:26 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 52bcf9ae309d4189867031723f12107b a545fff993524617827ee81203103c39 |
||||
msgid "Bread crumb widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 5871c3dec75742e2b626e4cf20990906 |
||||
msgid "" |
||||
":py:obj:`ElideButton " |
||||
"<qfluentwidgets.components.navigation.breadcrumb.ElideButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:49 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 5217512a59f54e7585b64716f83e225b d310ca9edec242a49d1a84c841ecd565 |
||||
msgid "Elide button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 43a43c9292664a5fa4fd043256378762 |
||||
msgid "" |
||||
":py:obj:`BreadcrumbItem " |
||||
"<qfluentwidgets.components.navigation.breadcrumb.BreadcrumbItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:62 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 6985ac72d3644973bca949c37d4f373e dcfe175418d448f9bb948ae89eb53d1f |
||||
msgid "Breadcrumb item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 6d91741fbb684817ab22934dc11b9f8c |
||||
msgid "" |
||||
":py:obj:`BreadcrumbBar " |
||||
"<qfluentwidgets.components.navigation.breadcrumb.BreadcrumbBar>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:87 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:21:<autosummary>:1 |
||||
#: 5d41229ce3eb4d47a6f44540a0943c4c cb873d9ddaab449985f2dc1235755669 |
||||
msgid "Breadcrumb bar" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:24 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:85 |
||||
#: 14a3ebbd63974b938485632f35d33f72 cfde9df193fe4bf1952ea3a4bf37e83d |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:47 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:60 |
||||
#: 4aba8107da4d477b889829c0ec1f7f9c ec4ec60537ab4577b4569c188173c137 |
||||
msgid "Bases: :py:obj:`BreadcrumbWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:103 |
||||
#: 898ad41871bc41f890b841275610b5e8 |
||||
msgid "add item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:106 |
||||
#: 3e6ec27ca266487999062720a1aaeea7 |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:108 |
||||
#: 423a559cc1ca4ff5857fb1dc6bad0e92 |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:108 |
||||
#: b080ebe6a62d47408440135c80ade99a |
||||
msgid "unique key of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:110 |
||||
#: 8affd7d7ee5d4b92b3c19ed0de9b39e8 |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:111 |
||||
#: 2443bcd9d64f4ff699efdc88c2143a78 |
||||
msgid "the text of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:134 |
||||
#: e1bc798cab754875a55f38addcee0c52 |
||||
msgid "clear all items" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/breadcrumb/index.rst:139 |
||||
#: 0a0b5f86ada44463918a2e72a1eef624 |
||||
msgid "pop trailing item" |
||||
msgstr "" |
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,297 @@
@@ -0,0 +1,297 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:2 |
||||
#: ce5cfff4ae9b43e787f062153982d41c |
||||
msgid "navigation_bar" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:8 |
||||
#: 34ef3c77f6184b8193c469cbd0cb360e |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:20:<autosummary>:1 |
||||
#: 472bf92f0b694e50838090a9d6198cfd |
||||
msgid "" |
||||
":py:obj:`IconSlideAnimation " |
||||
"<qfluentwidgets.components.navigation.navigation_bar.IconSlideAnimation>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:25 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:20:<autosummary>:1 |
||||
#: 91ac25e0ce544fe488f0c5ab342e3aa6 f0330667de5948599e5c6a49ac6213f9 |
||||
msgid "Icon sliding animation" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:20:<autosummary>:1 |
||||
#: 52c30b0f74bb4120ba7b4fee8fdf5d32 |
||||
msgid "" |
||||
":py:obj:`NavigationBarPushButton " |
||||
"<qfluentwidgets.components.navigation.navigation_bar.NavigationBarPushButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:52 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:20:<autosummary>:1 |
||||
#: 9a1fe06564194b60a5460f5e0cedc17b f37d668c4c9547df8b40174c62b54699 |
||||
msgid "Navigation bar push button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:20:<autosummary>:1 |
||||
#: 9a545c9d890044598fe79d647d005189 |
||||
msgid "" |
||||
":py:obj:`NavigationBar " |
||||
"<qfluentwidgets.components.navigation.navigation_bar.NavigationBar>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:23 |
||||
#: 4666c603b0e74d0bab55390b4dd922b7 |
||||
msgid "Bases: :py:obj:`PyQt5.QtCore.QPropertyAnimation`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:39 |
||||
#: f682614676124117b3b75ce12e355f63 |
||||
msgid "slide down" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:44 |
||||
#: 4fd44da9aee04de8831e41907af5e240 |
||||
msgid "slide up" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:50 |
||||
#: a3a49982f1134ebbb2d548b49cb953d6 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.navigation.navigation_widget.NavigationPushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:68 |
||||
#: acc3faa55d734d3b877cdc8dc7f45f7b |
||||
msgid "set whether the button is selected" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:89 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:117 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:136 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:167 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:189 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:199 |
||||
#: 28387652d22647bd990eea5d9ba66c2a 46a7b55b29774814947f2f91843a9c83 |
||||
#: 5b8fbc08659343a5b064974c343167d1 72d601f751e44591b206ae601c9a0ceb |
||||
#: 77220a626ac64fc9b0693d4ff5eefec2 aa2ed2c18e6a4371b9220d222eed0c70 |
||||
#: e5894d40a797494d8e18f52642799fed |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:72 |
||||
#: 2196962cbec44aaa8c88ae937c023e66 |
||||
msgid "isSelected: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:73 |
||||
#: 06f9a093fe12430986e05df0977292c4 |
||||
msgid "whether the button is selected" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:79 |
||||
#: 054f5de9ec754ca7b7f0a67c23c8e028 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:86 |
||||
#: 17c373d8d09d4c24a3fcea1977ee5ccb |
||||
msgid "add navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:91 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:141 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:172 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:190 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:200 |
||||
#: 106cf706042546298bb54dedc8cae1b8 37094fc0d3404c4b868fb0f41009d1f8 |
||||
#: 42d5670c41cc48eb85145195fc6df9d2 5582c519aec94334afb30a8676319d21 |
||||
#: 60661aa2bde34a379dd82d4787fcbd7a f33d383e108b4026bd2072dfd0664f85 |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:91 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:119 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:141 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:172 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:191 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:201 |
||||
#: 1e0b60297e0b43c1ab4b85c8075372a5 36731e84ae774adf9c8f1be593c95b84 |
||||
#: c3ccfce691b146c88cd80b615c2d19f2 e1361dffa90543068efd971e8796b4f5 |
||||
#: f05826a1a1274eeb984cc9a5f01fdf50 f52718bd8c794abfb70829631550f719 |
||||
msgid "the unique name of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:94 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:144 |
||||
#: 651b8b56481447da92e9994c8a1bbc73 ffa05bb0ec13455e8ca78007731d7a02 |
||||
msgid "icon: str | QIcon | FluentIconBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:94 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:144 |
||||
#: 071eea9fe573460ab26d7afaf2d3d249 56dff639a4044e768df148e639cd7721 |
||||
msgid "the icon of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:97 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:147 |
||||
#: 326d8699410f46848be9b7260797d4fe b5d81faacd464621adb289559716f29e |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:97 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:147 |
||||
#: 485cbd1259054cc4aa624d6fbd45e031 a6ed1df411e84fe1b53afac5ff8aff9d |
||||
msgid "the text of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:100 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:125 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:150 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:178 |
||||
#: 396493c7736e46c0a02ac3326588d581 3f0c7a31428942abae5ce3aa93be2579 |
||||
#: 82ae2cb1ae7842b0bac3ea44a3ac8f72 8b2f5578af034d069f09d71078621ded |
||||
msgid "onClick: callable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:100 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:125 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:150 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:178 |
||||
#: 15d0bd1c10524bd6a34cfbe4d3656a24 4a122c067c944cbe96b9ec18cb7c14f3 |
||||
#: 50f052f4e0504ba590e38e697417e621 b53725b63cbb4b0d8d00fd934ccd9906 |
||||
msgid "the slot connected to item clicked signal" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:103 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:153 |
||||
#: 274521aeaac44d34a05f0247d5463c88 f5ea799a4cc6400583875f56ccabc28f |
||||
msgid "selectable: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:103 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:153 |
||||
#: 1274c85708fd40f981aaa8fe564389dc 6a5cc08206cf4d1c8971af4b4ad70d63 |
||||
msgid "whether the item is selectable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:106 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:156 |
||||
#: 538bf64f31a64596875bdeafe25d4461 7fbcf63977c74d45a31c80ca9f55b7fe |
||||
msgid "selectedIcon: str | QIcon | FluentIconBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:106 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:156 |
||||
#: 4900e26213ef4f3193036a959b3c4c34 f50164d9dcb246299c47000333bf3aaf |
||||
msgid "the icon of navigation item in selected state" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:127 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:158 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:180 |
||||
#: 107921cf0cd545c49e9725372bcc5d32 4ba236166edd4de69ddf8bc72ed7d493 |
||||
#: 6028e47b1c2e4fe5a078c22c67277de8 d107e71d19894d12b298e3ab80e929c9 |
||||
msgid "position: NavigationItemPosition" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:109 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:128 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:159 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:181 |
||||
#: 1067dbd72fc743e99b4061c797b7876e 7827f371995640f89edcee76c957937a |
||||
#: 87d4c384d873460bb6e4834c81e94936 cebe42a6eef5465f898bfdd11c9f3d7f |
||||
msgid "where the button is added" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:114 |
||||
#: d0d3056143d64290b8f8fa515c6afd66 |
||||
msgid "add custom widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:122 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:175 |
||||
#: 230a32eca16b44ceb77bbc5975766a00 e14a225079b1474f846ba12b06713378 |
||||
msgid "widget: NavigationWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:122 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:175 |
||||
#: 95ef0f17db844660a062982c1a802859 fd258a91a8dc4eb6a4e2df7a229a5858 |
||||
msgid "the custom widget to be added" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:133 |
||||
#: 1449266abdb5492dba8f0ca9c0937a99 |
||||
msgid "insert navigation tree item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:138 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:169 |
||||
#: 13619f682842409789f60c9f900527ce 80cc3cce0c464497b2135703ead3b0fb |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:138 |
||||
#: 60da5898c00b4e898cdc07f3bc857865 |
||||
msgid "the insert position of parent widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:164 |
||||
#: 121bcfc73196415e8aac3806379a49b2 |
||||
msgid "insert custom widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:169 |
||||
#: c960ec0e8123473ba273a716eb678a5d |
||||
msgid "insert position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:186 |
||||
#: 49122452a2a641bea3a0db9379ce2ff2 |
||||
msgid "remove widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:196 |
||||
#: e716dd3140084c38ab0ae65853192add |
||||
msgid "set current selected item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:206 |
||||
#: 09cf2a358b77440cb904b6eb8d06f6a3 |
||||
msgid "set the font of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_bar/index.rst:211 |
||||
#: c2a0718451d14a3b9b4bba7813187ea2 |
||||
msgid "set whether the text is visible when button is selected" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,336 @@
@@ -0,0 +1,336 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:2 |
||||
#: dc136524632c42eeae2f53e1312e3b68 |
||||
msgid "navigation_interface" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:8 |
||||
#: 4ab960d4d05047e0b4f8ef3c5e7d29c4 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:18:<autosummary>:1 |
||||
#: dc9a65bbd7244ec1a4eb9bb70a6bd13e |
||||
msgid "" |
||||
":py:obj:`NavigationInterface " |
||||
"<qfluentwidgets.components.navigation.navigation_interface.NavigationInterface>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:23 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:18:<autosummary>:1 |
||||
#: 45f6679e117c4d1ea229b9227e45fb22 84181db6a6ef45f9b39e9f5de2a2183c |
||||
msgid "Navigation interface" |
||||
msgstr "侧边导航界面" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:21 |
||||
#: bbf7727bc27a4b278e4fcdd5c786fe75 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:31 |
||||
#: a97b9e4f3c32412b8efc6aeda5141bc5 |
||||
msgid "add navigation item" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:34 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:65 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:90 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:152 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:162 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:175 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:185 |
||||
#: 0214dc26aaa0455a9a825ff061a1af23 0c125297bbdd4156bc75f461fdeeb5a7 |
||||
#: 3faa4100be3b4ac8981962dcfb5bb6b6 452d1d0170c94dd1893304889db58757 |
||||
#: 7052bfa3f1994a0389f39d58f6a5fc5b ce7a74713b724951b2f45c6b4f46d495 |
||||
#: d42de17d1a784664b4ff9fe02138ca12 ea21c43ade6b48cc910856a46434a1dd |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:67 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:95 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:129 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:176 |
||||
#: 08b5bc4d9b944b20af9060a3ee83992a 42d7cf6a32e0483bb49abf8771639ab0 |
||||
#: 71adb41d998f437382955710edd1d5a9 969bb34710ed42f780580c3ba092752d |
||||
#: d461f3bf2e114129866dac1c3b8fe287 |
||||
msgid "routKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:36 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:67 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:95 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:129 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:177 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:187 |
||||
#: 8ed5b829c9e440dab543898ef3dd29a9 b9d74a8e1c3948f0b311d8be4f683f60 |
||||
#: bbe67be1c10146bda5418cfa190d16a8 bc86835fe45d49bbaadbed950734ed53 |
||||
#: f8fbe1af98924bdaa3849caf3f2b0368 ffa7dbb925504c81bb2d837265bb248e |
||||
msgid "the unique name of item" |
||||
msgstr "导航菜单项的唯一名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:39 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:98 |
||||
#: 4dd2338ba34b47f0ac1bde8ab46f87c9 f9e3616988654f7abc63ddcd048e1646 |
||||
msgid "icon: str | QIcon | FluentIconBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:39 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:98 |
||||
#: 6106390d22d94279a88c049f67a42a66 96ef13d9d233453c87c50199f62a0e5c |
||||
msgid "the icon of navigation item" |
||||
msgstr "导航菜单项的图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:101 |
||||
#: 3cd2a8eea4414360850f4ad3816aa6f9 7eda9b33bc6240d3a53a0b8b32a72294 |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:42 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:101 |
||||
#: 2cb0cf70192d4d4f9b8d0a76d9604d1e 314f864d162f450bb1f1cbe42f72106b |
||||
msgid "the text of navigation item" |
||||
msgstr "导航菜单项的文本" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:45 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:104 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:135 |
||||
#: 111c23cb47574bb687e6a088aa50d902 1e750d0c141b46769fdd6a47807e8ff6 |
||||
#: 6346c01786c54f249c7ee9f2d639d8d8 94284e82b3c048cca728540c42fd0f67 |
||||
msgid "onClick: callable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:45 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:104 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:135 |
||||
#: 25fbee803a6e41cc9ab4d5a32e0cdbcb 5bfe493a0aac4046a34a6dbd0d48a799 |
||||
#: d03836145a95475d92008661f498b60d e9f9ffed95574597b072ac2e186c53e0 |
||||
msgid "the slot connected to item clicked signal" |
||||
msgstr "导航菜单项点击信号的槽函数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:48 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:107 |
||||
#: 17292f8a719b4123a53b40cde098c26c 2c761d922c654ed5a19ab49b29670deb |
||||
msgid "selectable: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:48 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:107 |
||||
#: 41d95df4d00f4335a9fa69f0a7d9e5d2 50e86df705e14e7db0a7dcd16ed3b36e |
||||
msgid "whether the item is selectable" |
||||
msgstr "导航菜单项是否可以选中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:51 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:76 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:110 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:138 |
||||
#: 5c4c2768ce8242f7b393b775a62c6be5 c6a38ec7dff245f098d6d89b6db26153 |
||||
#: dc7dc792baa8436aa68a754f4514e35c ed18c607c7e146d5a24e4914cfda2fb7 |
||||
msgid "position: NavigationItemPosition" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:51 |
||||
#: 38445c7b28c440c99a5c3397bd961f00 |
||||
msgid "where the button is added" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:79 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:113 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:141 |
||||
#: 0e66b84fcc104d5fbf82ac92643a13ce 100a6b35eba7473e8d07fc714d52ad5f |
||||
#: 739422eee5c9487098306427e5c3a37b ffdb5314e76f468c9ccb70ad5030a489 |
||||
msgid "tooltip: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:54 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:113 |
||||
#: 60af2380256a41eda616090aaa878c0a 9882885bd5384950ad74186ea5bf0de1 |
||||
#, fuzzy |
||||
msgid "the tooltip of item" |
||||
msgstr "导航菜单项的唯一名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:56 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:81 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:115 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:143 |
||||
#: 1406422ca4154ffda538919a5a4ef0be 142d204fbea4458b9aa3cfbf39a5882f |
||||
#: b2138cfc5fad47c394c14dc4fbd6508a d5a95714f48047dc823db099c293e068 |
||||
msgid "parentRouteKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:57 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:82 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:116 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:144 |
||||
#: 01b1ac92775b43fcba5b42f59cd7f422 17c3c4f4ca964c8d817449107321a3ef |
||||
#: d9ef9d467fc24236abcdd969aee50cd4 fb01c5ad7dee417b9eb38bcbf0cb01aa |
||||
msgid "" |
||||
"the route key of parent item, the parent item should be " |
||||
"`NavigationTreeWidgetBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:62 |
||||
#: ae93ce73684c45fcabcab66eabfed485 |
||||
msgid "add custom widget" |
||||
msgstr "添加自定义导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:70 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:132 |
||||
#: 2f764a95511a463d909330b6d2fa7fcc e4b7576b3e454b088d06866c2a3835ab |
||||
msgid "widget: NavigationWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:70 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:132 |
||||
#: cb1bd7017cbb4c9c89851b874f0c7bba fa01965b80a24411a1c6b6e4cde98ab3 |
||||
msgid "the custom widget to be added" |
||||
msgstr "自定义的导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:76 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:138 |
||||
#: 98a9ac1004664739a1b420890a1bca37 f1846046e2c6457f8e5a65e36586a6ee |
||||
#, fuzzy |
||||
msgid "where the widget is added" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:79 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:141 |
||||
#: 1c83a3a658194c2fb61a99a567d87693 b306a3ac40fd428a8810da58a40817ef |
||||
msgid "the tooltip of widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:87 |
||||
#: ab2622882dec4fbb95f834de4523e312 |
||||
#, fuzzy |
||||
msgid "insert navigation item" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:92 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:126 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:164 |
||||
#: 8b2e42824c594176a045c6e7c0782438 9aeb1f6b2df44c8fb161ec2c04e62d1f |
||||
#: b43e890889a94e3cb1e1771513be020b |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:92 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:126 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:164 |
||||
#: 347d71ec3af342db8f8a4f188355c321 9279c19fb0ae48808fc71c778835b0ab |
||||
#: a7726ae5a60f49edb90d822d4fb275a5 |
||||
msgid "insert position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:110 |
||||
#: 9a19096fa5dd477d96d38a936d4d2260 |
||||
#, fuzzy |
||||
msgid "where the item is added" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:121 |
||||
#: 90bbffddc767485e9463d44afbf25998 |
||||
#, fuzzy |
||||
msgid "insert custom widget" |
||||
msgstr "添加自定义导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:149 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:159 |
||||
#: 24409d7d6ff245d1b90669f568f737c6 40fee7914c8248f28bfca4b2dcde821a |
||||
msgid "add separator" |
||||
msgstr "添加分隔符" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:153 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:166 |
||||
#: c97d50202d3542b4a138d670eca98771 fef9f24981a0472b876fc3a40bd4488d |
||||
msgid "position: NavigationPostion" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:154 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:167 |
||||
#: b0d59ce1327f461e8ffb12676066431a d5ce3fc7ef99481fb479a63706583e99 |
||||
msgid "where to add the separator" |
||||
msgstr "分隔符的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:172 |
||||
#: cc7507a9f28148d48b19a951eec2018a |
||||
msgid "remove widget" |
||||
msgstr "移除小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:182 |
||||
#: efcae93b18184c0fab8bafe5d4421a54 |
||||
msgid "set current selected item" |
||||
msgstr "设置当前选中的导航项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:186 |
||||
#: cc5d24a860ae43d5bce61ea3ffc9160d |
||||
msgid "name: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:192 |
||||
#: 1def71bd6e134896a0a7a90ca0076823 |
||||
#, fuzzy |
||||
msgid "expand navigation panel" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:197 |
||||
#: 22ffb58394604445b8e8eb4b81e3124a |
||||
#, fuzzy |
||||
msgid "toggle navigation panel" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:202 |
||||
#: 8676a76321ed4deb8beeb5f32e5302a1 |
||||
msgid "set the maximum width" |
||||
msgstr "设置展开后最大宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:207 |
||||
#: 3123b48ae8fb4c689e873f0e8300f3fb |
||||
msgid "Set the minimum window width that allows panel to be expanded" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:212 |
||||
#: 04dbfaaade1f43148be48ed71eb2b14c |
||||
#, fuzzy |
||||
msgid "set whether the menu button is visible" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:217 |
||||
#: 48ee17738fdb44069aef3c30737dff84 |
||||
#, fuzzy |
||||
msgid "set whether the return button is visible" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_interface/index.rst:228 |
||||
#: 38e0481164eb443ca0bff5a2066d85cc |
||||
msgid "set whether the acrylic background effect is enabled" |
||||
msgstr "" |
||||
|
||||
#~ msgid "set the routing key to use when the navigation history is empty" |
||||
#~ msgstr "设置导航历史为空时的默认路由键" |
||||
|
Binary file not shown.
@ -0,0 +1,448 @@
@@ -0,0 +1,448 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:2 |
||||
#: ae0748242c064f05a4d03dc1a8129a3a |
||||
msgid "navigation_panel" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:8 |
||||
#: 0b4e751f95254ac8a0bee72f601ffddd |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 3963191f5760495393d9f8d883f8b632 |
||||
msgid "" |
||||
":py:obj:`NavigationDisplayMode " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationDisplayMode>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:28 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: d30c119036bd45e493082ce59ec7740e e8c862c79dfc41d98e57a56648d02fb9 |
||||
msgid "Navigation display mode" |
||||
msgstr "导航显示模式" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 0ec408885c504c5abaabb554111c5969 |
||||
msgid "" |
||||
":py:obj:`NavigationItemPosition " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationItemPosition>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:55 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 0fdfa3350c32416aa20678b5f44a8e3e b0b99e8ee202472ea03d3b598ffacaff |
||||
msgid "Navigation item position" |
||||
msgstr "导航菜单项位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 660593e4b45f4b1a84ee4a7ac74022c3 |
||||
msgid "" |
||||
":py:obj:`NavigationToolTipFilter " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationToolTipFilter>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:77 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 1b39cee5a1d64d78ad7115155e47e97e 8278f09ebb0641deb5be8ae483a0753f |
||||
#, fuzzy |
||||
msgid "Navigation tool tip filter" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: e5fa3b573c5c468499bb4919b44a8f6d |
||||
msgid "" |
||||
":py:obj:`NavigationItem " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:89 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: cd1eed5c5ba7402188ca93da8df8c5ed e732a11549e44219aed78e7eb6c8d671 |
||||
#, fuzzy |
||||
msgid "Navigation item" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: d5e7adfa3b9c4aa8a58a9f9aac0fdcea |
||||
msgid "" |
||||
":py:obj:`NavigationPanel " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationPanel>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:96 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 73eccd7f1af84cb587f79e4238827fad f11e288eb7ed4ac9a21271e410665422 |
||||
msgid "Navigation panel" |
||||
msgstr "侧边导航面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: e78c29dfe377498b85ed2d891f6868b6 |
||||
msgid "" |
||||
":py:obj:`NavigationItemLayout " |
||||
"<qfluentwidgets.components.navigation.navigation_panel.NavigationItemLayout>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:332 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:23:<autosummary>:1 |
||||
#: 3a101dcd2b7c425894b1ec5df1c194af eabd0adc4aec4a4b94ccaa36697d862c |
||||
msgid "Navigation layout" |
||||
msgstr "导航布局" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:26 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:53 |
||||
#: 41dbcbdd04b547dc9922efaed34df4f2 9d23ca75493a47518f39ba58bb406001 |
||||
msgid "Bases: :py:obj:`enum.Enum`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:75 |
||||
#: 1ac3b319efd948a494819b305e51d29f |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.tool_tip.ToolTipFilter`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:82 |
||||
#: 895f9adc27c4477bbba6d94cbfc59fd6 |
||||
msgid "Bases: :py:obj:`Exception`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:84 |
||||
#: e06b76bebe71442bb429fea2ab9afcb8 |
||||
msgid "Route key error" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:94 |
||||
#: c02574af669e4cd5a03ce5d4e7829715 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QFrame`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:107 |
||||
#: 99a2e98388774fe492b32aaaf9ee5c9b |
||||
msgid "add navigation item" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:110 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:141 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:166 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:200 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:228 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:238 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:251 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:307 |
||||
#: 08b0ef224203442ba7e86233b5b9238d 18018e191b04466ca866ac8ff0e312bb |
||||
#: 362692b21d204ed1ab99c56dd9ca4361 484e4722a7df4d89aebb2a95ec8526bb |
||||
#: 6a9ca270d3d34fd38b6dc013fc0a4aba 72a6e86f15984e86a867d88fa8199fe0 |
||||
#: 7cc8165bcd274de5b7cfc3cc694bce31 c9a0f290d41a47a6bd13202e0075b65c |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:112 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:143 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:171 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:205 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:252 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:308 |
||||
#: 0a07c7f7c16d4a6f8782af36d2f99056 6689801dc9264b7aa6372b6b9b0379ae |
||||
#: 7e95b0b4872647c89ba11b93afa7837e e3c97321aa474e1ba8203bfb35792184 |
||||
#: e88768e37abe4010901b26183798145e f6d00472704e43f7aba05ce76eae7071 |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:112 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:143 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:171 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:205 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:253 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:309 |
||||
#: 1bafcb015b724d11b4f06353468cd8d4 33f307ed680e44779c15d6217906955a |
||||
#: 4d3fe3f2b90e4dfb9deb38359a95a2d5 4e26c99d72a94bf98161115fd756777c |
||||
#: 9d23911c47ef46bab1830519965641e4 fa7cfd04232f4fcc8d21e71108e53957 |
||||
msgid "the unique name of item" |
||||
msgstr "导航菜单项的唯一名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:115 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:174 |
||||
#: bda4eed2779c4913b141754988f6fe53 c0ce0105975b4d51876225e7d9887a12 |
||||
msgid "icon: str | QIcon | FluentIconBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:115 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:174 |
||||
#: d2cf12c602274b7e850ee82bbc8fa07b fcb74851bfee4416beece63ad93f7416 |
||||
msgid "the icon of navigation item" |
||||
msgstr "导航菜单项的图标" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:118 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:177 |
||||
#: 148d231c9b99464e863e33ca78c4841a 750a36fd167544578d276e7d6af1b408 |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:118 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:177 |
||||
#: 60b79871a5e64ddcbcc93a87409b1b11 bf419840964048cc99ec1c47ca32f5e8 |
||||
msgid "the text of navigation item" |
||||
msgstr "导航菜单项的文本" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:121 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:149 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:180 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:211 |
||||
#: 0b4169e78c524cb39f207fbae9fbd12b 6fa278e970674e60a9f4a63128f016f0 |
||||
#: b5664c2a6714413584e9dee1e477bac4 b921dc0be4a04b3f87f30207c2bd277d |
||||
msgid "onClick: callable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:121 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:149 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:180 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:211 |
||||
#: 7fd5e1ad393c4ccb9fc3787d89ca1a20 95b8dbad52d745ca8d758d5eda194535 |
||||
#: b25c20c31e9746a8bb787896177bf22b fabebb2a86784863b787f5a756a79c3c |
||||
msgid "the slot connected to item clicked signal" |
||||
msgstr "导航菜单项点击信号的槽函数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:152 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:183 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:214 |
||||
#: 2b417a8ce60b4573901e50aee28b3d01 77c00bc0e0cc446fb9464dec0d21bf9d |
||||
#: ef7058a163a244af9486a99cb316f3c7 f08e2e01f01d495cbceedc7706669678 |
||||
msgid "position: NavigationItemPosition" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:124 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:152 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:183 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:214 |
||||
#: c86ccc5bebc84434b402deba609f9f8d dee9f766b3c64924a70fb1e94a7a4d55 |
||||
#: edabc105af6f4cffb4f94f7fdd3b8d9b f44aa4e1d1864bf4b29cc50a2aef892f |
||||
msgid "where the button is added" |
||||
msgstr "导航菜单项的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:127 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:186 |
||||
#: 42babcc8c6ea4db5bed2bc596aa92a75 69cf84b1861f440c802405c59d742865 |
||||
msgid "selectable: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:127 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:186 |
||||
#: 6ac05b9d3755483e9c8202bc51fe8eba bdf9715c3926442d9847613cdd0cc8bf |
||||
msgid "whether the item is selectable" |
||||
msgstr "导航菜单项是否可以选中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:130 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:155 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:189 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:217 |
||||
#: 0b1054d7cf004df398c115f04fe4ac45 11e7c0dfec6e4fd7a2dc2d50dc5fe740 |
||||
#: 2b51d54ddf6e488cb6a676efbb1177ee 53a62434489544aa93626531f8ac5a4b |
||||
msgid "tooltip: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:130 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:189 |
||||
#: 373d79669611459e9387d1a21bc5da2b e11ccdee60ce49b3bdf4554f13b320ea |
||||
#, fuzzy |
||||
msgid "the tooltip of item" |
||||
msgstr "导航菜单项的唯一名字" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:132 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:157 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:191 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:219 |
||||
#: 68a76583764b46b6ab443330d8305fe3 9ec68be84d2b488c82e1935c02bcce83 |
||||
#: c735a264590043f185ab58c81f39841b e7d48307dd4a46698015e8db2cdf6118 |
||||
msgid "parentRouteKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:133 |
||||
#: 6f8fe45ac37c4709a35361d1d4d70c4a |
||||
msgid "" |
||||
"the route key of parent item, the parent widget should be " |
||||
"`NavigationTreeWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:138 |
||||
#: 48f43a6c3d204f0f8fe1d62aef59a724 |
||||
msgid "add custom widget" |
||||
msgstr "添加自定义导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:146 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:208 |
||||
#: 69d8ef51c4c546448d1aad15fc755a04 e49555b753ed4d03b313736ddaaf240f |
||||
msgid "widget: NavigationWidget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:146 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:208 |
||||
#: 99461129065843e9a27a15467dd65ed6 e057ce0245254d4e8f11021d4a4e2207 |
||||
msgid "the custom widget to be added" |
||||
msgstr "自定义的导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:155 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:217 |
||||
#: 30bcf57eb9b44529aec9e442e4f9f0ca 365c5e4dc36f4fdaaa53b86540a8f94d |
||||
msgid "the tooltip of widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:158 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:192 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:220 |
||||
#: 50386029f9364fc6a5eab2f1cddc0818 63e77e673b734be2b348c5f5bb65c5db |
||||
#: ecd448d1776f42ee91c3f9731d1a2628 |
||||
msgid "" |
||||
"the route key of parent item, the parent item should be " |
||||
"`NavigationTreeWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:163 |
||||
#: 21987cac5e384e4aa572fcfd72a26ddf |
||||
#, fuzzy |
||||
msgid "insert navigation tree item" |
||||
msgstr "添加导航菜单项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:168 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:202 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:240 |
||||
#: 0c993a77e4824c7bae55977427048925 332da362318645a4a1e0c9a3a0a10b47 |
||||
#: 5b78bfb0b65e4d5c8dab973d7b386f11 |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:168 |
||||
#: 8344afb9a87c44309fafb5ec9fc53dd7 |
||||
msgid "the insert position of parent widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:197 |
||||
#: d5f5c52b02c54802bacbda7328e84a43 |
||||
#, fuzzy |
||||
msgid "insert custom widget" |
||||
msgstr "添加自定义导航小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:202 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:240 |
||||
#: 614bbd6cacb34cf5b680db4f0aae1129 a13dfe3a36b24ad39daf8504ee166b3f |
||||
msgid "insert position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:225 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:235 |
||||
#: afc29d3f4d1c464a8006081ef94716e1 b5f3137be6c44dd18e0793932b2f0ddb |
||||
msgid "add separator" |
||||
msgstr "添加分隔符" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:229 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:242 |
||||
#: 15934396822e41e8a9430351f3801577 437eb5e445e046b39b47ddf604a1b5ae |
||||
msgid "position: NavigationPostion" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:230 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:243 |
||||
#: 498f76e98ef642e19dc962dc4c886b1a db196a0a92e4442ea78a2e33b98f2a66 |
||||
msgid "where to add the separator" |
||||
msgstr "分隔符的添加位置" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:248 |
||||
#: 2404b542af0842c3b631895497604456 |
||||
msgid "remove widget" |
||||
msgstr "移除小部件" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:258 |
||||
#: ca88c7a8e3ee49459cf9edd1ba51d04f |
||||
msgid "set whether the menu button is visible" |
||||
msgstr "设置菜单按钮是否可见" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:263 |
||||
#: 7a7e18ab07a1419eb84572f4eaa3fa69 |
||||
#, fuzzy |
||||
msgid "set whether the return button is visible" |
||||
msgstr "设置返回按钮是否可见" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:271 |
||||
#: 886eb9ea47e54ef996aa71d5f672a7b2 |
||||
msgid "set the maximum width" |
||||
msgstr "设置展开后最大宽度" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:276 |
||||
#: e9269caa22804ed5af291dcbf70bc141 |
||||
msgid "Set the minimum window width that allows panel to be expanded" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:284 |
||||
#: a3c9b52d004e445b927fd475c74f1bae |
||||
#, fuzzy |
||||
msgid "whether the acrylic effect is enabled" |
||||
msgstr "导航菜单项是否可以选中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:289 |
||||
#: 7615e0915169463ebe16a2ae0d80385e |
||||
msgid "expand navigation panel" |
||||
msgstr "展开导航面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:294 |
||||
#: 8a5d71770708411bb739c661ba7ccf59 |
||||
msgid "collapse navigation panel" |
||||
msgstr "折叠导航面板" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:299 |
||||
#: 20ca0b63da264298a84e652c49fc1d59 |
||||
msgid "toggle navigation panel" |
||||
msgstr "切换导航面板的收缩状态" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:304 |
||||
#: 344dc478b7274398ae7e629554efbf0c |
||||
msgid "set current selected item" |
||||
msgstr "设置当前选中的导航项" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_panel/index.rst:330 |
||||
#: b238e11cc9754e60a89eceacced0b214 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QVBoxLayout`" |
||||
msgstr "" |
||||
|
||||
#~ msgid "" |
||||
#~ ":py:obj:`NavigationHistory " |
||||
#~ "<qfluentwidgets.components.navigation.navigation_panel.NavigationHistory>`\\" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "Navigation history" |
||||
#~ msgstr "导航历史" |
||||
|
||||
#~ msgid "Bases: :py:obj:`PyQt5.QtCore.QObject`" |
||||
#~ msgstr "" |
||||
|
||||
#~ msgid "push history" |
||||
#~ msgstr "压入导航历史" |
||||
|
||||
#~ msgid "pop history" |
||||
#~ msgstr "弹出导航历史" |
||||
|
||||
#~ msgid "remove history" |
||||
#~ msgstr "移除导航历史" |
||||
|
||||
#~ msgid "set the routing key to use when the navigation history is empty" |
||||
#~ msgstr "设置导航历史为空时的默认路由键" |
||||
|
Binary file not shown.
@ -0,0 +1,331 @@
@@ -0,0 +1,331 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:2 |
||||
#: 936caf40d2134342b416ef72915b5f31 |
||||
msgid "navigation_widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:8 |
||||
#: b7d09231991d4ad0a968e0efb955bb43 |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 30d1162bf37745cba7bce4591440b6be |
||||
msgid "" |
||||
":py:obj:`NavigationWidget " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:32 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 8805d3193c4a42eaab1cd3c5ff92f3b3 a349deeb15a64d9fa1c0adaaaf532012 |
||||
msgid "Navigation widget" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: f04c17d0d3eb4c2b8cbeab6ca1d9d4f0 |
||||
msgid "" |
||||
":py:obj:`NavigationPushButton " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationPushButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:82 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 3c1408dc992b437db89f3acd6e9b11dc 51eaf48362b3441daf30114e07e2d616 |
||||
msgid "Navigation push button" |
||||
msgstr "导航按钮" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: b100240e603a4010b2f6e49dd82f5cfb |
||||
msgid "" |
||||
":py:obj:`NavigationToolButton " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationToolButton>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:104 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: aa2a6c1c8ca54afabcdac0fc1fcad797 e6873ac6c89345048f0dd5211c8ea95b |
||||
msgid "Navigation tool button" |
||||
msgstr "导航工具按钮" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: d36c01df07464b3d8a47e9dd3d07ca37 |
||||
msgid "" |
||||
":py:obj:`NavigationSeparator " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationSeparator>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:116 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 6523fbca837a41ea9912e43f48097b61 ed17799e4ff747c69247c4824cee4179 |
||||
msgid "Navigation Separator" |
||||
msgstr "导航分隔符" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: db5d7ee6ad3649a488afd39e8684bd57 |
||||
msgid "" |
||||
":py:obj:`NavigationTreeItem " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationTreeItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:131 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 25be5bf8f490430ab592f3d4cbefe7a3 c77a73e326974cbfa3b7682d711ea3a2 |
||||
#, fuzzy |
||||
msgid "Navigation tree item widget" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 066234462545437eb5ebdf45d39bdbcb |
||||
msgid "" |
||||
":py:obj:`NavigationTreeWidgetBase " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationTreeWidgetBase>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:161 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 56f335cb46204ea6a820a1593adfef21 93a4b213108f4089b23aa102b974ce87 |
||||
#, fuzzy |
||||
msgid "Navigation tree widget base class" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 736be6499a7f4f9d9024a5482dddd694 |
||||
msgid "" |
||||
":py:obj:`NavigationTreeWidget " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationTreeWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:228 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 510d8c073dc44bd79c49dfd2ddcbfb20 86028d94956f4240bd08fd4873afee50 |
||||
#, fuzzy |
||||
msgid "Navigation tree widget" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 71730c22b78d4fe0b6b00608f8c8e51b |
||||
msgid "" |
||||
":py:obj:`NavigationAvatarWidget " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationAvatarWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:328 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 205086654dc84c3a9670628380d4b420 6de35562a25949639be8e16e92096d6d |
||||
#, fuzzy |
||||
msgid "Avatar widget" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 93b15e43066142c4a0502d51660bbcfb |
||||
msgid "" |
||||
":py:obj:`NavigationItemInfoBadgeManager " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationItemInfoBadgeManager>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:344 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 3932519e7b604a058aaf55d9f6512115 860e46cdf33f416fb48bafb1e0ffffc5 |
||||
#, fuzzy |
||||
msgid "Navigation item info badge manager" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 8801e91cdb854f7192a7366153ae88fa |
||||
msgid "" |
||||
":py:obj:`NavigationFlyoutMenu " |
||||
"<qfluentwidgets.components.navigation.navigation_widget.NavigationFlyoutMenu>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:359 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:27:<autosummary>:1 |
||||
#: 977f4d26606448c2a709395e82490589 dc76a76e29d144d989625e8c2d78c449 |
||||
#, fuzzy |
||||
msgid "Navigation flyout menu" |
||||
msgstr "导航工具按钮" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:30 |
||||
#: f43e41c840a541bba68283f2e205e0c2 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:64 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:108 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:120 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:320 |
||||
#: 1e4bb537ba0744e9a6e46e496dce2947 4084e4c66db84f7eb1283c776e13524e |
||||
#: 8aefd907cf5e4583bb5040d1e71e833a b5e23d9d1c954a3e9b8ff4ebc91197e4 |
||||
msgid "set whether the widget is compacted" |
||||
msgstr "设置小部件是否被折叠" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:307 |
||||
#: 0eee7a6781184d778eb931fb1b419e04 644ab918142d4a49a06f8b2920572243 |
||||
msgid "set whether the button is selected" |
||||
msgstr "设置是否被选中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:72 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:169 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:180 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:191 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:212 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:239 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:270 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:280 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:310 |
||||
#: 0dc014afa481425f96295802733ba163 1a2d28b24f894b109bc87e1c1a6437ab |
||||
#: 1d1407c6d69147f0aaa351018a53e73e 974a1ed71c074965ab74d45091983b83 |
||||
#: 991b8e31d889426a857ae4fa6c9932ae a1c9bfc14da9420f9e138b4b22c110f4 |
||||
#: b3b821dd23e64c8989caba3889404d0b bcf5b93440e046d6bdb14c918451cbbb |
||||
#: fc41c0291f7a46059f3b14f7e3f6c064 |
||||
msgid "Parameters" |
||||
msgstr "参数" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:73 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:311 |
||||
#: be9d1a8464ad4087b2ece9de49d0ae64 f33a9dff6c6a4401b54854c8e9d87d5c |
||||
msgid "isSelected: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:74 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:312 |
||||
#: 5260eb6d68774241b2ecfce56ef73592 b39082441cf742ed85eed12458a7bbba |
||||
msgid "whether the button is selected" |
||||
msgstr "是否被选中" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:80 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:114 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:159 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:326 |
||||
#: 455f4b34627d48c18c49955a947b44c2 69179ade97e1429bbd4f25498df14edf |
||||
#: 7854d43f365c4af282a30c300aac2037 fe9b4facdb0b488693e89b61fdc0dcb8 |
||||
msgid "Bases: :py:obj:`NavigationWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:102 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:129 |
||||
#: 6cc63346c8a74fe5aee0ba5010995825 e525458ec4cb4783ac1a1df84a263037 |
||||
msgid "Bases: :py:obj:`NavigationPushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:166 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:236 |
||||
#: 0097b1764f21442ca41bc6da07983f60 4542670b4a714fda821adc3faf2682ad |
||||
msgid "add child" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:170 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:181 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:192 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:240 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:271 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:281 |
||||
#: 024455984f454e0b90f878cc2abf0a73 0b384d137b0a4407a10b77dad7c88d22 |
||||
#: 5b1294c8630e41b9b2d9fa5b942cedf0 c49e5aff49774c89a5bdc9a13c7d53c8 |
||||
#: e2e2a5894feb404a808edd762d285fbf f2e9421bc1cb4c3089caa0fa99951a50 |
||||
#, fuzzy |
||||
msgid "child: NavigationTreeWidgetBase" |
||||
msgstr "导航小部件基类" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:171 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:182 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:193 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:241 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:272 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:282 |
||||
#: 493a693b67264c8b96c6770970eee698 5fb7aee9041e4dc3bc332bd832d24a33 |
||||
#: 6bee1410de734d5e84cb757cd65cc664 7c7813d38ae444c0930a4013e71c6b86 |
||||
#: 7d3ca323dd8649f38a12619d511ac225 ae1835c943fc4ae5b35af3ec62e1e77c |
||||
msgid "child item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:177 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:267 |
||||
#: 09644a3580b64e0eb7b7b1878c9a4127 e09b9d7bef964bba939ed23ef2ea04a7 |
||||
msgid "insert child" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:188 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:277 |
||||
#: c13206305c76444a92b2e44e4e7888b7 ca8af2b89e904067bf7823a2f37c48df |
||||
msgid "remove child" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:198 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:297 |
||||
#: 85b5440a9502465b81f1cc88867d198e eddebdf746464ac7836fe5db7f128558 |
||||
msgid "is root node" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:203 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:302 |
||||
#: 6c539d5059b045119da3ae01652848dd a8856c9f6bf848d48a60d1b0ddfb0d5c |
||||
msgid "is leaf node" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:209 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:292 |
||||
#: 2a7f4dc2495b4907ab9c3d18b3f3f75b 833209f337354ea3b5b04b28ffd41542 |
||||
msgid "set the expanded status" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:213 |
||||
#: b8925b6b2760415ea5d272f1deadf45f |
||||
msgid "isExpanded: bool" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:214 |
||||
#: 066830652f914ef5927593a9ae1696e5 |
||||
msgid "whether to expand node" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:220 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:287 |
||||
#: 40ea46eee96d4bfa8dac418eadf53db7 86bc5657abd249b1a9512c7d9cee425c |
||||
msgid "return child items" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:226 |
||||
#: 6338d0c980be4354a1756850fac7c6ba |
||||
msgid "Bases: :py:obj:`NavigationTreeWidgetBase`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:342 |
||||
#: a6b5ce4eddc0427d921d3a5571c7a27b |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.widgets.info_badge.InfoBadgeManager`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:351 |
||||
#: df32344190f64c3ab288f066d1a76e86 |
||||
msgid "return the position of info badge" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/navigation_widget/index.rst:357 |
||||
#: 049151bcbd9f4240846a44da5897026a |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.scroll_area.ScrollArea`" |
||||
msgstr "" |
||||
|
Binary file not shown.
@ -0,0 +1,212 @@
@@ -0,0 +1,212 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:2 |
||||
#: d68927829b6645fdb5245a81447f3d6b |
||||
msgid "pivot" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:8 |
||||
#: 6879ec5394e1428a993a7797254440ae |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:19:<autosummary>:1 |
||||
#: a62d8fc7fc3b4d589ee55efda8f1b681 |
||||
msgid "" |
||||
":py:obj:`PivotItem " |
||||
"<qfluentwidgets.components.navigation.pivot.PivotItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:24 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:19:<autosummary>:1 |
||||
#: 45e6bdada5334b3f8224851376c50456 ea0f216cd18649149052c96fe3889fcf |
||||
msgid "Pivot item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:19:<autosummary>:1 |
||||
#: 751364a6f29a47e5b7ff75a2451c1248 |
||||
msgid ":py:obj:`Pivot <qfluentwidgets.components.navigation.pivot.Pivot>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:38 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:19:<autosummary>:1 |
||||
#: 44922ef46d3940818339fb6cfa4b9700 a2c0680c72d74e9bbf9575d9979d2267 |
||||
msgid "Pivot" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:22 |
||||
#: 3e18e608e7594dfcba1290bd4e36d68b |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.button.PushButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:36 |
||||
#: c8530eaf4c074cb3bd24b1241d8d91c3 |
||||
msgid "Bases: :py:obj:`PyQt5.QtWidgets.QWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:42 |
||||
#: fe87b721346b43f49637024482b76833 |
||||
msgid "add item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:45 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:64 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:80 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:102 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:121 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:141 |
||||
#: 14b93557960c4b8798d8c8c27ee66174 5af57e9b45874fe281a675127c28a42c |
||||
#: b5ac135aaf194705936fa90be68ba0eb b9ef9f46df414b25ad620c37d037d68f |
||||
#: c163020e52b84b648a835a9222551588 f8519a5a542b4faea3c46ffbc02a576f |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:47 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:66 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:85 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:107 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:122 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:142 |
||||
#: 039b55fe555f44fea45358c28a3abef7 14e4b7335383441c831f92ae187ec5b8 |
||||
#: 370530cb3f964554a773690a93a410a7 869ce391b8e8411f8f70a250886c66db |
||||
#: d25b21dd970b4f6ca038a894e2b26fa0 d2da215cf3c44ff487257cea8266fdcb |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:47 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:66 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:85 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:107 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:123 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:143 |
||||
#: 550ce9c492604c778e8670c1df58b557 76240a145f924574a55e8219159e796c |
||||
#: 853328a4d05f4a70b335a72fd1ceb42f b9a36ca9fd3f4368af6d371a93892c94 |
||||
#: c29f76ac9345479786d83e295a8a6e65 d5a3158bddf74ac4a12ee5c6c0b5f34e |
||||
msgid "the unique name of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:50 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:88 |
||||
#: 1ecda2acd70f42d28f24048dfdb658f8 41dcc0f614e5441f83feff4b1419cff2 |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:50 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:88 |
||||
#: 2ad29e9c481f411da736bdd659e62386 531de00e4a794d818c2a9f4c89535bb8 |
||||
msgid "the text of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:53 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:71 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:91 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:112 |
||||
#: 353af8e89c2e418585caca04adf00193 c628cfec693c483a91f668ccd51f803e |
||||
#: d7115dcdf1124586a5a42f883b8aaae0 ff7509b0dae8437da11ec8ba8ad86cdf |
||||
msgid "onClick: callable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:53 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:72 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:91 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:113 |
||||
#: 43b4ed8e1700485ea49ddf39b59f68b0 48a24e2fa46746228f58a3ce447672f4 |
||||
#: 63e33bae4e5b4d92b456aac08a489002 e3d84cd2fcfb4678ba7404eb63b9fbba |
||||
msgid "the slot connected to item clicked signal" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:55 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:93 |
||||
#: 2725f3ab5f3a4bc48c5cd5205361e332 3bd64f863d394a1a96b26389876552a2 |
||||
msgid "icon: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:56 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:94 |
||||
#: 0ba358e744b04f46a0b6f4276db8f999 68565b1c071248baad6dce9bdac2ac20 |
||||
msgid "the icon of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:61 |
||||
#: 423d1b6fa3cb4ed7999ee05c6acc87fc |
||||
msgid "add widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:110 |
||||
#: 679bfd84d7b94f69b0f08447c41b21f9 baa8d0383f38449faae98fe931242e60 |
||||
msgid "widget: PivotItem" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:69 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:110 |
||||
#: 06a777bc961441c4a3279911a4ce7bce b95b985bccca4fb6953a3938cfebace8 |
||||
msgid "navigation widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:77 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:99 |
||||
#: 38783ab1b6f44c06a4e6784ef1956fc0 ed7c6ae683a742bf84477cccbfb0556d |
||||
msgid "insert item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:82 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:104 |
||||
#: b376325f486448bba8a97a208a17bde0 bdfbd92411934d4ca905c7739dd43792 |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:82 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:104 |
||||
#: 37a1a2fdbfec4f8b80007236c43820a7 646776e91a734e49a169f219ac5157de |
||||
msgid "insert position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:118 |
||||
#: 6ee34bd1661d40d8b7e307b8d2c84de1 |
||||
msgid "remove widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:128 |
||||
#: bb842b492d284a3d96d4cfb8b2aa2f78 |
||||
msgid "clear all navigation items" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:133 |
||||
#: cca40b54078e40729218bb2d1489b3ce |
||||
msgid "Returns the current selected item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:138 |
||||
#: c481b2e1be6940598b80a8f0dacae3db |
||||
msgid "set current selected item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/pivot/index.rst:148 |
||||
#: fddabb8fe9514cc4bac7e5036d2ddf37 |
||||
msgid "set the pixel font size of items" |
||||
msgstr "" |
||||
|
||||
#~ msgid "Bases: :py:obj:`PyQt5.QtWidgets.QPushButton`" |
||||
#~ msgstr "" |
||||
|
@ -0,0 +1,253 @@
@@ -0,0 +1,253 @@
|
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) 2021, zhiyiYo |
||||
# This file is distributed under the same license as the PyQt-Fluent-Widgets |
||||
# package. |
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. |
||||
# |
||||
#, fuzzy |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: PyQt-Fluent-Widgets \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"POT-Creation-Date: 2024-02-14 16:27+0800\n" |
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language: zh_CN\n" |
||||
"Language-Team: zh_CN <LL@li.org>\n" |
||||
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Generated-By: Babel 2.11.0\n" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:2 |
||||
#: 3b642b6bc07f40cab9edd2efeb782981 |
||||
msgid "segmented_widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:8 |
||||
#: de5d6ea6ffbe40cca3269f88aa70ee1b |
||||
msgid "Module Contents" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 13c8cf0fad994dff834fe89dd1d8fad2 |
||||
msgid "" |
||||
":py:obj:`SegmentedItem " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:28 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 3b18580b52e34968a218e0b766212a55 6448c9f732e14aaaa433abcee17773ca |
||||
msgid "Segmented item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 865447cba39d414c8270d5f85ea0e28b |
||||
msgid "" |
||||
":py:obj:`SegmentedToolItem " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedToolItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:35 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 2051c4ab8ee9495ab4e793d9662c05de f735808ee8f44001a9c2f219ed5ef777 |
||||
msgid "Pivot item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 6356dd9572654b21a03f9e189626a786 |
||||
msgid "" |
||||
":py:obj:`SegmentedToggleToolItem " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedToggleToolItem>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:49 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 3063fea304f445cf8819f20acfb4d883 530959dafbf244eea8c7ccb3a1e42b31 |
||||
msgid "Transparent background tool button" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: df5a60d247b74a85b224bd3012aa6bc9 |
||||
msgid "" |
||||
":py:obj:`SegmentedWidget " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:68 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 741a261c804b4b76b616a4606f1aec5d 8df5f3d1ee4b4965be93704414047987 |
||||
msgid "Segmented widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: af8030f9a5e94ace9b505eb838fe0872 |
||||
msgid "" |
||||
":py:obj:`SegmentedToolWidget " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedToolWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:100 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: 355c74d9729b4fbb811bd0c4629c7936 a04dd23403bf49eeb1272431336b5f84 |
||||
msgid "Segmented tool widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: be08fd66007b443697c3c0b19b076df2 |
||||
msgid "" |
||||
":py:obj:`SegmentedToggleToolWidget " |
||||
"<qfluentwidgets.components.navigation.segmented_widget.SegmentedToggleToolWidget>`\\" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:145 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:23:<autosummary>:1 |
||||
#: ddb9807a549c40fdbe88a6c86a2f77e5 e1425d3d5c9e4951a8072d812a5f0c10 |
||||
msgid "Segmented toggle tool widget" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:26 |
||||
#: f5196c071d8f458285eb2f9fa43db1fe |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.navigation.pivot.PivotItem`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:33 |
||||
#: 83e7733177e44ea8ad409cf8ea727c5c |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.widgets.button.ToolButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:47 |
||||
#: a920a4e8e08e46cd90e070f206dc5052 |
||||
msgid "" |
||||
"Bases: " |
||||
":py:obj:`qfluentwidgets.components.widgets.button.TransparentToolButton`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:52 |
||||
#: b2cbb57568bb43dfaa0347725fa741e6 |
||||
msgid "Constructors" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:53 |
||||
#: 167f5d2d29ba409394e5202d023cf4f3 |
||||
msgid "TransparentToolButton(`parent`: QWidget = None)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:54 |
||||
#: 252355804c80480db05c48e44fe8c701 |
||||
msgid "" |
||||
"TransparentToolButton(`icon`: QIcon | str | FluentIconBase, `parent`: " |
||||
"QWidget = None)" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:66 |
||||
#: 14b6c4be5d6543f981bd68725e3250e7 |
||||
msgid "Bases: :py:obj:`qfluentwidgets.components.navigation.pivot.Pivot`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:72 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:120 |
||||
#: 326d5571085c475eb385670d6d6c2124 777f11acfa154bbd8591f3ea56416d21 |
||||
msgid "insert item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:75 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:107 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:123 |
||||
#: 5599436954814352b3408fad66b0bc33 716b16582e4d4a979332c24ffb6133c2 |
||||
#: 752d72f9803a4085b39f6d200a6fc36d |
||||
msgid "Parameters" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:77 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:125 |
||||
#: 143e00adb04a44399eaa8c66e135841a a8d8c93f885d4cbea04624c3483733af |
||||
msgid "index: int" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:77 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:125 |
||||
#: 52485af2ea3443dbaf6aee06f80f5277 6d082b1f92c44634a47ba596e964693c |
||||
msgid "insert position" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:80 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:109 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:128 |
||||
#: 39e9cb293ed445ff855d67f0d5d43e1e a015a22ad905453790a8d6d5ac0fb86c |
||||
#: c6b65500320c4cef81db412dbe57ac95 |
||||
msgid "routeKey: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:80 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:109 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:128 |
||||
#: 3596e010d875485789a3442ca6d6836c 94d6a939208f4f6db6b6db5e4e579f74 |
||||
#: e3ecc9b8cd3347efa97d68bca8efff8d |
||||
msgid "the unique name of item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:83 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:131 |
||||
#: 070861bafea44ee6a8232a0e1f62e292 ee783d87c3ce434ca23f0b05dec1d29f |
||||
msgid "text: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:83 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:131 |
||||
#: 3dc49e1e5c4c4f49bfffe0b0440df28a e475a98f4e5f4f9892167dd99c0c3766 |
||||
msgid "the text of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:86 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:114 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:134 |
||||
#: 76acda20106747e8896c314f8a5d4b18 b8a8ca8fb31c4b9fbaab9deece3f31bf |
||||
#: c96bf2aa92d0400ca081519cb51734fc |
||||
msgid "onClick: callable" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:86 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:115 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:134 |
||||
#: 1fc6e3bc1c8f46cd9c673484f8478a5e 4d968060c35a4550b0f7ab2e1eca7e31 |
||||
#: 8e79a27e1db64c9d8be1ae062cb56412 |
||||
msgid "the slot connected to item clicked signal" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:88 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:136 |
||||
#: eabe9164694b44f5af0ee59df1d14be3 f10bb7519714449e8a9ebea7b55847bb |
||||
msgid "icon: str" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:89 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:112 |
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:137 |
||||
#: 63ae947f71bb42daadb63f2cbbe140dc 7573b5795b1949ee822614bfcbea3fb1 |
||||
#: c35091f08a4e4e009395101cfeea8bf6 |
||||
msgid "the icon of navigation item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:98 |
||||
#: 4f510d4a592a4339a10d11cd52b23e70 |
||||
msgid "Bases: :py:obj:`SegmentedWidget`" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:104 |
||||
#: 503a7e585cea437bb4e17c59e5229bba |
||||
msgid "add item" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:112 |
||||
#: fbe9aa14443d4ef1a65565b420b84326 |
||||
msgid "icon: str | QIcon | FluentIconBase" |
||||
msgstr "" |
||||
|
||||
#: ../../source/autoapi/qfluentwidgets/components/navigation/segmented_widget/index.rst:143 |
||||
#: 6aa66e5cbdc44304838fe2bcbad89dc9 |
||||
msgid "Bases: :py:obj:`SegmentedToolWidget`" |
||||
msgstr "" |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue