Closed (fixed)
Project:
AJAX Views
Version:
5.x-1.5
Component:
User interface
Priority:
Minor
Category:
Bug report
Assigned:
Reporter:
Created:
22 May 2008 at 08:23 UTC
Updated:
5 Jun 2008 at 17:24 UTC
Sorry for not telling in last report.
The "Loading content for $view->page_title" string is not translatable.
// line 198
$output .= "<div class='$view_css'>";
$output .= theme_image('misc/progress.gif', 'Progress') . " Loading content for $view->page_title";
$output .= "</div>";
should be:
// line 198
$output .= "<div class='$view_css'>";
$output .= theme_image('misc/progress.gif', 'Progress') . " ". t('Loading content for' ) . ' ' . $view->page_title";
$output .= "</div>";
Or maybe better to remove the reference to the page title as it may not be at the end of the text in all languages:
// line 198
$output .= "<div class='$view_css'>";
$output .= theme_image('misc/progress.gif', 'Progress') . " ". t('Loading...' );
$output .= "</div>";
Comments
Comment #1
febbraro commentedGood catch, thanks. I have updated with your 2nd option (not including view title) I found that in quite a few cases the text/wording did not work well with the title, but just never got around to fixing it. I will commit this to CVS but I wont be making a new release right now for this small change I don't think.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.