mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
more-info-link: update japanese (#15502)
This commit is contained in:
parent
e35cb0254d
commit
5a92f25963
2 changed files with 5 additions and 3 deletions
|
@ -169,7 +169,7 @@ The templates can be changed when necessary, but if so, it needs to be updated h
|
|||
### ja
|
||||
|
||||
```markdown
|
||||
> 詳しくはこちら: <https://example.com>
|
||||
> もっと詳しく: <https://example.com>。
|
||||
```
|
||||
|
||||
---
|
||||
|
|
|
@ -78,7 +78,7 @@ labels = {
|
|||
"hi": "अधिक जानकारी:",
|
||||
"id": "Informasi lebih lanjut:",
|
||||
"it": "Maggiori informazioni:",
|
||||
"ja": "詳しくはこちら:",
|
||||
"ja": "もっと詳しく:",
|
||||
"ko": "더 많은 정보:",
|
||||
"lo": "ຂໍ້ມູນເພີ່ມເຕີມ:",
|
||||
"ml": "കൂടുതൽ വിവരങ്ങൾ:",
|
||||
|
@ -146,7 +146,9 @@ def set_link(
|
|||
# build new line
|
||||
if locale in ["bn", "hi", "ne"]:
|
||||
new_line = f"> {labels[locale]} <{link}>।\n"
|
||||
elif locale in ["ja", "th"]:
|
||||
elif locale in ["ja"]:
|
||||
new_line = f"> {labels[locale]} <{link}>。\n"
|
||||
elif locale in ["th"]:
|
||||
new_line = f"> {labels[locale]} <{link}>\n"
|
||||
elif locale in ["zh", "zh_TW"]:
|
||||
new_line = f"> {labels[locale]}<{link}>.\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue