From e0f5b26bc17212915d82bfd5f98380d250b98406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Dr=C4=85g?= Date: Thu, 18 Jan 2018 22:27:06 +0100 Subject: [PATCH] Fix typos in translatable strings added in the last commit --- gxml/GomElement.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gxml/GomElement.vala b/gxml/GomElement.vala index f01a6d64..3fd3f7af 100644 --- a/gxml/GomElement.vala +++ b/gxml/GomElement.vala @@ -444,7 +444,7 @@ public class GXml.GomElement : GomNode, unset (name); long i = index_of (name); if (i < 0) { - warning (_("No index found for ttribute %s").printf (name)); + warning (_("No index found for attribute %s").printf (name)); } else { order.unset (i); } @@ -462,7 +462,7 @@ public class GXml.GomElement : GomNode, unset (k); long i = index_of (k); if (i < 0) { - warning (_("No index found for ttribute %s").printf (k)); + warning (_("No index found for attribute %s").printf (k)); } else { order.unset (i); } -- GitLab