From d9eed092cf87ce5b3b54032bf2bea8dc30d2e39c Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 18 Jan 2019 09:05:14 +0000 Subject: [PATCH] common: Mark an error message as translatable All the other error messages in that file are. Signed-off-by: Philip Withnall Closes: #2609 Approved by: matthiasclasen --- common/flatpak-run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/flatpak-run.c b/common/flatpak-run.c index e2b851a7..866a10f8 100644 --- a/common/flatpak-run.c +++ b/common/flatpak-run.c @@ -2723,7 +2723,7 @@ forward_file (XdpDbusDocuments *documents, fd = open (file, O_PATH | O_CLOEXEC); if (fd == -1) - return flatpak_fail (error, "Failed to open '%s'", file); + return flatpak_fail (error, _("Failed to open ā€˜%s’"), file); fd_list = g_unix_fd_list_new (); fd_id = g_unix_fd_list_append (fd_list, fd, error);