From 6ec2c8cee8c32a798e47b5ae5f1a659872f2e3e5 Mon Sep 17 00:00:00 2001
From: Kirill Volinsky <mataes2007@gmail.com>
Date: Fri, 11 Apr 2014 06:18:44 +0000
Subject: Some langpack generation improvements (thx Basil)

git-svn-id: http://svn.miranda-ng.org/main/trunk@8943 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 tools/lpgen/lpgen.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js
index e4ec6307d7..65f579ad3f 100644
--- a/tools/lpgen/lpgen.js
+++ b/tools/lpgen/lpgen.js
@@ -419,7 +419,7 @@ function ParseRCFile(FileTextVar,array) {
  //now make a job, till end of matching regexp
  while ((string = find.exec(FileTextVar)) != null) {
       // check for some garbage like "List1","Tab1" etc. in *.rc files, we do not need this.
-      onestring=string[2].replace(/^(((List|Tab|Tree|Spin|Custom|Slider|DateTimePicker|Radio|Check|HotKey|Progress)\d)|(whiterect|IndSndList|&?[Oo][Kk])|(%.(.*%)?))$/g,"");
+      onestring=string[2].replace(/^(((List|Tab|Tree|Spin|Custom|Slider|DateTimePicker|Radio|Check|HotKey|Progress)\d)|(whiterect|IndSndList|&?[Oo][Kk]|ICQ|Jabber|&\w)|(%.(.*%)?))$/g,"");
 	  // ignore some popup menu craps
 	  if (string[1]=="POPUP" && onestring.match(/^([a-zA-Z ]*(menu|context|popup))|([A-Z][a-z]+([A-Z][a-z]*)+)|(new item)$/g))
 		continue;
@@ -462,8 +462,8 @@ function ParseSourceFile (FileTextVar,array) {
 
 //filter _T() function results
 function filter_T(string) {
-//filter not begin with symbols :.]?;#~{!/_+$
-//var filter1=/^[^\:\]\?\;\#\~\|\{\!\/\_\+\\$].+$/g;
+//filter for exact matched strings
+var filter1=/^(&?[Oo][Kk]|ICQ|Jabber)$/g;
 //filter string starting from following words
 var filter2=/^(SOFTWARE\\|SYSTEM\\|http|ftp|UTF-|utf-|TEXT|EXE|exe|txt|css|html|dat[^a]|txt|MS\x20|CLVM|TM_|CLCB|CLSID|CLUI|HKEY_|MButton|BUTTON|WindowClass|MHeader|RichEdit|RICHEDIT|STATIC|EDIT|CList|listbox|LISTBOX|combobox|COMBOBOX|TitleB|std\w|iso-|windows-|<div|<html|<img|<span|<hr|<a\x20|<table|<td|miranda_|kernel32|user32|muc|pubsub|shlwapi|Tahoma|NBRichEdit|CreatePopup|&?[Oo][Kk]|<\/|<\w>|\w\\\w|urn\:|<\?xml|<\!|h\d|\.!\.).*$/g;
 //filter string ending with following words
@@ -474,7 +474,7 @@ var filter4=/^((d\s\w)|\[\/?(\w|url|img|size|quote|color)(=\w*)?\]?|(\\\w)|(%\w+
 var filter5=/^[\w_:%.\\\/*-]+\.\w+$/g;
 
 //apply filters to our string
-//test1=filter1.test(string);
+test1=filter1.test(string);
 test2=filter2.test(string);
 test3=filter3.test(string);
 test4=filter4.test(string);
@@ -482,7 +482,7 @@ test5=filter5.test(string);
 
 //if match (test1) first filter and NOT match other tests, thus string are good, return this string back.
 //if (test1 && !test2 && !test3 && !test4 && !test5) {
-if (!test2 && !test3 && !test4 && !test5) {
+if (!test1 && !test2 && !test3 && !test4 && !test5) {
     return string;
     } else {
         //in other case, string is a garbage, put into crap array.
-- 
cgit v1.2.3