[fsresizer] Fix string error, thanks Lithuanian translators

This commit is contained in:
Adriaan de Groot 2018-10-05 17:22:12 +02:00
parent 1b570477de
commit fc99824c8d

View File

@ -302,7 +302,7 @@ ResizeFSJob::exec()
return Calamares::JobResult::error( return Calamares::JobResult::error(
tr( "Resize Failed" ), tr( "Resize Failed" ),
!m_fsname.isEmpty() ? tr( "The filesystem %1 must be resized, but cannot." ).arg( m_fsname ) !m_fsname.isEmpty() ? tr( "The filesystem %1 must be resized, but cannot." ).arg( m_fsname )
: tr( "The device %11 must be resized, but cannot" ).arg( m_fsname ) ); : tr( "The device %1 must be resized, but cannot" ).arg( m_fsname ) );
return Calamares::JobResult::ok(); return Calamares::JobResult::ok();
} }