diff options
author | Zach Copley <zach@status.net> | 2010-01-28 01:39:18 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-28 01:39:18 +0000 |
commit | 5182cc686dacfcf64130b591a3b7ded8d4a0c9dc (patch) | |
tree | ed9e9ab65b4f1bd3d13c68ba2ee2a08c6520cdd1 /actions/apioauthauthorize.php | |
parent | f296f04abdc545f03daf55676282a2ae7108f79e (diff) |
Numbered format specifiers
Diffstat (limited to 'actions/apioauthauthorize.php')
-rw-r--r-- | actions/apioauthauthorize.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index fa074c4e7..15c3a9dad 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -303,8 +303,9 @@ class ApiOauthAuthorizeAction extends ApiOauthAction $access = ($this->app->access_type & Oauth_application::$writeAccess) ? 'access and update' : 'access'; - $msg = _("The application <strong>%s</strong> by <strong>%s</strong> would like " . - "the ability to <strong>%s</strong> your account data."); + $msg = _('The application <strong>%1$s</strong> by ' . + '<strong>%2$s</strong> would like the ability ' . + 'to <strong>%3$s</strong> your account data.'); $this->raw(sprintf($msg, $this->app->name, |