diff options
| -rw-r--r-- | tools/lpgen/lpgen.js | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js index 4f00affd92..faf1face8c 100644 --- a/tools/lpgen/lpgen.js +++ b/tools/lpgen/lpgen.js @@ -430,7 +430,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]|Google|ICQ|Jabber|Miranda|Miranda NG|OSD|SMS|WhatsApp|Windows|x64|x86|&\w)|(%.(.*%)?))$/g,"");
 +      onestring=string[2].replace(/^(((List|Tab|Tree|Spin|Custom|Slider|DateTimePicker|Radio|Check|HotKey|Progress)\d)|(whiterect|IndSndList|&?[Oo][Kk]|Google|ICQ|Jabber|Miranda|Miranda NG|OSD|SMS|Twitter|WhatsApp|Windows|x64|x86|&\w)|(%.(.*%)?))$/g,"");
        // ignore some popup menu craps
        if (string[1]=="POPUP" && onestring.match(/^([a-zA-Z ]*(menu|context|popup(?!s)))|([A-Z][a-z]+([A-Z][a-z]*)+)|(new item)$/g))
          continue;
 @@ -476,7 +476,7 @@ function ParseSourceFile (FileTextVar,array) {  //filter _T() function results
  function filter_T(string) {
  //filter for exact matched strings
 -var filter1=/^(&?[Oo][Kk]|Google|ICQ|Jabber|Miranda|Miranda NG|OSD|SMS|WhatsApp|Windows|x64|x86)$/g;
 +var filter1=/^(&?[Oo][Kk]|Google|ICQ|Jabber|Miranda|Miranda NG|OSD|SMS|Twitter|WhatsApp|Windows|x64|x86)$/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
  | 
