From 13bfea6aff1ffed3aa172b5e7ae5540b7e2c3a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 28 Jan 2024 21:11:46 +0100 Subject: Fix invalid escape sequences. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- mountconfig/mountconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mountconfig/mountconfig.py') diff --git a/mountconfig/mountconfig.py b/mountconfig/mountconfig.py index 260f215..eb28cae 100755 --- a/mountconfig/mountconfig.py +++ b/mountconfig/mountconfig.py @@ -2617,7 +2617,7 @@ class MountEntryDialog(KDialogBase): and not os.path.isfile(self.currentMountEntry.getMountPoint()) and not self.currentMountEntry.mounttype == 'swap'): ask = KMessageBox.warningYesNoCancel(self, - i18n("""The mountpoint '%1' does not exist. You will not be able to enable it until it is created.\ + i18n("""The mountpoint '%1' does not exist. You will not be able to enable it until it is created.\ \nShould I create the mountpoint?""").arg(self.currentMountEntry.getMountPoint()), i18n("Mountpoint does not exist")) if ask==KMessageBox.Cancel: @@ -2626,7 +2626,7 @@ class MountEntryDialog(KDialogBase): os.mkdir(self.currentMountEntry.getMountPoint()) elif os.path.isfile(self.currentMountEntry.getMountPoint()): if KMessageBox.warningContinueCancel(self, - i18n("""The mountpoint '%1' is a file, but it has to be a directory. You will probably not \ + i18n("""The mountpoint '%1' is a file, but it has to be a directory. You will probably not \ be able to enable it.\nContinue?""").arg(self.currentMountEntry.getMountPoint()), i18n("Invalid mountpoint"))!=KMessageBox.Continue: return -- cgit v1.2.1