public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
@ 2024-06-11  4:43 Dongliang Mu
  2024-06-11  6:06 ` Alex Shi
  0 siblings, 1 reply; 6+ messages in thread
From: Dongliang Mu @ 2024-06-11  4:43 UTC (permalink / raw)
  To: Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen, Dongliang Mu
  Cc: linux-doc, linux-kernel

Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
Add link to RV docs")

Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
---
 Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
index c91f9b60f9f1..d89d0ec1d4cc 100644
--- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
+++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
@@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
   参阅 Documentation/dev-tools/kfence.rst
 * lockdep是一个锁定正确性检测器。参阅
   Documentation/locking/lockdep-design.rst
+* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅
+  Documentation/trace/rv/runtime-verification.rst。
 * 除此以外,在内核中还有一些其它的调试工具,大多数能在
   lib/Kconfig.debug 中找到。
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
  2024-06-11  4:43 [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview Dongliang Mu
@ 2024-06-11  6:06 ` Alex Shi
  2024-06-11  6:50   ` Dongliang Mu
  0 siblings, 1 reply; 6+ messages in thread
From: Alex Shi @ 2024-06-11  6:06 UTC (permalink / raw)
  To: Dongliang Mu, Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen
  Cc: linux-doc, linux-kernel



On 6/11/24 12:43 PM, Dongliang Mu wrote:
> Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
> Add link to RV docs")
> 
> Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
> ---
>  Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> index c91f9b60f9f1..d89d0ec1d4cc 100644
> --- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> +++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> @@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
>    参阅 Documentation/dev-tools/kfence.rst
>  * lockdep是一个锁定正确性检测器。参阅
>    Documentation/locking/lockdep-design.rst
> +* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅

Why not translate the words 'Runtime Verification' here?

Thanks!
Alex
> +  Documentation/trace/rv/runtime-verification.rst。
>  * 除此以外,在内核中还有一些其它的调试工具,大多数能在
>    lib/Kconfig.debug 中找到。
>  

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
  2024-06-11  6:06 ` Alex Shi
@ 2024-06-11  6:50   ` Dongliang Mu
  2024-06-12  1:36     ` Alex Shi
  0 siblings, 1 reply; 6+ messages in thread
From: Dongliang Mu @ 2024-06-11  6:50 UTC (permalink / raw)
  To: Alex Shi
  Cc: Dongliang Mu, Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen,
	linux-doc, linux-kernel

On Tue, Jun 11, 2024 at 2:36 PM Alex Shi <seakeel@gmail.com> wrote:
>
>
>
> On 6/11/24 12:43 PM, Dongliang Mu wrote:
> > Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
> > Add link to RV docs")
> >
> > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
> > ---
> >  Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> > index c91f9b60f9f1..d89d0ec1d4cc 100644
> > --- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> > +++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> > @@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
> >    参阅 Documentation/dev-tools/kfence.rst
> >  * lockdep是一个锁定正确性检测器。参阅
> >    Documentation/locking/lockdep-design.rst
> > +* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅
>
> Why not translate the words 'Runtime Verification' here?

If you translate it into "动态确认", this sounds like a very general term.
So I keep the original English.

>
> Thanks!
> Alex
> > +  Documentation/trace/rv/runtime-verification.rst。
> >  * 除此以外,在内核中还有一些其它的调试工具,大多数能在
> >    lib/Kconfig.debug 中找到。
> >
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
  2024-06-11  6:50   ` Dongliang Mu
@ 2024-06-12  1:36     ` Alex Shi
  2024-06-12  1:54       ` Dongliang Mu
  0 siblings, 1 reply; 6+ messages in thread
From: Alex Shi @ 2024-06-12  1:36 UTC (permalink / raw)
  To: Dongliang Mu
  Cc: Dongliang Mu, Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen,
	linux-doc, linux-kernel



On 6/11/24 2:50 PM, Dongliang Mu wrote:
> On Tue, Jun 11, 2024 at 2:36 PM Alex Shi <seakeel@gmail.com> wrote:
>>
>>
>>
>> On 6/11/24 12:43 PM, Dongliang Mu wrote:
>>> Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
>>> Add link to RV docs")
>>>
>>> Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
>>> ---
>>>  Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
>>>  1 file changed, 2 insertions(+)
>>>
>>> diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>> index c91f9b60f9f1..d89d0ec1d4cc 100644
>>> --- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>> +++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>> @@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
>>>    参阅 Documentation/dev-tools/kfence.rst
>>>  * lockdep是一个锁定正确性检测器。参阅
>>>    Documentation/locking/lockdep-design.rst
>>> +* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅
>>
>> Why not translate the words 'Runtime Verification' here?
> 
> If you translate it into "动态确认", this sounds like a very general term.
> So I keep the original English.

Runtime is often translated as '运行时', so could be ‘运行时确认’

> 
>>
>> Thanks!
>> Alex
>>> +  Documentation/trace/rv/runtime-verification.rst。
>>>  * 除此以外,在内核中还有一些其它的调试工具,大多数能在
>>>    lib/Kconfig.debug 中找到。
>>>
>>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
  2024-06-12  1:36     ` Alex Shi
@ 2024-06-12  1:54       ` Dongliang Mu
  2024-06-12  8:03         ` Alex Shi
  0 siblings, 1 reply; 6+ messages in thread
From: Dongliang Mu @ 2024-06-12  1:54 UTC (permalink / raw)
  To: Alex Shi
  Cc: Dongliang Mu, Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen,
	linux-doc, linux-kernel

On Wed, Jun 12, 2024 at 9:36 AM Alex Shi <seakeel@gmail.com> wrote:
>
>
>
> On 6/11/24 2:50 PM, Dongliang Mu wrote:
> > On Tue, Jun 11, 2024 at 2:36 PM Alex Shi <seakeel@gmail.com> wrote:
> >>
> >>
> >>
> >> On 6/11/24 12:43 PM, Dongliang Mu wrote:
> >>> Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
> >>> Add link to RV docs")
> >>>
> >>> Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
> >>> ---
> >>>  Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
> >>>  1 file changed, 2 insertions(+)
> >>>
> >>> diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> >>> index c91f9b60f9f1..d89d0ec1d4cc 100644
> >>> --- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> >>> +++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
> >>> @@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
> >>>    参阅 Documentation/dev-tools/kfence.rst
> >>>  * lockdep是一个锁定正确性检测器。参阅
> >>>    Documentation/locking/lockdep-design.rst
> >>> +* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅
> >>
> >> Why not translate the words 'Runtime Verification' here?
> >
> > If you translate it into "动态确认", this sounds like a very general term.
> > So I keep the original English.
>
> Runtime is often translated as '运行时', so could be ‘运行时确认’

How about 运行时确认(Runtime Verification)?

>
> >
> >>
> >> Thanks!
> >> Alex
> >>> +  Documentation/trace/rv/runtime-verification.rst。
> >>>  * 除此以外,在内核中还有一些其它的调试工具,大多数能在
> >>>    lib/Kconfig.debug 中找到。
> >>>
> >>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview
  2024-06-12  1:54       ` Dongliang Mu
@ 2024-06-12  8:03         ` Alex Shi
  0 siblings, 0 replies; 6+ messages in thread
From: Alex Shi @ 2024-06-12  8:03 UTC (permalink / raw)
  To: Dongliang Mu
  Cc: Dongliang Mu, Alex Shi, Yanteng Si, Jonathan Corbet, Hu Haowen,
	linux-doc, linux-kernel



On 6/12/24 9:54 AM, Dongliang Mu wrote:
> On Wed, Jun 12, 2024 at 9:36 AM Alex Shi <seakeel@gmail.com> wrote:
>>
>>
>>
>> On 6/11/24 2:50 PM, Dongliang Mu wrote:
>>> On Tue, Jun 11, 2024 at 2:36 PM Alex Shi <seakeel@gmail.com> wrote:
>>>>
>>>>
>>>>
>>>> On 6/11/24 12:43 PM, Dongliang Mu wrote:
>>>>> Update to commit 42fb9cfd5b18 ("Documentation: dev-tools:
>>>>> Add link to RV docs")
>>>>>
>>>>> Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
>>>>> ---
>>>>>  Documentation/translations/zh_CN/dev-tools/testing-overview.rst | 2 ++
>>>>>  1 file changed, 2 insertions(+)
>>>>>
>>>>> diff --git a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>>>> index c91f9b60f9f1..d89d0ec1d4cc 100644
>>>>> --- a/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>>>> +++ b/Documentation/translations/zh_CN/dev-tools/testing-overview.rst
>>>>> @@ -99,6 +99,8 @@ Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每
>>>>>    参阅 Documentation/dev-tools/kfence.rst
>>>>>  * lockdep是一个锁定正确性检测器。参阅
>>>>>    Documentation/locking/lockdep-design.rst
>>>>> +* Runtime Verification (RV) 支持检查给定子系统的特定行为。参阅
>>>>
>>>> Why not translate the words 'Runtime Verification' here?
>>>
>>> If you translate it into "动态确认", this sounds like a very general term.
>>> So I keep the original English.
>>
>> Runtime is often translated as '运行时', so could be ‘运行时确认’
> 
> How about 运行时确认(Runtime Verification)?

That's fine.

Reviewed-by: Alex Shi <alexs@kernel.org>

> 
>>
>>>
>>>>
>>>> Thanks!
>>>> Alex
>>>>> +  Documentation/trace/rv/runtime-verification.rst。
>>>>>  * 除此以外,在内核中还有一些其它的调试工具,大多数能在
>>>>>    lib/Kconfig.debug 中找到。
>>>>>
>>>>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-06-12  8:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11  4:43 [PATCH] docs/zh_CN: Update the translation of dev-tools/testing-overview Dongliang Mu
2024-06-11  6:06 ` Alex Shi
2024-06-11  6:50   ` Dongliang Mu
2024-06-12  1:36     ` Alex Shi
2024-06-12  1:54       ` Dongliang Mu
2024-06-12  8:03         ` Alex Shi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox