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

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 95dfecf295)
r14.1.x
Mavridis Philippe 4 months ago
parent 0ec3c25c95
commit 3856007b3b
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