blob: 46acaa6e7ad717581ccce0f49656b542e930c20a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- menuburn.c 2006-09-16 20:33:36.000000000 +0200
+++ menuburn.c.patched 2007-01-03 13:37:41.000000000 +0100
@@ -2,7 +2,7 @@
* See the files COPYING and README for copyright information and how to reach
* the author.
*
- * $Id: menuburn.diff,v 1.1 2007/05/07 10:26:31 hd_brummy Exp $
+ * $Id: menuburn.diff,v 1.1 2007/05/07 10:26:31 hd_brummy Exp $
*/
#include "common.h"
@@ -226,7 +226,7 @@
{
const recording_list& recordings( job_.get_recordings() );
if ( recordings.size() > 0 )
- return str( boost::format( tr("Recordings: %1$d, total size: %2$.1f MB") )
+ return str( boost::format( tr("$Recordings: %1$d, total size: %2$.1f MB") )
% recordings.size() % ( double( job_.get_tracks_size() ) / MEGABYTE(1) ) );
else
return tr("No recordings marked for burning");
@@ -566,7 +566,7 @@
int percent;
if (manager::get_active()->get_is_burning(percent))
- Add( new menu::text_item( str( boost::format( tr("Job active (Writing: %1$d%%)") ) % percent ) ) );
+ Add( new menu::text_item( str( boost::format( tr("$Job active (Writing: %1$d%%)") ) % percent ) ) );
else
Add(new menu::text_item(tr("Job active (Converting)")));
|