pidgin/pidgin

Updated translations from Transifex.
release-2.x.y
2014-02-02, Mark Doliner
c3092cd616f2
Updated translations from Transifex.

Mostly looks like this just removes fuzzies.

Also, I didn't pull in all translations this time around because
it seems like it mostly just removes fuzzies, and I was thinking
it might be useful for them to be there? I don't know. We didn't
seem to gain anything from it so I figured I'd leave them in for
now and translators can have more time to fix. It probably doesn't
matter.
/** @page cmd-signals Command Signals
@signals
@signal cmd-added
@signal cmd-removed
@endsignals
@see cmds.h
@signaldef cmd-added
@signalproto
void (*cmd_added)(const char *command, PurpleCmdPriority priority,
PurpleCmdFlag flag);
@endsignalproto
@signaldesc
Emitted when a new command is added.
@param command The new command.
@param priority The priority of the new command.
@param flag The command flags.
@endsignaldef
@signaldef cmd-removed
@signalproto
void (*cmd_removed)(const char *command);
@endsignalproto
@signaldesc
Emitted when a command is removed.
@param command The removed command.
@endsignaldef
*/