diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-02-10 18:22:13 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-02-10 18:22:13 +0100 |
commit | 1479b0109f3cad7d0ff1687e49ba142734c42fbc (patch) | |
tree | ad9f5080197c7066b85fdc25ecfddf8071764188 /src | |
parent | 7eb4eca001ab1528ea369299360044ca4d82907a (diff) | |
download | net_monitor-1479b0109f3cad7d0ff1687e49ba142734c42fbc.tar net_monitor-1479b0109f3cad7d0ff1687e49ba142734c42fbc.tar.gz net_monitor-1479b0109f3cad7d0ff1687e49ba142734c42fbc.tar.bz2 net_monitor-1479b0109f3cad7d0ff1687e49ba142734c42fbc.tar.xz net_monitor-1479b0109f3cad7d0ff1687e49ba142734c42fbc.zip |
fix missing interface name in message
Diffstat (limited to 'src')
-rwxr-xr-x | src/net_monitor | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_monitor b/src/net_monitor index 9ab770b..b8903a1 100755 --- a/src/net_monitor +++ b/src/net_monitor @@ -542,7 +542,7 @@ class MonitorGui: vbox.pack_start(button, False, False, 0) button.join_group(first_button) else: - label = Gtk.Label(label=_("Network accounting was not enabled on interface %s.\nPlease enable network accounting on the interface in order to view traffic statistics and restart your network connection to start collecting traffic statistics.")) + label = Gtk.Label(label=_("Network accounting was not enabled on interface %s.\nPlease enable network accounting on the interface in order to view traffic statistics and restart your network connection to start collecting traffic statistics.") % iface) stats_vbox.add(label) stats_vbox.show_all() |