Twitter-compatible API - running all strings through gettext() now

darcs-hash:20080819002903-462f3-94e62891db9b9de049a918034742e545f663e840.gz
This commit is contained in:
zach
2008-08-18 20:29:03 -04:00
parent c2a2da6966
commit d57bc1b8e9
10 changed files with 37 additions and 36 deletions

View File

@@ -245,7 +245,7 @@ class TwitterapiAction extends Action {
$this->init_twitter_atom();
break;
default:
$this->client_error(_('Unsupported type'));
$this->client_error(_('Not a supported data format.'));
break;
}
@@ -266,7 +266,7 @@ class TwitterapiAction extends Action {
$this->end_twitter_rss();
break;
default:
$this->client_error(_('Unsupported type'));
$this->client_error(_('Not a supported data format.'));
break;
}
return;
@@ -351,7 +351,7 @@ class TwitterapiAction extends Action {
$this->show_twitter_json_users($profile_array);
break;
default:
$this->client_error(_('not a supported data format'));
$this->client_error(_('Not a supported data format.'));
return;
}
return;