Sync Strings (#3852)

* Sync Strings from Localazy

* Fix tests

---------

Co-authored-by: bmarty <3940906+bmarty@users.noreply.github.com>
Co-authored-by: Jorge Martín <jorgem@element.io>
This commit is contained in:
ElementBot 2024-11-11 12:09:30 +00:00 committed by GitHub
parent b097e9631b
commit 156e27a761
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
133 changed files with 977 additions and 922 deletions

View file

@ -28,7 +28,7 @@
<string name="state_event_room_invite_you">"%1$s saatis sulle kutse"</string>
<string name="state_event_room_join">"%1$s liitus jututoaga"</string>
<string name="state_event_room_join_by_you">"Sina liitusid jututoaga"</string>
<string name="state_event_room_knock">"%1$s palus liitumist"</string>
<string name="state_event_room_knock">"%1$s palus võimalust liituda"</string>
<string name="state_event_room_knock_accepted">"%1$s lubas kasutajal %2$s liituda"</string>
<string name="state_event_room_knock_accepted_by_you">"Sina lubasid kasutajal %1$s liituda!"</string>
<string name="state_event_room_knock_by_you">"Sina palusid liitumist"</string>

View file

@ -28,8 +28,8 @@
<string name="state_event_room_invite_you">"%1$s دعوتتان کرد"</string>
<string name="state_event_room_join">"%1$s به اتاق پیوست"</string>
<string name="state_event_room_join_by_you">"به اتاق پیوستید"</string>
<string name="state_event_room_knock">"%1$s درخواست پیوستن کرد"</string>
<string name="state_event_room_knock_accepted">"%1$s گذاشت %2$s بپیوندد"</string>
<string name="state_event_room_knock">"%1$s درخواست پیوستن دارد"</string>
<string name="state_event_room_knock_accepted">"%1$s به %2$s دسترسی داد"</string>
<string name="state_event_room_knock_accepted_by_you">"گذاشتید %1$s بپیوندد"</string>
<string name="state_event_room_knock_by_you">"درخواست پیوستن کردید"</string>
<string name="state_event_room_knock_denied">"درخواست پیوستن %2$s به دست %1$s لغو شد"</string>

View file

@ -28,7 +28,7 @@
<string name="state_event_room_invite_you">"%1$s vous a invité(e)"</string>
<string name="state_event_room_join">"%1$s a rejoint le salon"</string>
<string name="state_event_room_join_by_you">"Vous avez rejoint le salon"</string>
<string name="state_event_room_knock">"%1$s a demandé à rejoindre"</string>
<string name="state_event_room_knock">"%1$s demande à rejoindre le salon"</string>
<string name="state_event_room_knock_accepted">"%1$s a autorisé %2$s à rejoindre"</string>
<string name="state_event_room_knock_accepted_by_you">"Vous avez autorisé %1$s à joindre le salon"</string>
<string name="state_event_room_knock_by_you">"Vous avez demandé à rejoindre"</string>

View file

@ -28,8 +28,8 @@
<string name="state_event_room_invite_you">"%1$s invited you"</string>
<string name="state_event_room_join">"%1$s joined the room"</string>
<string name="state_event_room_join_by_you">"You joined the room"</string>
<string name="state_event_room_knock">"%1$s requested to join"</string>
<string name="state_event_room_knock_accepted">"%1$s allowed %2$s to join"</string>
<string name="state_event_room_knock">"%1$s is requesting to join"</string>
<string name="state_event_room_knock_accepted">"%1$s granted access to %2$s"</string>
<string name="state_event_room_knock_accepted_by_you">"You allowed %1$s to join"</string>
<string name="state_event_room_knock_by_you">"You requested to join"</string>
<string name="state_event_room_knock_denied">"%1$s rejected %2$s\'s request to join"</string>

View file

@ -460,7 +460,7 @@ class DefaultRoomLastMessageFormatterTest {
val someoneKnockedEvent = createRoomEvent(sentByYou = false, senderDisplayName = otherName, content = someoneContent)
val someoneKnocked = formatter.format(someoneKnockedEvent, false)
assertThat(someoneKnocked).isEqualTo("$otherName requested to join")
assertThat(someoneKnocked).isEqualTo("$otherName is requesting to join")
}
@Test
@ -476,7 +476,7 @@ class DefaultRoomLastMessageFormatterTest {
val someoneAcceptedKnockEvent = createRoomEvent(sentByYou = false, senderDisplayName = otherName, content = someoneContent)
val someoneAcceptedKnock = formatter.format(someoneAcceptedKnockEvent, false)
assertThat(someoneAcceptedKnock).isEqualTo("$otherName allowed $third to join")
assertThat(someoneAcceptedKnock).isEqualTo("$otherName granted access to $third")
}
@Test