Skip to content

Commit

Permalink
1.10 - fix SE language base (English)
Browse files Browse the repository at this point in the history
  • Loading branch information
niksedk committed Sep 7, 2022
1 parent 0c3dde0 commit 465e865
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ obj
/src/XmlContentTranslator/XmlContentTranslator.csproj.DotSettings
/src/XmlContentTranslator/XmlContentTranslator.zip
/src/.vs/XmlContentTranslator/v15
/src/.vs/XmlContentTranslator
18 changes: 9 additions & 9 deletions src/XmlContentTranslator/Main.Designer.cs

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

4 changes: 2 additions & 2 deletions src/XmlContentTranslator/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -910,12 +910,12 @@ private void toolStripMenuItem2_Click(object sender, EventArgs e)
openFileDialog1.FileName = string.Empty;
openFileDialog1.DefaultExt = ".xml";
openFileDialog1.Filter = "Xml files|*.xml" + "|All files|*.*";
openFileDialog1.Title = "Open language master file";
openFileDialog1.Title = "Open English translation base file";

var doc = new XmlDocument();
try
{
const string url = "https://raw.githubusercontent.com/SubtitleEdit/subtitleedit/master/LanguageMaster.xml";
const string url = "https://raw.githubusercontent.com/SubtitleEdit/subtitleedit/main/LanguageBaseEnglish.xml";
var wc = new WebClient();
var xml = wc.DownloadString(url);
MakeNew();
Expand Down
4 changes: 2 additions & 2 deletions src/XmlContentTranslator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.9.0.0")]
[assembly: AssemblyFileVersion("1.9.0.0")]
[assembly: AssemblyVersion("1.10.0.0")]
[assembly: AssemblyFileVersion("1.10.0.0")]
2 changes: 1 addition & 1 deletion src/XmlContentTranslator/Properties/Resources.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 src/XmlContentTranslator/Properties/Settings.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 src/XmlContentTranslator/XmlContentTranslator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>XmlContentTranslator</RootNamespace>
<AssemblyName>XmlContentTranslator</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ApplicationIcon>Web_XML.ico</ApplicationIcon>
<FileUpgradeFlags>
Expand Down
2 changes: 1 addition & 1 deletion src/XmlContentTranslator/app.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/></startup></configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

0 comments on commit 465e865

Please sign in to comment.