@@ -183,25 +183,25 @@ private VBox createFooter() {
183
183
HBox iconLinksContainer = new HBox (15 );
184
184
iconLinksContainer .setAlignment (Pos .CENTER );
185
185
186
- Hyperlink onlineHelpLink = createFooterLink (Localization . lang ( "Online help" ) , StandardActions .HELP , IconTheme .JabRefIcons .HELP );
187
- Hyperlink forumLink = createFooterLink (Localization . lang ( "Forum for support" ) , StandardActions .OPEN_FORUM , IconTheme .JabRefIcons .FORUM );
188
- Hyperlink mastodonLink = createFooterLink (Localization . lang ( "Mastodon" ) , StandardActions .OPEN_MASTODON , IconTheme .JabRefIcons .MASTODON );
189
- Hyperlink linkedInLink = createFooterLink (Localization . lang ( "LinkedIn" ) , StandardActions .OPEN_LINKEDIN , IconTheme .JabRefIcons .LINKEDIN );
190
- Hyperlink donationLink = createFooterLink (Localization . lang ( "Donation" ) , StandardActions .DONATE , IconTheme .JabRefIcons .DONATE );
186
+ Hyperlink onlineHelpLink = createFooterLink ("Online help" , StandardActions .HELP , IconTheme .JabRefIcons .HELP );
187
+ Hyperlink forumLink = createFooterLink ("Forum for support" , StandardActions .OPEN_FORUM , IconTheme .JabRefIcons .FORUM );
188
+ Hyperlink mastodonLink = createFooterLink ("Mastodon" , StandardActions .OPEN_MASTODON , IconTheme .JabRefIcons .MASTODON );
189
+ Hyperlink linkedInLink = createFooterLink ("LinkedIn" , StandardActions .OPEN_LINKEDIN , IconTheme .JabRefIcons .LINKEDIN );
190
+ Hyperlink donationLink = createFooterLink ("Donation" , StandardActions .DONATE , IconTheme .JabRefIcons .DONATE );
191
191
192
192
iconLinksContainer .getChildren ().addAll (onlineHelpLink , forumLink , mastodonLink , linkedInLink , donationLink );
193
193
194
194
HBox textLinksContainer = new HBox (15 );
195
195
textLinksContainer .setAlignment (Pos .CENTER );
196
196
197
- Hyperlink devVersionLink = createFooterLink (Localization . lang ( "Download Development version" ) , StandardActions .OPEN_DEV_VERSION_LINK , null );
198
- Hyperlink changelogLink = createFooterLink (Localization . lang ( "CHANGELOG" ) , StandardActions .OPEN_CHANGELOG , null );
197
+ Hyperlink devVersionLink = createFooterLink ("Download Development version" , StandardActions .OPEN_DEV_VERSION_LINK , null );
198
+ Hyperlink changelogLink = createFooterLink ("CHANGELOG" , StandardActions .OPEN_CHANGELOG , null );
199
199
200
200
textLinksContainer .getChildren ().addAll (devVersionLink , changelogLink );
201
201
202
202
HBox versionContainer = new HBox (15 );
203
203
versionContainer .setAlignment (Pos .CENTER );
204
- Label versionLabel = new Label (Localization .lang ("Current JabRef Version : " ) + buildInfo .version );
204
+ Label versionLabel = new Label (Localization .lang ("Current JabRef version" ) + " : " + buildInfo .version );
205
205
versionLabel .getStyleClass ().add ("welcome-footer-version" );
206
206
versionContainer .getChildren ().add (versionLabel );
207
207
0 commit comments