This commit is contained in:
psyc://psyced.org/~lynX 2009-12-31 19:28:27 +01:00
parent b00a28cbfa
commit 7c9a7e82dd
4 changed files with 17 additions and 2 deletions

View File

@ -551,6 +551,9 @@ _request_description
_request_open_page
|Bitte folgende Seite aufrufen: [_page]
_request_open_page_login
|Bitte öffne [_page_login] um einzuloggen.
_request_open_page_edit
|Zur Bearbeitung der Einstellungen bitte folgende Seite aufrufen:
|[_page_edit]

View File

@ -1,6 +1,18 @@
<PSYC:TEXTDB> ## vim:syntax=mail
## Check utf-8: Praise Atatürk!
_failure_unavailable_state
|State module is not available as yet.
_failure_unknown_glyph
|Unknown modifier glyph encountered.
_error_illegal_protocol_variable
|You are not allowed to present a variable named [_variable_name].
_error_type_degree
|Your value for variable [_variable] does not qualify for a degree.
_error_necessary_nick_local
|This command only accepts local nicknames.

View File

@ -70,7 +70,7 @@ int msg(string source, string method, string data,
return ::msg(source, method, data, vars, showingLog, target);
#else // }}}
{
P2(("%O ist nicht interactive\n", ME))
P2(("%O is not interactive (no network connection)\n", ME))
if (!member(vars, "_source"))
vars["_source"] = UNIFORM(source);
// this stuff is causing loops and i don't know how to fix it right now

View File

@ -28,7 +28,7 @@ parse(string body, mapping headers) {
P4((body))
//#endif
unless (pointerp(wurst = parse_json(body))) {
monitor_report("_failure_network_fetch_twitter_empty",
monitor_report("_failure_network_fetch_twitter_broken",
"[_source] failed to parse its timeline");
return;
}