From d200a72390dfc834bb55735b13503a245798bd23 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Fri, 3 Nov 2017 17:54:03 -0400
Subject: [PATCH] don't localize the initial messages in the main Pd window

---
 pd/nw/index.js                    | 4 ++--
 pd/nw/locales/en/translation.json | 3 ---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/pd/nw/index.js b/pd/nw/index.js
index 862a056af..474fec9f9 100644
--- a/pd/nw/index.js
+++ b/pd/nw/index.js
@@ -741,12 +741,12 @@ function nw_create_pd_window_menus(gui, w) {
 function post_startup_messages() {
     // These will be the first messages printed to the main Pd window.
     // Later let's use a link to the docs for new users.
-    pdgui.post(l("pd_window.welcome"));
+    pdgui.post("Welcome to Purr Data");
     // Warn the user if the font sizes aren't optimal. Font sizes which
     // aren't optimal result in extra space at the end of object/message
     // boxes
     if (!pdgui.get_font_engine_sanity()) {
-        pdgui.post(l("pd_window.font_size_warning"));
+        pdgui.post("warning: your system's font stack is not optimal");
     }
 }
 
diff --git a/pd/nw/locales/en/translation.json b/pd/nw/locales/en/translation.json
index 0d7721090..a5963d802 100644
--- a/pd/nw/locales/en/translation.json
+++ b/pd/nw/locales/en/translation.json
@@ -1,5 +1,4 @@
 {
-  "hello": "world",
   "iem": {
     "prop": {
       "heading": {
@@ -270,8 +269,6 @@
     "devtools_tt": "Show the DevTools window (for debugging)"
   },
   "pd_window": {
-    "welcome": "Welcome to Purr Data",
-    "font_size_warning": "warning: your system's font stack is not optimal",
     "find": {
       "placeholder": "Search in Console"
     }
-- 
GitLab