Kaydet (Commit) ab2b2971 authored tarafından Caolán McNamara's avatar Caolán McNamara

display amount of *Box elements remaining in .src format

Change-Id: I33614c44cbe58ec0945406691bc38bafafc24923
üst 748ed65f
......@@ -24,5 +24,13 @@ num=$(($dialogs + $tabpages))
echo An estimated additional $num .ui are required
percent=$(($converted * 100 / ($num + $converted)))
echo We are $percent% of the way through.
echo We are $percent% of the way through the .ui conversion.
errorboxes=`git grep -h ErrorBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
infoboxes=`git grep -h InfoBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
queryboxes=`git grep -h QueryBox -- *.src|cut -d' ' -f2- |sort|uniq|wc -l`
echo
echo We need to reduce $errorboxes ErrorBox to basic strings as arguments to MessageDialog
echo We need to reduce $infoboxes InfoBox to basic strings as arguments to MessageDialog
echo We need to reduce $queryboxes QueryBox to basic strings as arguments to MessageDialog
......@@ -78,7 +78,6 @@ InfoBox MSG_ERROR_SEND_MAIL
Message [ en-US ] = "An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\nPlease check the %PRODUCTNAME settings or your e-mail program settings." ;
};
// QueryBoxen ------------------------------------------------------------
QueryBox MSG_QUERY_OPENASTEMPLATE
{
Buttons = WB_YES_NO ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment