Skip to content

Commit c6ffc5e

Browse files
committed
Unify to use full-width colons
1 parent dde79ac commit c6ffc5e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

translated/pyqt6/dialogs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if ok:
8282

8383
![Input dialog](./images/inputdialog.png)
8484

85-
图示:输入框
85+
图示输入框
8686

8787
## PyQt6 QColorDialog
8888
`QColorDialog` 是可以选择颜色对话框。

translated/pyqt6/firstprograms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ PyQt6 的事件处理系统是由信号和插槽机制构成的,点击按钮
240240

241241
![Quit button](./images/quitbutton.png)
242242

243-
图示:退出按钮
243+
图示退出按钮
244244

245245
## PyQt6 弹窗
246246
默认情况下,如果我们点击标题栏上的 x 按钮,`QWidget` 会被关闭。有时我们想修改这个默认行为。 例如,如果在编辑器中打开了一个文件,修改了部分内容,我们需要显示一个消息框来确认退出程序的操作。
@@ -319,7 +319,7 @@ else:
319319

320320
![Message box](./images/messagebox.png)
321321

322-
图示:对话框
322+
图示对话框
323323

324324
## PyQt6 窗口居中
325325
下面的脚本会在屏幕上显示一个居中的窗口。

translated/pyqt6/layout.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The label widget is positioned at x=15 and y=10.
7474

7575
![Absolute positioning](./images/absolute.png)
7676

77-
图示:绝对位置
77+
图示绝对位置
7878

7979
## PyQt6 QHBoxLayout
8080
`QHBoxLayout``QVBoxLayout` 是基本的布局类,用于水平和垂直地排列小部件。
@@ -167,7 +167,7 @@ self.setLayout(vbox)
167167

168168
![按钮](./images/buttons.png)
169169

170-
图示:按钮
170+
图示按钮
171171

172172
## PyQt6 QGridLayout
173173

@@ -266,7 +266,7 @@ for position, name in zip(positions, names):
266266

267267
![计算器骨架](./images/calculator.png)
268268

269-
图示:计算器骨架
269+
图示计算器骨架
270270

271271
## 示例:回复
272272
组件可以跨越多个行和列,下面的示例来演示这个。
@@ -355,6 +355,6 @@ grid.addWidget(reviewEdit, 3, 1, 5, 1)
355355

356356
![Review example](./images/review.png)
357357

358-
图示:评论框的例子
358+
图示评论框的例子
359359

360360
本例展示了 PyQt6 的布局管理。

0 commit comments

Comments
 (0)