Merge "i18n: add missing translation markers"

This commit is contained in:
Zuul 2024-09-21 19:42:48 +00:00 committed by Gerrit Code Review
commit 3abf7309a1

View File

@ -1032,7 +1032,7 @@ class SetLSwitchPortToVirtualTypeCommand(command.BaseCommand):
except idlutils.RowNotFound:
if self.if_exists:
return
msg = "Logical Switch Port %s does not exist" % self.lport
msg = _("Logical Switch Port %s does not exist") % self.lport
raise RuntimeError(msg)
options = lsp.options
@ -1063,7 +1063,7 @@ class UnsetLSwitchPortToVirtualTypeCommand(command.BaseCommand):
except idlutils.RowNotFound:
if self.if_exists:
return
msg = "Logical Switch Port %s does not exist" % self.lport
msg = _("Logical Switch Port %s does not exist") % self.lport
raise RuntimeError(msg)
options = lsp.options