Chinese pages: remove space in More info link (#6305)
This commit is contained in:
parent
2a71b87788
commit
c70c0c2688
|
|
@ -1,7 +1,7 @@
|
|||
# cmd
|
||||
|
||||
> Android 服务管理器。
|
||||
> 更多信息见: <https://cs.android.com/android/platform/superproject/+/master:frameworks/native/cmds/cmd/>.
|
||||
> 更多信息:<https://cs.android.com/android/platform/superproject/+/master:frameworks/native/cmds/cmd/>.
|
||||
|
||||
- 列出所有正在运行的服务:
|
||||
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@ def set_link(file, link):
|
|||
locale = 'en'
|
||||
|
||||
# build new line
|
||||
if locale == "zh" or locale == "zh_TW":
|
||||
new_line = f'> {labels[locale]}<{link}>.\n'
|
||||
else:
|
||||
new_line = f'> {labels[locale]} <{link}>.\n'
|
||||
|
||||
if lines[desc_end] == new_line:
|
||||
|
|
|
|||
Loading…
Reference in New Issue