diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-19 16:58:12 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-19 16:58:51 +0100 |
commit | a3fd23e755d802affe2212759b9733045f81d061 (patch) | |
tree | 9c6d1194fd6899090b9006630e2e7317effd1723 | |
parent | a6c7678d88cf40df04c18667cb71ab1e228931b3 (diff) | |
download | drakguard-a3fd23e755d802affe2212759b9733045f81d061.tar drakguard-a3fd23e755d802affe2212759b9733045f81d061.tar.gz drakguard-a3fd23e755d802affe2212759b9733045f81d061.tar.bz2 drakguard-a3fd23e755d802affe2212759b9733045f81d061.tar.xz drakguard-a3fd23e755d802affe2212759b9733045f81d061.zip |
force label wrapping (mga#12359)
it would have been better to split into two messages rather than using
"\n" in the first place as translators not always keep it...
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | bin/drakguard | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- force label wrapping (mga#12358) + 1.0 - switch from gtk2 to gtk3 - translations updates diff --git a/bin/drakguard b/bin/drakguard index a4e87a0..759a60c 100755 --- a/bin/drakguard +++ b/bin/drakguard @@ -144,7 +144,7 @@ gtkadd($w->{window}, 1, gtknew('Notebook', children => [ gtknew('Label', text => N("Configuration")), gtknew('VBox', spacing => 5, border_width => 5, children => [ - 0, gtknew('Label', text => N("This tool allows to configure parental control.\nIt can block access to web sites and restrict connection during a specified timeframe.")), + 0, gtknew('WrappedLabel', text => N("This tool allows to configure parental control.\nIt can block access to web sites and restrict connection during a specified timeframe.")), 0, gtknew('CheckButton', text => N("Enable parental control"), active_ref => \$enable, toggled => \&update_time_change), 1, gtknew('Label'), |