Paratext 中的注释按线程 ID 分组(即 <Comment Thread="{ID}"...>)。然后按日期排序。如果线程中的最后一条注释(排序后)的状态为“已删除”(即 <Status>deleted</Status>),则该线程被视为已解决。然而,由于一个线程可能跨越多个用户(即每个用户的注释都在其自己的文件中),这使得情况变得复杂。您需要找到所有用户文件中属于该线程的所有注释,按日期对它们进行排序,并查看最后一条指定了状态的注释,才能知道该线程是否真正已解决。
The notes in Paratext are grouped by their thread ID (i.e. <Comment Thread="{ID}"...>). They are then ordered by the date. If the last comment in the thread (after being sorted) has a status of "deleted" (i.e. <Status>deleted</Status>), then the thread is considered resolved. However, this is complicated by the fact that a thread can span multiple users (i.e. each user's comment is in their own file), so you would need to find all the comments for a thread across all user files, sort them all by date, and look at the last comment that has a status specified to know if a thread is actually resolved.
机器翻译自 English