Skip to content

Commit 949c75e

Browse files
authored
Update copyright to 2025 SIL Global (#209)
1 parent e579fe6 commit 949c75e

File tree

81 files changed

+142
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+142
-164
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 SIL International
1+
# Copyright (c) 2016-2025 SIL Global
22
# This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33

44
root = true

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2022 SIL International
3+
Copyright (c) 2013-2025 SIL Global
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
22-

source/Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<PackageOutputPath>$(MSBuildThisFileDirectory)\..\output</PackageOutputPath>
77
<ErrorReport>prompt</ErrorReport>
88
<WarningLevel>4</WarningLevel>
9-
<Company>SIL International</Company>
10-
<Authors>SIL International</Authors>
11-
<Copyright>Copyright © 2007-2024 SIL International</Copyright>
9+
<Company>SIL Global</Company>
10+
<Authors>SIL Global</Authors>
11+
<Copyright>Copyright © 2007-2025 SIL Global</Copyright>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<PackageProjectUrl>https://github.com/sillsdev/icu-dotnet</PackageProjectUrl>
1414
<AppendToReleaseNotesProperty><![CDATA[

source/TestHelper/TestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2022 SIL International
1+
// Copyright (c) 2016-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33
using System;
44
using System.IO;

source/icu.net.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Global
4444
GlobalSection(MonoDevelopProperties) = preSolution
4545
Policies = $0
4646
$0.StandardHeader = $1
47-
$1.Text = @Copyright (c) ${Year} SIL International\nThis software is licensed under the MIT license (http://opensource.org/licenses/MIT)
47+
$1.Text = @Copyright (c) ${Year} SIL Global\nThis software is licensed under the MIT license (http://opensource.org/licenses/MIT)
4848
$1.IncludeInNewFiles = True
4949
StartupItem = icu.net\icu.net.csproj
5050
EndGlobalSection

source/icu.net.tests/BreakIteratorTests.Chinese.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2013-2017 SIL International
1+
// Copyright (c) 2013-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33
using System;
44
using System.Linq;
@@ -140,7 +140,7 @@ public void CreateSentenceInstanceTest()
140140
new[] { 0, 0, 0, 0 })]
141141
[TestCase(BreakIterator.UBreakIteratorType.WORD,
142142
"你是中国人么? 我喜欢你们的国家。",
143-
new[] { 0, 2, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17 },
143+
new[] { 0, 2, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17 },
144144
new[] { 0, 400, 400, 400, 0, 0, 400, 400, 400, 400, 400, 0 })]
145145
public void CanIterateForwards(BreakIterator.UBreakIteratorType type, string text, int[] expected, BreakIterator.UWordBreak[] ruleStatus)
146146
{

source/icu.net.tests/BreakIteratorTests.JDKCompatibility.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright (c) 2016-2017 SIL International
1+
// Copyright (c) 2016-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
3-
using NUnit.Framework;
43
using System;
4+
using NUnit.Framework;
55

66
namespace Icu.Tests
77
{

source/icu.net.tests/BreakIteratorTests.cs

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2013 SIL International
1+
// Copyright (c) 2013-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33
using System;
44
using System.Collections.Generic;
@@ -11,10 +11,10 @@ namespace Icu.Tests
1111
[Category("Full ICU")]
1212
public class BreakIteratorTests
1313
{
14-
[TestCase(BreakIterator.UBreakIteratorType.CHARACTER, "abc", ExpectedResult = new[] { "a", "b", "c"})]
15-
[TestCase(BreakIterator.UBreakIteratorType.WORD, "Aa Bb. Cc", ExpectedResult = new[] { "Aa", "Bb", "Cc"})]
16-
[TestCase(BreakIterator.UBreakIteratorType.LINE, "Aa Bb. Cc", ExpectedResult = new[] { "Aa ", "Bb. ", "Cc"})]
17-
[TestCase(BreakIterator.UBreakIteratorType.SENTENCE, "Aa bb. Cc 3.5 x? Y?x! Z", ExpectedResult = new[] { "Aa bb. ", "Cc 3.5 x? ", "Y?", "x! ", "Z"})]
14+
[TestCase(BreakIterator.UBreakIteratorType.CHARACTER, "abc", ExpectedResult = new[] { "a", "b", "c" })]
15+
[TestCase(BreakIterator.UBreakIteratorType.WORD, "Aa Bb. Cc", ExpectedResult = new[] { "Aa", "Bb", "Cc" })]
16+
[TestCase(BreakIterator.UBreakIteratorType.LINE, "Aa Bb. Cc", ExpectedResult = new[] { "Aa ", "Bb. ", "Cc" })]
17+
[TestCase(BreakIterator.UBreakIteratorType.SENTENCE, "Aa bb. Cc 3.5 x? Y?x! Z", ExpectedResult = new[] { "Aa bb. ", "Cc 3.5 x? ", "Y?", "x! ", "Z" })]
1818
public IEnumerable<string> Split(BreakIterator.UBreakIteratorType type, string text)
1919
{
2020
return BreakIterator.Split(type, "en-US", text);
@@ -102,7 +102,7 @@ public void GetWordBoundaries_IncludeSpacesAndPunctuation()
102102
}
103103

104104
/// <summary>
105-
/// The hypenated text case tests the difference between Word and Line
105+
/// The hyphenated text case tests the difference between Word and Line
106106
/// breaks described in:
107107
/// http://userguide.icu-project.org/boundaryanalysis#TOC-Line-break-Boundary
108108
/// </summary>
@@ -128,7 +128,7 @@ public void GetWordAndLineBoundariesWithHyphenatedText()
128128
}
129129

130130
[Test]
131-
public void CreateChracterInstanceTest()
131+
public void CreateCharacterInstanceTest()
132132
{
133133
var locale = new Locale("de-DE");
134134
var text = "Good-bye, dear!";
@@ -647,10 +647,14 @@ public void Clone()
647647
}
648648
}
649649

650-
[TestCase(BreakIterator.UBreakIteratorType.CHARACTER, ExpectedResult = new[] { "A","a"," ","b","b","."," ","C","c"," ","3",".","5"," ","x","?"," ","Y","?","x","!"," ","Z"})]
651-
[TestCase(BreakIterator.UBreakIteratorType.WORD, ExpectedResult = new[] { "Aa"," ","bb","."," ","Cc"," ","3.5"," ","x","?"," ","Y","?","x","!"," ","Z"})]
652-
[TestCase(BreakIterator.UBreakIteratorType.LINE, ExpectedResult = new[] { "Aa ", "bb. ", "Cc ", "3.5 ", "x? ", "Y?", "x! ", "Z"})]
653-
[TestCase(BreakIterator.UBreakIteratorType.SENTENCE, ExpectedResult = new[] { "Aa bb. ", "Cc 3.5 x? ", "Y?", "x! ", "Z"})]
650+
[TestCase(BreakIterator.UBreakIteratorType.CHARACTER,
651+
ExpectedResult = new[] { "A", "a", " ", "b", "b", ".", " ", "C", "c", " ", "3", ".", "5", " ", "x", "?", " ", "Y", "?", "x", "!", " ", "Z" })]
652+
[TestCase(BreakIterator.UBreakIteratorType.WORD,
653+
ExpectedResult = new[] { "Aa", " ", "bb", ".", " ", "Cc", " ", "3.5", " ", "x", "?", " ", "Y", "?", "x", "!", " ", "Z" })]
654+
[TestCase(BreakIterator.UBreakIteratorType.LINE,
655+
ExpectedResult = new[] { "Aa ", "bb. ", "Cc ", "3.5 ", "x? ", "Y?", "x! ", "Z" })]
656+
[TestCase(BreakIterator.UBreakIteratorType.SENTENCE,
657+
ExpectedResult = new[] { "Aa bb. ", "Cc 3.5 x? ", "Y?", "x! ", "Z" })]
654658
public List<string> GetEnumerator(BreakIterator.UBreakIteratorType type)
655659
{
656660
using (var breakIterator = new RuleBasedBreakIterator(type, "en-US"))

source/icu.net.tests/CharacterTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// Copyright (c) 2013 SIL International
1+
// Copyright (c) 2013-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33
using System;
4-
using NUnit.Framework;
54
using System.Globalization;
5+
using NUnit.Framework;
66

77
namespace Icu.Tests
88
{

source/icu.net.tests/Collation/CollatorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2013 SIL International
1+
// Copyright (c) 2013-2025 SIL Global
22
// This software is licensed under the MIT license (http://opensource.org/licenses/MIT)
33
using System;
44
using System.Globalization;
@@ -73,7 +73,7 @@ public void Create_nonexistent_throws()
7373
}
7474

7575
[Test]
76-
public void Create_nonexistentFallbackAllowed_fallsbackToUca()
76+
public void Create_nonexistentFallbackAllowed_fallsBackToUca()
7777
{
7878
using (var collator = Collator.Create("non-existent", Collator.Fallback.FallbackAllowed))
7979
{

0 commit comments

Comments
 (0)