Skip to content

Commit

Permalink
Translation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianPrieber committed Jun 18, 2023
1 parent 4b3ef44 commit e72e7db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/lang/de/messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@
# Title Tag
'Update LinkStack' => 'LinkStack aktualisieren',

'latest beta version' => 'neueste Beta-Version',
'Latest beta version' => 'Neueste Beta-Version',
'Installed beta version' => 'Installierte Beta-Version',
'none' => 'keiner',
'You need to update to the latest mainline release' => 'Sie müssen auf die neueste Hauptversion aktualisieren',
Expand Down
2 changes: 1 addition & 1 deletion resources/lang/en/messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@
# Title Tag
'Update LinkStack' => 'Update LinkStack',

'latest beta version' => 'latest beta version',
'Latest beta version' => 'Latest beta version',
'Installed beta version' => 'Installed beta version',
'none' => 'none',
'You need to update to the latest mainline release' => 'You need to update to the latest mainline release',
Expand Down
4 changes: 2 additions & 2 deletions resources/views/update.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<h1>{{__('message.Updater')}}</h1>
@if(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
@if(env('JOIN_BETA') === true)
<p><?php echo __('message.latest beta version')."= " . external_file_get_contents("https://beta.linkstack.org/vbeta.json"); ?></p>
<p><?php echo __('message.Latest beta version')."= " . external_file_get_contents("https://beta.linkstack.org/vbeta.json"); ?></p>
<p><?php if(file_exists(base_path("vbeta.json"))) {echo __('messages.Installed beta version')."= " . file_get_contents(base_path("vbeta.json"));} else {echo __('messages.Installed beta version')."= ".__('messages.none');} ?></p>
<p><?php if($Vgit > $Vlocal) {echo __('messages.You need to update to the latest mainline release');} else {echo __("messages.You’re running the latest mainline release");} ?></p>
@else
Expand All @@ -33,7 +33,7 @@
</div>
@else
@if(env('JOIN_BETA') === true)
<p><?php echo __('message.latest beta version')."= " . external_file_get_contents("https://beta.linkstack.org/vbeta.json"); ?></p>
<p><?php echo __('message.Latest beta version')."= " . external_file_get_contents("https://beta.linkstack.org/vbeta.json"); ?></p>
<p><?php if(file_exists(base_path("vbeta.json"))) {echo __('messages.Installed beta version')."= " . file_get_contents(base_path("vbeta.json"));} else {echo __('messages.Installed beta version')."= ".__('messages.none');} ?></p>
<p><?php if($Vgit > $Vlocal) {echo __('messages.You need to update to the latest mainline release');} else {echo __("messages.You’re running the latest mainline release");} ?></p>
@else
Expand Down

0 comments on commit e72e7db

Please sign in to comment.