NOT USED LANG KEYS (this is the how i did, so if anyone finds a flaw in the way, he can fix it. the list i found out is under this explanation).
First: we get all the disctinct keys on the file zzzzuniquekeys (from all files, because maybe there are old keys in some languages, and not in english) cat `ls lang/lang* | grep -v "\."` | tr '\t' ' ' | cut -f 1 -d ' ' | sort | uniq > zzzzuniquekeys Second: we get every used key on the file zzzzusedkeys grep -re "\[trans\ *" *tcl */*tcl */*/*tcl */*/*/*tcl */*/*/*/*tcl */*/*/*/*/*tcl */*/*/*/*/*/*tcl >& zzzzusedkeys Third: we check every key, those not appearing in the way: [trans KEYNAME* will be written to zzzznonusedkeys echo > zzzznonusedkeys;for x in `cat zzzzuniquekeys`;do grep -e "\[trans $x" zzzzusedkeys > /dev/null || echo $x >> zzzznonusedkeys;done And here is the list i get. Someone just may check them before removing (maybe someone cutted a [trans KEY into several lines and i'm getting false positives. Oh, and the amsn_lang_version SHOULDN'T be removed (don't know if any other :P): acceptfile activeautoupdate allowbadwords amsn_lang_version animatedemoticon animatenotify askprofile autocheckver autohotmaillog autoidle awaymsg1 awaymsg2 blankdirect blocking blockmessage cantremoveothers changecustomstate changedateformat charscounter chatack checkemail choosefontcolor clientcaps convertexplain cprofile dcprofile defchatwinsize disabled disableprofiles disableuserfonts displaychat displayp4context editvalue emailsinlist enablebanner enabled enableproxy extras getdisppic globalcontainer globaloverride groupoldname handle hiden installconvert ipdetect keepalive lazypicretrieval leaveblankforhotmail leavejoinsinchat lineflushlog maximised mynick natip natkeepalive new_ft_protocol nodataavailable nogap noneavailable notificationserver notify1 notify1_5 notify1_75 notify2 notify3 notify4 notifyoffset notifytimeout notifytyping nousersinsession p4contextprefix playing preflibs prefproxy prefshared prefsound profiles proxyconf proxyconfhttp recentmsg removeempty savechatwinsize selectplugins showbanner showpicnotify sngdblclick soundactive soundcommand splashstart startoffline startoffline2 startontray storenickname strictfonts tabtitlenick timestamps tlsexplain tooltips totalsize truncatenames1 truncatenames2 truncatenicks updateonlycurrentlanguage wintitlenick xmmscurrent xmmserr xmmssend xoffset yoffset yousay -- Lz ([EMAIL PROTECTED]). http://elezeta.bounceme.net ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_idv37&alloc_id865&op=click _______________________________________________ Amsn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amsn-devel
