From 7c744c1c323cc678bddb02c574730a23b10a6da0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 28 Jul 2014 11:35:50 +0300 Subject: Extend checking last char in po files. Add checking for ### in po files. --- src/rules/po.cpp | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/rules/po.cpp b/src/rules/po.cpp index 0aab5c5..fadc650 100644 --- a/src/rules/po.cpp +++ b/src/rules/po.cpp @@ -63,11 +63,33 @@ static void processMessage(RuleBase *const rule) if (findCutLast(name, "po/ar.po") || findCutLast(name, "po/fa.po")) return; - if (cId == '.' || cId == ',' ||cId == '!' || cId == '?' || cId == '-') + if (cId == '.' || cId == ',' || cId == '!' || cId == '?' || cId == '-' + || cId == ':' || cId == ';' || cId == '+' || cId == '|' + || cId == ' ') { if (cId != cStr) rule->print("Wrong character at end of translation line."); } + if (msgId.find("###") != std::string::npos + && msgStr.find("###") == std::string::npos) + { + rule->print("Missing ### in translation."); + } +/* + if (msgId.find("\\n") != std::string::npos) + { + if (!findCutLast(name, "help/zh_CN.po")) + { + if (msgStr.find("\\n") == std::string::npos) + rule->print("Missing \\n in translation."); + } + } + else + { + if (msgStr.find("\\n") != std::string::npos) + rule->print("Useless \\n in translation."); + } +*/ } } -- cgit v1.2.3-70-g09d2