From bbea9a875cd3b9fc4080c53bd8c921b8ce3dfeaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Mesk=C3=B3?= Date: Fri, 21 Feb 2020 21:21:24 +0100 Subject: [PATCH] Typos in a localizable string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed the following: - missing variable - typo in the word „existing” - ending comma for consistency --- subiquity/models/filesystem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subiquity/models/filesystem.py b/subiquity/models/filesystem.py index 82bb4291..8b306577 100644 --- a/subiquity/models/filesystem.py +++ b/subiquity/models/filesystem.py @@ -419,8 +419,8 @@ def _generic_can_REMOVE(obj): if cd is None: return False if cd.preserve: - return _("Cannot remove selflabel from pre-exsting {cdtype} " - "{cdlabel}").format( + return _("Cannot remove {selflabel} from pre-existing {cdtype} " + "{cdlabel}.").format( selflabel=obj.label, cdtype=cd.desc(), cdlabel=cd.label)