File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
build/shared/lib/languages
java/src/processing/mode/java Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,8 @@ menu.help.reference.download = Download Offline Reference
151151menu.help.libraries_reference = Libraries Reference
152152menu.help.tools_reference = Tools Reference
153153menu.help.empty = (empty)
154+ menu.help.report = Report a bug
155+ menu.help.ask = Ask on the Forum
154156menu.help.online = Online
155157
156158# Only include the .url lines in the translation file if there
@@ -167,6 +169,8 @@ menu.help.foundation = The Processing Foundation
167169menu.help.foundation.url = https://processing.foundation/
168170menu.help.visit = Visit Processing.org
169171menu.help.visit.url = https://processing.org/
172+ menu.help.report.url = https://github.com/processing/processing4/issues
173+ menu.help.ask.url = https://discourse.processing.org
170174
171175
172176# ---------------------------------------
Original file line number Diff line number Diff line change @@ -121,6 +121,8 @@ menu.help.troubleshooting = Fehlerbehandlung
121121menu.help.faq = Häufig gestellte Fragen (FAQ)
122122menu.help.foundation = "The Processing Foundation"
123123menu.help.visit = Processing.org besuchen
124+ menu.help.report = Einen Fehler melden
125+ menu.help.ask = Im Forum fragen
124126
125127
126128# ---------------------------------------
Original file line number Diff line number Diff line change @@ -327,6 +327,18 @@ public JMenu buildHelpMenu() {
327327
328328 menu .addSeparator ();
329329
330+ // Report a bug link opener
331+ item = new JMenuItem (Language .text ("menu.help.report" ));
332+ item .addActionListener (e -> Platform .openURL (Language .text ("menu.help.report.url" )));
333+ menu .add (item );
334+
335+ // Ask on the Forum link opener
336+ item = new JMenuItem (Language .text ("menu.help.ask" ));
337+ item .addActionListener (e -> Platform .openURL (Language .text ("menu.help.getting_started.url" )));
338+ menu .add (item );
339+
340+ menu .addSeparator ();
341+
330342 final JMenu libRefSubmenu = new JMenu (Language .text ("menu.help.libraries_reference" ));
331343
332344 // Adding this in case references are included in a core library,
You can’t perform that action at this time.
0 commit comments