summaryrefslogtreecommitdiffstats
path: root/kate/part
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2024-05-26 13:11:38 +0300
committerMavridis Philippe <mavridisf@gmail.com>2024-05-26 13:11:38 +0300
commit95dfecf29575660a2c652b8e3e7055e199ca635a (patch)
tree3a3f7591270fc8fb8441469fdff73389c73646b1 /kate/part
parentdd5ee318c3426dacb09300c86621a1256fd7a523 (diff)
downloadtdelibs-95dfecf29575660a2c652b8e3e7055e199ca635a.tar.gz
tdelibs-95dfecf29575660a2c652b8e3e7055e199ca635a.zip
Kate: use paths for local files in modified on disk dialog
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'kate/part')
-rw-r--r--kate/part/katedocument.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kate/part/katedocument.cpp b/kate/part/katedocument.cpp
index 4118cb7ef..a125c2c85 100644
--- a/kate/part/katedocument.cpp
+++ b/kate/part/katedocument.cpp
@@ -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();