diff --git a/public/translate/cn/translate.js b/public/translate/cn/translate.js index 891ef1d722..50b0e28f32 100644 --- a/public/translate/cn/translate.js +++ b/public/translate/cn/translate.js @@ -40,11 +40,17 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true'; case 'H5': case 'H6': case 'HEADER': - case 'LI': if (processBlock(node)) { i++; } break; + case 'LI': + if($(node).find('p').length <= 1){ + if (processBlock(node)) { + i++; + } + } + break; case 'TD': case 'TH': processContainer(node); @@ -54,11 +60,11 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true'; if (node.children.length > 0) { processContainer(node); // For
...