Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David MacDonald
purr-data
Commits
d200a723
Commit
d200a723
authored
Nov 03, 2017
by
Jonathan Wilkes
Browse files
don't localize the initial messages in the main Pd window
parent
20958379
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/nw/index.js
View file @
d200a723
...
...
@@ -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
"
);
}
}
...
...
pd/nw/locales/en/translation.json
View file @
d200a723
{
"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"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment