Fixed help link generation

This commit is contained in:
RetGal 2019-12-12 08:49:24 +01:00
parent 1fe7581910
commit f3aa82ae7b
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ clickMe.msg = um die Applikation zu starten.
# General ...
language.suffix = _de
language.suffix = de_
assistant = Assistent
assisted = Assistierter

View File

@ -6,7 +6,7 @@ clickMe.msg = pour d\u00e9marrer l'application.
# General ...
language.suffix = _fr
language.suffix = fr_
assistant = assistant
assisted = assist\u00e9

View File

@ -98,8 +98,8 @@ public abstract class BaseFrame extends JFrame {
}
private static final String HTTP_HOME = "https://github.com/retgal/dayon";
private static final String HTTP_SUPPORT = "https://retgal.github.io/Dayon/support" + Babylon.translate("language.suffix") + ".html";
private static final String HTTP_FEEDBACK = "https://github.com/retgal/dayon/issues";
private static final String HTTP_SUPPORT = "https://retgal.github.io/Dayon/" + Babylon.translate("language.suffix") + "support.html";
private static final String HTTP_FEEDBACK = HTTP_HOME + "/issues";
protected Action createShowInfoAction() {
final Action showSystemInfo = new AbstractAction() {