[libcalamares] Fix untranslatable string.
- This would substitue an untranslated "in chroot" into the translated string, which is weird.
This commit is contained in:
parent
6055f08aff
commit
b587d77e31
@ -48,10 +48,8 @@ ProcessJob::~ProcessJob()
|
|||||||
QString
|
QString
|
||||||
ProcessJob::prettyName() const
|
ProcessJob::prettyName() const
|
||||||
{
|
{
|
||||||
//TODO: show something more meaningful
|
return ( m_runInChroot ? tr( "Run command '%1' in target system." ) : tr( " Run command '%1'." ) )
|
||||||
return tr( "Run command %1 %2" )
|
.arg( m_command );
|
||||||
.arg( m_command )
|
|
||||||
.arg( m_runInChroot ? "in chroot." : " ." );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user