Modified: trunk/htdocs/system/plugins/flickrsilo/flickrsilo.plugin.php (4622 => 4623)
--- trunk/htdocs/system/plugins/flickrsilo/flickrsilo.plugin.php 2010-11-24 20:08:12 UTC (rev 4622)
+++ trunk/htdocs/system/plugins/flickrsilo/flickrsilo.plugin.php 2010-11-25 09:19:41 UTC (rev 4623)
@@ -836,7 +836,7 @@
$flickr = new Flickr();
if ( !isset( $_SESSION['flickr_frob'] ) ){
$auth_url = URL::get( 'admin', array( 'page' => 'plugins', 'configure' => $this->plugin_id(), 'configaction' => 'authorize' ) ) . '#plugin_options';
- echo '<p>' . _t( 'Either you have already authorized Habari to access your flickr account, or you have not yet done so. Please <a href="' . $auth_url . '">try again</a>.' ) . '</p>';
+ echo '<p>' . _t( 'Either you have already authorized Habari to access your flickr account, or you have not yet done so. Please ' ). '<a href="' . $auth_url . '">' . _t( 'try again' ) . '</a></p>';
}
else{
$token = $flickr->getToken( $_SESSION['flickr_frob'] );
@@ -861,7 +861,7 @@
Options::set( 'flickr_token_' . User::identify()->id );
$reauth_url = URL::get( 'admin', array( 'page' => 'plugins', 'configure' => $this->plugin_id(), 'configaction' => 'authorize' ) ) . '#plugin_options';
echo '<p>' . _t( 'The Flickr Silo Plugin authorization has been deleted.' ) . '<p>';
- echo "<p>Do you want to <a href=\"{$reauth_url}\">re-authorize this plugin</a>?<p>";
+ echo '<p>' . _t( 'Do you want to ' ) . "<a href=\"{$reauth_url}\">" . _t( 're-authorize this plugin' ) . "</a>?<p>";
}
/**