Translations update (#4894)

* Translations update

* Fix (and disable) broken test.

* Update snapshots.

---------

Co-authored-by: Doug <douglase@element.io>
This commit is contained in:
ElementRobot
2026-01-05 12:43:05 +00:00
committed by GitHub
parent e64f5006c0
commit e95b00746b
48 changed files with 952 additions and 738 deletions

View File

@@ -29,9 +29,8 @@ class DateTests: XCTestCase {
let threeDaysAgo = calendar.date(byAdding: .day, value: -3, to: startOfToday)!
XCTAssertEqual(threeDaysAgo.formattedMinimal(), threeDaysAgo.formatted(.dateTime.weekday(.wide)))
// This test will fail during the first 6 days of the year.
let sometimeThisYear = calendar.date(byAdding: .month, value: -10, to: startOfToday)!
XCTAssertEqual(sometimeThisYear.formattedMinimal(), sometimeThisYear.formatted(.dateTime.day().month()))
let sometimeInTheLastYear = calendar.date(byAdding: .month, value: -10, to: startOfToday)!
XCTAssertEqual(sometimeInTheLastYear.formattedMinimal(), sometimeInTheLastYear.formatted(.dateTime.day().month()))
let theMillennium = calendar.date(from: DateComponents(year: 2000, month: 1, day: 1))!
XCTAssertEqual(theMillennium.formattedMinimal(), theMillennium.formatted(.dateTime.year().day().month()))
@@ -51,8 +50,9 @@ class DateTests: XCTestCase {
XCTAssertEqual(threeDaysAgo.formattedDateSeparator(), threeDaysAgo.formatted(.dateTime.weekday(.wide)))
// This test will fail during the first 6 days of the year.
let sometimeThisYear = calendar.date(byAdding: .month, value: -10, to: startOfToday)!
XCTAssertEqual(sometimeThisYear.formattedDateSeparator(), sometimeThisYear.formatted(.dateTime.weekday(.wide).day().month(.wide)))
let startOfTheYear = calendar.date(bySetting: .dayOfYear, value: 1, of: startOfToday)!
// FIXME: Uncomment on the 7th Jan.
// XCTAssertEqual(startOfTheYear.formattedDateSeparator(), startOfTheYear.formatted(.dateTime.weekday(.wide).day().month(.wide)))
let theMillennium = calendar.date(from: DateComponents(year: 2000, month: 1, day: 1))!
XCTAssertEqual(theMillennium.formattedDateSeparator(), theMillennium.formatted(.dateTime.weekday(.wide).day().month(.wide).year()))