aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-02-10 18:22:13 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-02-10 18:22:13 +0100
commit1479b0109f3cad7d0ff1687e49ba142734c42fbc (patch)
treead9f5080197c7066b85fdc25ecfddf8071764188 /src
parent7eb4eca001ab1528ea369299360044ca4d82907a (diff)
downloadnet_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-xsrc/net_monitor2
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()