From 7e341a922598137a8d3c8a7d9c3ca450e58bc0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A7=84=EC=9E=AC=EC=97=B0=20=28Jin=20Jae-yeon=29?= Date: Wed, 3 Jul 2024 20:51:16 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=A0=95=EB=B3=B4=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95,=20=EB=9D=BC=EC=9D=B4=EC=84=BC=EC=8A=A4?= =?UTF-8?q?=EC=97=90=20=EB=B2=88=EC=97=AD=20=EA=B8=B0=EC=97=AC=EC=9E=90=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DaramRenamer.Commands.csproj | 4 ++-- DaramRenamer.Windows/DaramRenamer.Windows.csproj | 4 ++-- DaramRenamer.Windows/LicenseWindow.xaml.cs | 14 +++++++++++++- LICENSE.md | 16 +++++++++++++++- 4 files changed, 32 insertions(+), 6 deletions(-) diff --git a/DaramRenamer.Commands/DaramRenamer.Commands.csproj b/DaramRenamer.Commands/DaramRenamer.Commands.csproj index ca84349..812c32d 100644 --- a/DaramRenamer.Commands/DaramRenamer.Commands.csproj +++ b/DaramRenamer.Commands/DaramRenamer.Commands.csproj @@ -4,8 +4,8 @@ netstandard2.1 DaramRenamer latest - 2024.7.1 - 2024.7.1 + 2024.7.2 + 2024.7.2 Jin Jae-yeon DARAM WORLD DaramRenamer Command diff --git a/DaramRenamer.Windows/DaramRenamer.Windows.csproj b/DaramRenamer.Windows/DaramRenamer.Windows.csproj index ff8065d..e46d652 100644 --- a/DaramRenamer.Windows/DaramRenamer.Windows.csproj +++ b/DaramRenamer.Windows/DaramRenamer.Windows.csproj @@ -12,8 +12,8 @@ Resources\ProgramIcon.ico DaramRenamer Copyright ⓒ 2013-2024 Jin Jae-yeon - 2024.7.1 - 2024.7.1 + 2024.7.2 + 2024.7.2 true ../Modules/StrongNameKey/Daelumgi.snk DaramRenamer.manifest diff --git a/DaramRenamer.Windows/LicenseWindow.xaml.cs b/DaramRenamer.Windows/LicenseWindow.xaml.cs index 1527d8d..96d89fe 100644 --- a/DaramRenamer.Windows/LicenseWindow.xaml.cs +++ b/DaramRenamer.Windows/LicenseWindow.xaml.cs @@ -36,7 +36,12 @@ public LicenseWindow() } else if (line.Length > 0 && line[0] == '#') { - if (line.Length > 1 && line[1] == '#') + if (line.Length > 2 && line[2] == '#') + document.Blocks.Add(new Paragraph(new Run(line.Substring(3).Trim())) + { + FontSize = 14 + }); + else if (line.Length > 1 && line[1] == '#') document.Blocks.Add(new Paragraph(new Run(line.Substring(2).Trim())) { FontSize = 18 @@ -70,6 +75,13 @@ public LicenseWindow() codeStore.Clear(); } + else if (line.StartsWith("- ")) + { + document.Blocks.Add(new Paragraph(new Run("ㆍ " + line.Substring(2).Trim()) + { + FontSize = 10, + })); + } LicenseTextBox.Document = document; } diff --git a/LICENSE.md b/LICENSE.md index 8b68aec..20e1029 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -604,4 +604,18 @@ necessary. Here is a sample; alter the names: Ty Coon, President of Vice That's all there is to it! -``` \ No newline at end of file +``` + +## Application Translations +### 한국어 (Korean) +- Jin Jae-yeon (daramkun) + +### English +- Stephan Paternotte (Stephan-P) +- Jin Jae-yeon (daramkun) + +### Nederlands (Dutch) +- Stephan Paternotte (Stephan-P) + +### 中文 (Simplified Chinese) +- 大眼仔旭 (wcxu21) \ No newline at end of file