你好,
我刚才在检查大写字母的错误使用情况。特别是,我知道翻译人员有时不小心将“LORD”写成了 \nd Lord\nd*。但令我惊讶的是,Run Basic Checks…>Capitalization(运行基本检查…> 大小写)并没有捕捉到全大写字母的情况。
这个正则表达式可以查找任何两个相邻的大写字母,但也会返回很多噪音。例如,书名缩写、语言代码和图片文件名。
regex:\w*[A-ZĆÄÏÜ]\w*[A-ZĆÄÏÜ]\w
(对于不熟悉正则表达式的人,[A-ZĆÄÏÜ] 表示从 A 到 Z 的任何字符,或者特殊字符 Ć、Ä、Ï 和 Ü 中的任何一个——仅限大写)
我寻找更改大小写规则的地方,但只能找到批准或拒绝混合大小写单词的地方(全大写字母单词不会出现在那里)。
我还搜索了 Paratext 帮助文件和这个论坛,但找不到任何相关信息。
目前有没有简单的方法来查找全大写字母单词?如果没有,能否添加此功能?也许这可以显示在混合大小写搜索结果中,尽管它们在技术上都是全大写。或者,也许最好让它们有自己的类别。
非常感谢!
Hello,
I was just checking for incorrect use of capitalization. In particular, I know that the translators have sometimes accidentally written “LORD” instead of \nd Lord\nd*. But I was surprised that Run Basic Checks…>Capitalization didn’t catch instances of all caps.
This regex will find any two adjacent capital letters, but also returns a lot of noise. For example, book name abbrevations, language codes, and image file names.
regex:\w*[A-ZĆÄÏÜ]\w*[A-ZĆÄÏÜ]\w
(for the regex-uninitiated, [A-ZĆÄÏÜ] means any character from A to Z, or any of the special characters Ć, Ä, Ï, and Ü- upercase only)
I looked for places to change the capitalization rules but could only find a place to approve or disaprove words with mixed capitalization (in which words in ALL CAPS do not appear).
I also searched the Paratext help files and this forum, but couldn’t find any information.
Is there currently an easy way to find words in ALL CAPS? If not, could the functionality be added? Perhaps this could show up in the mixed caps search results, even though they are technically all-caps. Or, maybe it would be better for them to have their own category.
Thanks so much!
机器翻译自 English