Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ await MessageBox.Show(MainWindow.instance!, "Your mod depends on mod id: " + dep
{
if(!await Nebula.IsModEditable(mod.id))
{
await MessageBox.Show(MainWindow.instance!, "You dont have write permissions to this mod.", "Basic Check Fail", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance!, "You do not have write permissions to this mod.", "Basic Check Fail", MessageBox.MessageBoxButtons.OK);
ButtonsEnabled = true;
return;
}
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/Views/Windows/Fs2InstallerView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<Border IsVisible="{Binding InnoExtractIsAvailable}" Margin="0,5,0,0" Grid.Row="1" BorderBrush="AliceBlue" BorderThickness="2" CornerRadius="2">
<StackPanel>
<Label Margin="5" FontWeight="Black" FontSize="18">Freespace 2 GoG install file</Label>
<Label Margin="5">You dont have Freespace 2 installed, but you have the GoG Freespace 2 install file?</Label>
<Label Margin="5">You do not have Freespace 2 installed, but you have the GoG Freespace 2 install file?</Label>
<Button Classes="Secondary" IsEnabled="{Binding !IsInstalling}" Margin="10" Command="{Binding LoadGoGExeCommand}">Select GoG Executable</Button>
</StackPanel>
</Border>
Expand Down