From 9772330eb6c605342a1703db5da7821997b01c59 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Wed, 2 Jul 2008 01:58:38 +0000 Subject: [PATCH] Pass AtomPub disabled messaged through translation. props josephscott. see #7157 git-svn-id: http://svn.automattic.com/wordpress/trunk@8234 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-app.php b/wp-app.php index 35fff3a27..26b8a96e2 100644 --- a/wp-app.php +++ b/wp-app.php @@ -197,7 +197,7 @@ class AtomServer { // check to see if AtomPub is enabled if( !get_option( 'enable_app' ) ) - $this->not_allowed( 'AtomPub services are disabled on this blog. An admin user can enable them at ' . admin_url('options-writing.php') ); + $this->not_allowed( sprintf( __( 'AtomPub services are disabled on this blog. An admin user can enable them at %s' ), admin_url('options-writing.php') ) ); // dispatch foreach($this->selectors as $regex => $funcs) {