Skip to content

Commit

Permalink
[MP2K] Add folder name (output path) to success message
Browse files Browse the repository at this point in the history
  • Loading branch information
laqieer committed Apr 27, 2022
1 parent 7fbb126 commit 6e3dd94
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VG Music Studio/Properties/Strings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VG Music Studio/Properties/Strings.es.resx
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,6 @@
<value>Exportar todo Canción como MIDI</value>
</data>
<data name="SuccessSaveMIDIBatch" xml:space="preserve">
<value>MIDI todo guardado.</value>
<value>MIDIs guardado en {0}.</value>
</data>
</root>
2 changes: 1 addition & 1 deletion VG Music Studio/Properties/Strings.it.resx
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,6 @@
<value>Esporta tutto Brano in MIDI</value>
</data>
<data name="SuccessSaveMIDIBatch" xml:space="preserve">
<value>MIDI tutto salvato.</value>
<value>MIDIs salvato in {0}.</value>
</data>
</root>
3 changes: 2 additions & 1 deletion VG Music Studio/Properties/Strings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@
<value>Export All Songs as MIDI</value>
</data>
<data name="SuccessSaveMIDIBatch" xml:space="preserve">
<value>MIDI all saved.</value>
<value>MIDIs saved to {0}.</value>
<comment>{0} is the folder name.</comment>
</data>
</root>
2 changes: 1 addition & 1 deletion VG Music Studio/UI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ private void ExportMIDIBatch(object sender, EventArgs e)
FlexibleMessageBox.Show(ex, string.Format(Strings.ErrorSaveMIDIBatch, i));
}
}
FlexibleMessageBox.Show(Strings.SuccessSaveMIDIBatch, Text);
FlexibleMessageBox.Show(string.Format(Strings.SuccessSaveMIDIBatch, d.FileName), Text);
long oldIndex = (long)_songNumerical.Value;
try
{
Expand Down

0 comments on commit 6e3dd94

Please sign in to comment.