summary refs log tree commit diff stats
path: root/po/cs.po
AgeCommit message (Collapse)Author
2013-03-29Update translationsBerke Viktor
2012-11-11Update translationsBerke Viktor
2012-11-10Update translationsBerke Viktor
2012-11-10Update translationsBerke Viktor
2012-11-04Update translationsBerke Viktor
2012-11-04Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-10-31Update translationsBerke Viktor
2012-10-30Update translation filesBerke Viktor
2012-10-30Update translationsBerke Viktor
2012-10-28Update translationsBerke Viktor
2012-10-25Update translationsBerke Viktor
2012-10-22Update translationsBerke Viktor
2012-10-22Update translationsBerke Viktor
2012-10-20Update translationsBerke Viktor
2012-10-20Finally, update translation files from TransifexBerke Viktor
2012-10-19Regenerate L10n once moar (last time I hope)Berke Viktor
2012-10-19Remove L10n test string from translations tooBerke Viktor
2012-10-19Replace email addressBerke Viktor
2012-10-19Update test strings in repoBerke Viktor
2012-10-19Add Transifex config and update translations from the online resourceBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-15Huge commit is huge - update translationsBerke Viktor
2012-07-18Replace hardcoded "XChat:" strings in translationsBerke Viktor
2011-02-24add xchat r1489berkeviktor@aol.com
s for loading/unloading individual scripts, and gives you almost all the features of the C-Plugin API. Perl Scripts: ~~~~~~~~~~~~~ Perl 5.8 or newer is required. The documentation can be found here: https://github.com/hexchat/hexchat/wiki/Perl-Interface Scripts for XChat 1.8.x are compatible with the following exceptions: * IRC::command will not interpret %C, %B, %U etc. * user_list and user_list_short: If a user has both op and voice, only the op flag will be 1. * add_user_list/sub_user_list/clear_user_list These functions do nothing. * notify_list Not implemented. Always returns an empty list. * server_list Lists servers that are not connected aswell. * Some print events may have new names and some were added. * Text printed by scripts must now be UTF8. * Text passed to scripts (via add_message_handler) will be encoded in UTF8. Autoloading Scripts and Plugins: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The root of your HexChat config is: * Windows: %APPDATA%\HexChat * Unix: ~/.config/hexchat Referred to as <config> from now. HexChat automatically loads, at startup: * <config>/addons/*.lua Lua scripts * <config>/addons/*.pl Perl scripts * <config>/addons/*.py Python scripts * <config>/addons/*.tcl Tcl scripts * <config>/addons/*.dll Plugins (Windows) * <config>/addons/*.so Plugins (Unix) Control Codes: ~~~~~~~~~~~~~~ %% - A single percentage sign %C - Control-C (mIRC color code) %B - Bold Text %U - Underline Text %R - Reverse Text %O - Reset all Text attributes %XXX - ASCII XXX (where XXX is a decimal 3 digit number) (Eg: %007 sends a BEEP) %Cforeground,background will produce a color code, eg: %C03,10 These are now disabled by default (see Settings > Prefs > Input Box). Instead you can insert the real codes via ctrl-k, ctrl-b and ctrl-o.