diff options
author | Claude Paroz <claude@2xlibre.net> | 2009-08-06 11:53:34 +0200 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2009-08-06 11:53:42 +0200 |
commit | 339738a567fa77ac1f4d3991f5565ffc3c88ff7b (patch) | |
tree | bf5ccd27621e1a93a2a4fc05dec2e6c6f953ea0d /capplets/display | |
parent | 13b5e27cbde68fc187c385a3b0c6f54b04587330 (diff) | |
download | gnome-control-center-339738a567fa77ac1f4d3991f5565ffc3c88ff7b.tar.gz |
Remove markup from translatable strings in GTKBuilder files. Fixes #99759
Diffstat (limited to 'capplets/display')
-rw-r--r-- | capplets/display/display-capplet.ui | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/capplets/display/display-capplet.ui b/capplets/display/display-capplet.ui index 0c36ea130..5e0a5d0a8 100644 --- a/capplets/display/display-capplet.ui +++ b/capplets/display/display-capplet.ui @@ -1,6 +1,6 @@ <?xml version="1.0"?> <interface> - <requires lib="gtk+" version="2.14"/> + <requires lib="gtk+" version="2.16"/> <!-- interface-naming-policy toplevel-contextual --> <object class="GtkDialog" id="dialog"> <property name="border_width">5</property> @@ -19,8 +19,10 @@ <child> <object class="GtkLabel" id="label6"> <property name="visible">True</property> - <property name="label" translatable="yes"><i>Drag the monitors to set their place</i></property> - <property name="use_markup">True</property> + <property name="label" translatable="yes">Drag the monitors to set their place</property> + <attributes> + <attribute name="style" value="italic"/> + </attributes> </object> <packing> <property name="expand">False</property> @@ -86,8 +88,10 @@ <object class="GtkLabel" id="current_monitor_label"> <property name="visible">True</property> <property name="xalign">0</property> - <property name="label" translatable="yes"><b>Monitor</b></property> - <property name="use_markup">True</property> + <property name="label" translatable="yes">Monitor</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> </object> </child> </object> @@ -282,8 +286,10 @@ <object class="GtkLabel" id="label8"> <property name="visible">True</property> <property name="xalign">0</property> - <property name="label" translatable="yes"><b>Panel icon</b></property> - <property name="use_markup">True</property> + <property name="label" translatable="yes">Panel icon</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> </object> <packing> <property name="expand">False</property> |