diff -u a/resources/FatMessages b/resources/FatMessages
--- a/resources/FatMessages
+++ b/resources/FatMessages
@@ -5198,11 +5198,11 @@
 de.ro.HelpContentConfig10:Klicken mit AUSWAHL speichert die Einstellungen und sc
 fr.ro.HelpContentConfig10:\Ssauver ces rÃ©glages et fermer la fenÃªtre.|M\Asauver ces rÃ©glages sans fermer la fenÃªtre.
 it.ro.HelpContentConfig10:\Ssave these settings and close the \w.|M\Asave these settings without closing the \w.
 nl.ro.HelpContentConfig10:Klik met KIES om de gemaakte wijzigingen te bewaren en dit venster te sluiten.|MKlikken met PASAAN heeft hetzelfde effect, alleen wordt het huidige venster dan niet gesloten.
-en.ro.HelpContentConfig11:This indicates whether NetSurf will disable executing JavaScript.
-de.ro.HelpContentConfig11:This indicates whether NetSurf will disable executing JavaScript.
-fr.ro.HelpContentConfig11:This indicates whether NetSurf will disable executing JavaScript.
-it.ro.HelpContentConfig11:This indicates whether NetSurf will disable executing JavaScript.
-nl.ro.HelpContentConfig11:Deze optie geeft aan of het uitvoeren van JavaScript-scripts is uitgeschakeld.
+en.ro.HelpContentConfig11:This indicates whether NetSurf will enable executing JavaScript.
+de.ro.HelpContentConfig11:This indicates whether NetSurf will enable executing JavaScript.
+fr.ro.HelpContentConfig11:This indicates whether NetSurf will enable executing JavaScript.
+it.ro.HelpContentConfig11:This indicates whether NetSurf will enable executing JavaScript.
+nl.ro.HelpContentConfig11:Deze optie geeft aan of het uitvoeren van JavaScript-scripts is ingeschakeld.
 en.ro.HelpFontConfig:\Tfont configuration \w
 de.ro.HelpFontConfig:Konfigurationsfenster zur Einstellung der verwendeten Schriftarten
 fr.ro.HelpFontConfig:\Tla fenÃªtre de configuration de Fontes
@@ -5395,10 +5395,10 @@
 de.ro.HelpImageConfig14:Klicken mit AUSWAHL vergrÃ¶ÃŸert die minimale Wartezeit
 fr.ro.HelpImageConfig14:\Saugmenter le temps minimum entre deux images d'animation.
 it.ro.HelpImageConfig14:\Sincrease the minimum time between animation frames.
 nl.ro.HelpImageConfig14:Klik met KIES om de minimumtijd tussen animatie-afbeeldingen te vergroten.
-en.ro.HelpImageConfig16:This indicates whether NetSurf will disable animations on web pages.|MWhen animations are disabled, NetSurf will show the first frame as a static image.
-de.ro.HelpImageConfig16:Erlaubt das Abschalten der Animationsdarstellung auf Webseiten.|MSind die Animationen abgeschaltet, wird von NetSurf lediglich das erste Einzelbild der Animationsfolge als einfaches Bild angezeigt.
-fr.ro.HelpImageConfig16:Ceci indique si Netsurf doit annuler les animations des pages web.|MLorsque les animations sont dÃ©sactivÃ©es, Netsurf utilisera la premiÃ¨re image comme image statique.
-it.ro.HelpImageConfig16:This indicates whether NetSurf will disable animations on web pages.|MWhen animations are disabled, NetSurf will show the first frame as a static image.
+en.ro.HelpImageConfig16:This indicates whether NetSurf will enable animations on web pages.|MWhen animations are disabled, NetSurf will show the first frame as a static image.
+de.ro.HelpImageConfig16:Erlaubt das schalten Sie der Animationsdarstellung auf Webseiten.|MSind die Animationen abgeschaltet, wird von NetSurf lediglich das erste Einzelbild der Animationsfolge als einfaches Bild angezeigt.
+fr.ro.HelpImageConfig16:Ceci indique si Netsurf doit permettre les animations des pages web.|MLorsque les animations sont dÃ©sactivÃ©es, Netsurf utilisera la premiÃ¨re image comme image statique.
+it.ro.HelpImageConfig16:This indicates whether NetSurf will enable animations on web pages.|MWhen animations are disabled, NetSurf will show the first frame as a static image.
 nl.ro.HelpImageConfig16:Deze optie geeft aan of animaties getoond worden.|MWanneer animaties niet worden getoond, dan wordt de eerste beeld van de animatie als een statische afbeelding getoond.
 en.ro.HelpImageConfig17:\Sreset the Image options back to their default values.
 de.ro.HelpImageConfig17:Stellt die Bildoptionen zurÃ¼ck auf die Standardwerte.
diff -u a/riscos/configure/con_content.c b/riscos/configure/con_content.c
--- a/riscos/configure/con_content.c
+++ b/riscos/configure/con_content.c
@@ -36,7 +36,7 @@
 #define CONTENT_DEFAULT_BUTTON 8
 #define CONTENT_CANCEL_BUTTON 9
 #define CONTENT_OK_BUTTON 10
-#define CONTENT_NO_JAVASCRIPT 11
+#define CONTENT_ENABLE_JAVASCRIPT 11
 
 static void ro_gui_options_content_default(wimp_pointer *pointer);
 static bool ro_gui_options_content_ok(wimp_w w);
@@ -52,15 +52,15 @@
                                        nsoption_bool(no_plugins));
 	ro_gui_set_icon_selected_state(w, CONTENT_TARGET_BLANK,
                                        nsoption_bool(target_blank));
-	ro_gui_set_icon_selected_state(w, CONTENT_NO_JAVASCRIPT,
-                                       !nsoption_bool(enable_javascript));
+	ro_gui_set_icon_selected_state(w, CONTENT_ENABLE_JAVASCRIPT,
+                                       nsoption_bool(enable_javascript));
 
 	/* initialise all functions for a newly created window */
 	ro_gui_wimp_event_register_checkbox(w, CONTENT_BLOCK_ADVERTISEMENTS);
 	ro_gui_wimp_event_register_checkbox(w, CONTENT_BLOCK_POPUPS);
 	ro_gui_wimp_event_register_checkbox(w, CONTENT_NO_PLUGINS);
 	ro_gui_wimp_event_register_checkbox(w, CONTENT_TARGET_BLANK);
-	ro_gui_wimp_event_register_checkbox(w, CONTENT_NO_JAVASCRIPT);
+	ro_gui_wimp_event_register_checkbox(w, CONTENT_ENABLE_JAVASCRIPT);
 	ro_gui_wimp_event_register_button(w, CONTENT_DEFAULT_BUTTON,
 			ro_gui_options_content_default);
 	ro_gui_wimp_event_register_cancel(w, CONTENT_CANCEL_BUTTON);
@@ -83,8 +83,8 @@
 			false);
 	ro_gui_set_icon_selected_state(pointer->w, CONTENT_TARGET_BLANK,
 			true);
-	ro_gui_set_icon_selected_state(pointer->w, CONTENT_NO_JAVASCRIPT,
-			false);
+	ro_gui_set_icon_selected_state(pointer->w, CONTENT_ENABLE_JAVASCRIPT,
+			true);
 }
 
 bool ro_gui_options_content_ok(wimp_w w)
@@ -101,7 +101,7 @@
 			  ro_gui_get_icon_selected_state(w, CONTENT_TARGET_BLANK));
 
 	nsoption_set_bool(enable_javascript,
-			!ro_gui_get_icon_selected_state(w, CONTENT_NO_JAVASCRIPT));
+			  ro_gui_get_icon_selected_state(w, CONTENT_ENABLE_JAVASCRIPT));
 
 	ro_gui_save_options();
   	return true;
diff -u a/riscos/configure/con_image.c b/riscos/configure/con_image.c
--- a/riscos/configure/con_image.c
+++ b/riscos/configure/con_image.c
@@ -44,7 +44,7 @@
 #define IMAGE_SPEED_DEC 13
 #define IMAGE_SPEED_INC 14
 #define IMAGE_SPEED_CS 15
-#define IMAGE_DISABLE_ANIMATION 16
+#define IMAGE_ENABLE_ANIMATION 16
 #define IMAGE_DEFAULT_BUTTON 17
 #define IMAGE_CANCEL_BUTTON 18
 #define IMAGE_OK_BUTTON 19
@@ -91,8 +91,8 @@
 	}
 	ro_gui_set_icon_decimal(w, IMAGE_SPEED_FIELD,
 				nsoption_int(minimum_gif_delay), 2);
-	ro_gui_set_icon_selected_state(w, IMAGE_DISABLE_ANIMATION,
-				       !nsoption_bool(animate_images));
+	ro_gui_set_icon_selected_state(w, IMAGE_ENABLE_ANIMATION,
+				       nsoption_bool(animate_images));
 	ro_gui_options_update_shading(w);
 
 	/* register icons */
@@ -103,7 +103,7 @@
 	ro_gui_wimp_event_register_text_field(w, IMAGE_SPEED_TEXT);
 	ro_gui_wimp_event_register_numeric_field(w, IMAGE_SPEED_FIELD,
 			IMAGE_SPEED_INC, IMAGE_SPEED_DEC, 0, 6000, 10, 2);
-	ro_gui_wimp_event_register_checkbox(w, IMAGE_DISABLE_ANIMATION);
+	ro_gui_wimp_event_register_checkbox(w, IMAGE_ENABLE_ANIMATION);
 	ro_gui_wimp_event_register_text_field(w, IMAGE_SPEED_CS);
 	ro_gui_wimp_event_register_redraw_window(w,
 			ro_gui_options_image_redraw);
@@ -221,8 +221,8 @@
 			ro_gui_set_icon_decimal(pointer->w, IMAGE_SPEED_FIELD,
 					10, 2);
 			ro_gui_set_icon_selected_state(pointer->w,
-					IMAGE_DISABLE_ANIMATION, false);
-		case IMAGE_DISABLE_ANIMATION:
+					IMAGE_ENABLE_ANIMATION, true);
+		case IMAGE_ENABLE_ANIMATION:
 			ro_gui_options_update_shading(pointer->w);
 			break;
 		case IMAGE_CANCEL_BUTTON:
@@ -244,7 +244,7 @@
 {
 	bool shaded;
 
-	shaded = ro_gui_get_icon_selected_state(w, IMAGE_DISABLE_ANIMATION);
+	shaded = !ro_gui_get_icon_selected_state(w, IMAGE_ENABLE_ANIMATION);
 	ro_gui_set_icon_shaded_state(w, IMAGE_SPEED_TEXT, shaded);
 	ro_gui_set_icon_shaded_state(w, IMAGE_SPEED_FIELD, shaded);
 	ro_gui_set_icon_shaded_state(w, IMAGE_SPEED_DEC, shaded);
@@ -262,8 +262,8 @@
 			 ro_gui_get_icon_decimal(w, IMAGE_SPEED_FIELD, 2));
 
 	nsoption_set_bool(animate_images,
-			  !ro_gui_get_icon_selected_state(w,
-					IMAGE_DISABLE_ANIMATION));
+			  ro_gui_get_icon_selected_state(w,
+					IMAGE_ENABLE_ANIMATION));
 	ro_gui_save_options();
 
 	return true;
diff -u a/riscos/templates/de b/riscos/templates/de
--- a/riscos/templates/de
+++ b/riscos/templates/de
@@ -858,27 +858,27 @@
     text_and_sprite.validation:""
   }
   wimp_icon {
-    extent:20,-404,208,-360
+    extent:20,-452,208,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
     text.text:"Speedlimit"
-    text.size:12
+    text.size:*
     text.validation:""
   }
   wimp_icon {
-    extent:212,-408,380,-356
+    extent:212,-456,380,-404
     icon_flags:wimp_ICON_TEXT | wimp_ICON_BORDER | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_FILLED | wimp_ICON_INDIRECTED | wimp_BUTTON_WRITABLE
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_WHITE
     text.text:"12.34"
     text.size:*
-    text.validation:"Pptr_write;Kta"
+    text.validation:"Pptr_write;Kta;A0-9."
   }
   wimp_icon {
-    extent:396,-400,428,-368
+    extent:396,-446,428,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -888,7 +888,7 @@
     text_and_sprite.validation:"r5;sdown,pdown"
   }
   wimp_icon {
-    extent:428,-400,460,-368
+    extent:428,-446,460,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -898,7 +898,7 @@
     text_and_sprite.validation:"r5;sup,pup"
   }
   wimp_icon {
-    extent:468,-404,612,-360
+    extent:468,-452,608,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -908,12 +908,12 @@
     text.validation:""
   }
   wimp_icon {
-    extent:212,-460,640,-416
+    extent:212,-396,556,-352
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_RADIO
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Animationen abschalten"
+    text_and_sprite.text:"Animationen aktivieren"
     text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
@@ -3754,7 +3754,7 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Pop-Up Fenster abschalten"
+    text_and_sprite.text:"Pop-Up Fenster verhindern"
     text_and_sprite.size:46
     text_and_sprite.validation:"Soptoff,opton"
   }
@@ -3838,8 +3838,8 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Disable JavaScript"
-    text_and_sprite.size:19
+    text_and_sprite.text:"JavaScript aktivieren"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
 }
diff -u a/riscos/templates/en b/riscos/templates/en
--- a/riscos/templates/en
+++ b/riscos/templates/en
@@ -856,7 +856,7 @@
     text_and_sprite.validation:""
   }
   wimp_icon {
-    extent:20,-404,208,-360
+    extent:20,-452,208,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -866,7 +866,7 @@
     text.validation:""
   }
   wimp_icon {
-    extent:212,-408,380,-356
+    extent:212,-456,380,-404
     icon_flags:wimp_ICON_TEXT | wimp_ICON_BORDER | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_FILLED | wimp_ICON_INDIRECTED | wimp_BUTTON_WRITABLE
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -876,7 +876,7 @@
     text.validation:"Pptr_write;Kta;A0-9."
   }
   wimp_icon {
-    extent:396,-400,428,-368
+    extent:396,-446,428,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -886,7 +886,7 @@
     text_and_sprite.validation:"r5;sdown,pdown"
   }
   wimp_icon {
-    extent:428,-400,460,-368
+    extent:428,-446,460,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -896,7 +896,7 @@
     text_and_sprite.validation:"r5;sup,pup"
   }
   wimp_icon {
-    extent:468,-404,592,-360
+    extent:468,-452,608,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -906,12 +906,12 @@
     text.validation:""
   }
   wimp_icon {
-    extent:212,-460,556,-416
+    extent:212,-396,556,-352
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_RADIO
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Disable animations"
+    text_and_sprite.text:"Enable animations"
     text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
@@ -3348,8 +3348,8 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Disable pop-up windows"
-    text_and_sprite.size:46
+    text_and_sprite.text:"Prevent pop-up windows"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
   wimp_icon {
@@ -3432,8 +3432,8 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Disable JavaScript"
-    text_and_sprite.size:19
+    text_and_sprite.text:"Enable JavaScript"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
 }
diff -u a/riscos/templates/fr b/riscos/templates/fr
--- a/riscos/templates/fr
+++ b/riscos/templates/fr
@@ -860,7 +860,7 @@
     text_and_sprite.validation:""
   }
   wimp_icon {
-    extent:20,-404,208,-360
+    extent:20,-452,208,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -870,17 +870,17 @@
     text.validation:""
   }
   wimp_icon {
-    extent:212,-408,380,-356
+    extent:212,-456,380,-404
     icon_flags:wimp_ICON_TEXT | wimp_ICON_BORDER | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_FILLED | wimp_ICON_INDIRECTED | wimp_BUTTON_WRITABLE
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_WHITE
     text.text:"12.34"
     text.size:*
-    text.validation:"Pptr_write;Kta"
+    text.validation:"Pptr_write;Kta;A0-9."
   }
   wimp_icon {
-    extent:396,-400,428,-368
+    extent:396,-446,428,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -890,7 +890,7 @@
     text_and_sprite.validation:"r5;sdown,pdown"
   }
   wimp_icon {
-    extent:428,-400,460,-368
+    extent:428,-446,460,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -900,7 +900,7 @@
     text_and_sprite.validation:"r5;sup,pup"
   }
   wimp_icon {
-    extent:468,-404,592,-360
+    extent:468,-452,608,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
@@ -910,12 +910,12 @@
     text.validation:""
   }
   wimp_icon {
-    extent:212,-460,628,-416
+    extent:212,-396,556,-352
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_RADIO
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Désactiver les animations"
+    text_and_sprite.text:"Activer les animations"
     text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
@@ -2982,7 +2982,7 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Désactiver les fenêtres pop-up"
+    text_and_sprite.text:"Empêcher les fenêtres pop-up"
     text_and_sprite.size:46
     text_and_sprite.validation:"Soptoff,opton"
   }
@@ -3066,8 +3066,8 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Disable JavaScript"
-    text_and_sprite.size:19
+    text_and_sprite.text:"Activer le JavaScript"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
 }
diff -u a/riscos/templates/nl b/riscos/templates/nl
--- a/riscos/templates/nl
+++ b/riscos/templates/nl
@@ -858,63 +858,63 @@
     text_and_sprite.validation:""
   }
   wimp_icon {
-    extent:20,-404,232,-360
+    extent:20,-452,208,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_ICON_RJUSTIFIED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
     text.text:"Animatietijd"
-    text.size:15
+    text.size:*
     text.validation:""
   }
   wimp_icon {
-    extent:236,-408,404,-356
+    extent:212,-456,380,-404
     icon_flags:wimp_ICON_TEXT | wimp_ICON_BORDER | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_FILLED | wimp_ICON_INDIRECTED | wimp_BUTTON_WRITABLE
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_WHITE
     text.text:"12.34"
-    text.size:6
+    text.size:*
     text.validation:"Pptr_write;Kta;A0-9."
   }
   wimp_icon {
-    extent:420,-400,452,-368
+    extent:396,-446,428,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
     text_and_sprite.text:""
-    text_and_sprite.size:1
+    text_and_sprite.size:*
     text_and_sprite.validation:"r5;sdown,pdown"
   }
   wimp_icon {
-    extent:452,-400,484,-368
+    extent:428,-446,460,-414
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_HCENTRED | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_REPEAT
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
     text_and_sprite.text:""
-    text_and_sprite.size:1
+    text_and_sprite.size:*
     text_and_sprite.validation:"r5;sup,pup"
   }
   wimp_icon {
-    extent:492,-404,644,-360
+    extent:468,-452,608,-408
     icon_flags:wimp_ICON_TEXT | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
     text.text:"seconden"
-    text.size:9
+    text.size:*
     text.validation:""
   }
   wimp_icon {
-    extent:236,-460,616,-416
+    extent:212,-396,556,-352
     icon_flags:wimp_ICON_TEXT | wimp_ICON_SPRITE | wimp_ICON_VCENTRED | wimp_ICON_INDIRECTED | wimp_BUTTON_RADIO
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"Animaties uitzetten"
-    text_and_sprite.size:20
+    text_and_sprite.text:"Animaties inschakelen"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
   wimp_icon {
@@ -3482,8 +3482,8 @@
     icon_esg:0
     icon_fg:wimp_COLOUR_BLACK
     icon_bg:wimp_COLOUR_VERY_LIGHT_GREY
-    text_and_sprite.text:"JavaScript uitschakelen"
-    text_and_sprite.size:24
+    text_and_sprite.text:"JavaScript inschakelen"
+    text_and_sprite.size:*
     text_and_sprite.validation:"Soptoff,opton"
   }
 }
