Skip to content

Commit

Permalink
minor tranlation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Bazzucco committed Oct 7, 2022
1 parent f96d675 commit 5db1adb
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.46.910")]
[assembly: AssemblyFileVersion("2.0.46.910")]
[assembly: AssemblyVersion("2.0.46.911")]
[assembly: AssemblyFileVersion("2.0.46.911")]
27 changes: 27 additions & 0 deletions Properties/Resources.Designer.cs

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

9 changes: 9 additions & 0 deletions Properties/Resources.it-IT.resx
Original file line number Diff line number Diff line change
Expand Up @@ -348,4 +348,13 @@
<data name="JsonFiles" xml:space="preserve">
<value>Files json</value>
</data>
<data name="VideoFiles" xml:space="preserve">
<value>Files Video</value>
</data>
<data name="ExeFiles" xml:space="preserve">
<value>File eseguibili</value>
</data>
<data name="BatFiles" xml:space="preserve">
<value>Files bat</value>
</data>
</root>
9 changes: 9 additions & 0 deletions Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -348,4 +348,13 @@
<data name="JsonFiles" xml:space="preserve">
<value>Json files</value>
</data>
<data name="VideoFiles" xml:space="preserve">
<value>Video Files</value>
</data>
<data name="ExeFiles" xml:space="preserve">
<value>exe files</value>
</data>
<data name="BatFiles" xml:space="preserve">
<value>bat files</value>
</data>
</root>
Binary file added Translactions/2022_10_07_17_49.xlsx
Binary file not shown.
2 changes: 1 addition & 1 deletion src/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private void BrowseVideoFilesButton_Click(object sender, EventArgs e)
;
if (optionsData.extensionList.Count() > 0)
{
string extensionsFilter = "Video Files |";
string extensionsFilter = Properties.Resources.VideoFiles + " |";
for (int i = 0; i < optionsData.extensionList.Count(); i++)
{
extensionsFilter += "*." + optionsData.extensionList[i].extension;
Expand Down
2 changes: 1 addition & 1 deletion src/options/OptionsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private void browseMkvMergeLocationButton_Click(object sender, EventArgs e)
OpenFileDialog openFileDialog = new OpenFileDialog()
{
InitialDirectory = mkvMergeLocationTextBox.Text,
Filter = "exe files (*.exe)|*.exe"
Filter = Properties.Resources.ExeFiles + " (*.exe)|*.exe"
}
;
if (openFileDialog.ShowDialog() == DialogResult.OK)
Expand Down
2 changes: 1 addition & 1 deletion src/queue/QueueForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ private void createBatButton_Click(object sender, EventArgs e)
AddExtension = true,
DefaultExt = "bat",
InitialDirectory = MainForm.mainData.lastBatFilePath,
Filter = "bat files (*.bat)|*.bat"
Filter = Properties.Resources.BatFiles + " (*.bat)|*.bat"
};
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
Expand Down

0 comments on commit 5db1adb

Please sign in to comment.