From: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Date: Sat, 7 Sep 2019 20:41:11 +0200
Subject: Fix crash in C locale due to un-i18n'ed string

Fixes-bug: 194402
---
 display.ml  | 2 +-
 lstrings.ml | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/display.ml b/display.ml
index fdf2fc3..1b71393 100644
--- a/display.ml
+++ b/display.ml
@@ -237,7 +237,7 @@ let init_optionbox () =
 
     Options.add_option obox  
       (new Options.void_entry_display
-	 ~text:"New random bodies:" ());
+	 ~text:(Lstrings.get `random_bodies) ());
 
     Options.add_option_live obox diameter_multiplier
       (new Options.float_entry_option
diff --git a/lstrings.ml b/lstrings.ml
index 00603fe..68745f5 100644
--- a/lstrings.ml
+++ b/lstrings.ml
@@ -68,6 +68,7 @@ let english word = match word with
   | `dismiss -> "Dismiss"
   | `options -> "Options"
   | `at_startup -> "Display this screen at startup?"
+  | `random_bodies -> "New random bodies:"
   | `prologue -> "Welcome to Planets!
 Planets is a simple orbital planetary simulator.  A short 
 introduction to planets can be found at:
