Kate: use paths for local files in modified on disk dialog

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
pull/284/head
Mavridis Philippe 4 weeks ago
parent dd5ee318c3
commit 95dfecf295
No known key found for this signature in database
GPG Key ID: F8D2D7E2F989A494

@ -4978,13 +4978,13 @@ TQString KateDocument::reasonedMOHString() const
switch( m_modOnHdReason )
{
case 1:
return i18n("The file '%1' was modified by another program.").arg( url().prettyURL() );
return i18n("The file '%1' was modified by another program.").arg( url().pathOrURL() );
break;
case 2:
return i18n("The file '%1' was created by another program.").arg( url().prettyURL() );
return i18n("The file '%1' was created by another program.").arg( url().pathOrURL() );
break;
case 3:
return i18n("The file '%1' was deleted by another program.").arg( url().prettyURL() );
return i18n("The file '%1' was deleted by another program.").arg( url().pathOrURL() );
break;
default:
return TQString();

Loading…
Cancel
Save