From 2c850fabd9780b8fc9f676894bf8127807e96fbf Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Fri, 29 Mar 2013 22:03:10 +0100 Subject: [PATCH] rygel: Show warning on missing config --- src/rygel/rygel-user-config.vala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rygel/rygel-user-config.vala b/src/rygel/rygel-user-config.vala index c39fbe8..aa2e101 100644 --- a/src/rygel/rygel-user-config.vala +++ b/src/rygel/rygel-user-config.vala @@ -236,7 +236,9 @@ public class Rygel.UserConfig : GLib.Object, Configuration { debug ("Loaded user configuration from file '%s'", local_path); } catch (Error error) { - debug ("Failed to load user configuration from file '%s': %s", + /// TRANSLATORS: First %s is the file's path, second is the error + // message + warning _("Failed to load user configuration from file '%s': %s", local_path, error.message); this.key_file = new KeyFile (); -- 2.7.4