]> granicus.if.org Git - neomutt/commitdiff
I18N: No need to translate "%s: %s"
authorReis Radomil <reisradomil@fake-box.com>
Sun, 22 Apr 2018 04:15:59 +0000 (04:15 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 24 Apr 2018 20:27:55 +0000 (21:27 +0100)
mutt_lua.c

index 15dd46a477437125a59318100e7913ec3c7756eb..a78b590b5c26530446461dc7ab2f64baea21ccd1 100644 (file)
@@ -396,7 +396,7 @@ int mutt_lua_parse(struct Buffer *tmp, struct Buffer *s, unsigned long data, str
   if (luaL_dostring(Lua, s->dptr))
   {
     mutt_debug(2, " * %s -> failure\n", s->dptr);
-    snprintf(err->data, err->dsize, _("%s: %s"), s->dptr, lua_tostring(Lua, -1));
+    snprintf(err->data, err->dsize, "%s: %s", s->dptr, lua_tostring(Lua, -1));
     /* pop error message from the stack */
     lua_pop(Lua, 1);
     return -1;