summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Miranda <andreldm@xfce.org>2020-05-06 21:20:30 -0300
committerAndre Miranda <andreldm@xfce.org>2020-05-06 21:20:30 -0300
commita240092b8f8fc93fe5acc7b49f47383b09414d30 (patch)
treeaf1264f3636e8f58ab57f5aa0ca4be0289358133
parent626496e731a4c28bd37fcba5359653c14abb7a23 (diff)
downloadthunar-a240092b8f8fc93fe5acc7b49f47383b09414d30.tar.gz
Fix message punctuation (Bug #16783)
-rw-r--r--thunar/thunar-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
index f4dc6847..7c421cf6 100644
--- a/thunar/thunar-window.c
+++ b/thunar/thunar-window.c
@@ -879,7 +879,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
gtk_widget_show (infobar);
/* add the label with the root warning */
- label = gtk_label_new (_("Warning, you are using the root account, you may harm your system."));
+ label = gtk_label_new (_("Warning: you are using the root account. You may harm your system."));
gtk_container_add (GTK_CONTAINER (gtk_info_bar_get_content_area (GTK_INFO_BAR (infobar))), label);
gtk_widget_show (label);
}