This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Translation Error in in Functional Programming HOWTO page
Type: enhancement Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: docs@python Nosy List: cocoatomo, docs@python, mdk, mydairyyao, terry.reedy
Priority: normal Keywords:

Created on 2020-08-03 04:18 by mydairyyao, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg374713 - (view) Author: 李冰 (mydairyyao) Date: 2020-08-03 04:18
There seems a translation error in Python Documentation in Functional Programming HOWTO page.

The page's English version's url is https://docs.python.org/3/howto/functional.html
And the Japanese version's url is https://docs.python.org/ja/3/howto/functional.html.

In English version, there is a paragraph: 

"In declarative languages, you write a specification that describes the problem to be solved, and the language implementation figures out how to perform the computation efficiently. SQL is the declarative language you’re most likely to be familiar with; a SQL query describes the data set you want to retrieve, and the SQL engine decides whether to scan tables or use indexes, which subclauses should be performed first, etc."

The corresponding Japanses translation is this:

"宣言型 言語で書くのは、解くべき問題を説明する仕様書であって、それを効率的に計算処理する方法を見付けるのは言語実装の役目です。SQL はおそらく一番よく知られた宣言型言語です; SQL のクエリは取得したいデータセットを説明しているだけで、テーブルを走査するかインデックスを使うか、どのサブクローズから実行するか等々を決めるのは SQL エンジンなのです。"

In the above paragraph, I think the translator translate the word "subclauses" to "サブクローズ", which is wrong.

In Japanese, サブ means sub and クローズ means close, so it is just "subclose", not "subclause".

That is all. Thank you.
msg375016 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-08-07 19:10
This tracker is only for the original English version of the docs.  The translations are by a different group with different tools and workflow.  This page
https://docs.python.org/ja/3/bugs.html#
should not literally translate the instructions for the English version.

Julien, I thought there was something about translations in the devguide but cannot find it.  https://devguide.python.org/docquality/ would seen line a good place.
History
Date User Action Args
2022-04-11 14:59:34adminsetgithub: 85632
2020-08-07 19:10:59terry.reedysetstatus: open -> closed

nosy: + terry.reedy
messages: + msg375016

resolution: third party
stage: resolved
2020-08-04 04:01:51ned.deilysetnosy: + cocoatomo, mdk, docs@python

components: + Documentation
assignee: docs@python
2020-08-03 04:18:09mydairyyaocreate