mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
Chinese pages: remove space in More info link (#6305)
This commit is contained in:
parent
2a71b87788
commit
c70c0c2688
174 changed files with 177 additions and 174 deletions
|
@ -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/>.
|
||||
|
||||
- 列出所有正在运行的服务:
|
||||
|
||||
|
|
3
scripts/set-more-info-link.py
Normal file → Executable file
3
scripts/set-more-info-link.py
Normal file → Executable file
|
@ -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…
Add table
Reference in a new issue