Handing over items is localizable

This commit is contained in:
JappaWakka 2025-03-17 19:15:37 +01:00
parent fe6098fc7b
commit 1c9effb03f
7 changed files with 14 additions and 2 deletions

View File

@ -521,6 +521,8 @@ item_stored_in_pocket_single_start,<Player.Name> stored it in the~
item_stored_in_pocket_single_end,pocket. item_stored_in_pocket_single_end,pocket.
item_stored_in_pocket_multiple_start,<Player.Name> stored them~in the item_stored_in_pocket_multiple_start,<Player.Name> stored them~in the
item_stored_in_pocket_multiple_end,pocket. item_stored_in_pocket_multiple_end,pocket.
item_handed_over_single,<Player.Name> handed over the~
item_handed_over_multiple,<Player.Name> handed over the~
Berries: Berries:
berry_picked_single_start,<Player.Name> picked the~ berry_picked_single_start,<Player.Name> picked the~

View File

@ -522,6 +522,8 @@ item_stored_in_pocket_single_start,<player.name> stored it in the~
item_stored_in_pocket_single_end,pocket. item_stored_in_pocket_single_end,pocket.
item_stored_in_pocket_multiple_start,<player.name> stored them~in the item_stored_in_pocket_multiple_start,<player.name> stored them~in the
item_stored_in_pocket_multiple_end,pocket. item_stored_in_pocket_multiple_end,pocket.
item_handed_over_single,<Player.Name> handed over the~
item_handed_over_multiple,<Player.Name> handed over the~
Berries: Berries:
berry_picked_single_start,<player.name> picked the~ berry_picked_single_start,<player.name> picked the~

View File

@ -525,6 +525,8 @@ item_stored_in_pocket_single_start,<player.name> stored it in the~
item_stored_in_pocket_single_end,pocket. item_stored_in_pocket_single_end,pocket.
item_stored_in_pocket_multiple_start,<player.name> stored them~in the item_stored_in_pocket_multiple_start,<player.name> stored them~in the
item_stored_in_pocket_multiple_end,pocket. item_stored_in_pocket_multiple_end,pocket.
item_handed_over_single,<Player.Name> handed over the~
item_handed_over_multiple,<Player.Name> handed over the~
Berries: Berries:
berry_picked_single_start,<player.name> picked the~ berry_picked_single_start,<player.name> picked the~

View File

@ -520,6 +520,8 @@ item_stored_in_pocket_single_start,<player.name> met dans la~
item_stored_in_pocket_single_end,poche. item_stored_in_pocket_single_end,poche.
item_stored_in_pocket_multiple_start,<player.name> met dans la~ item_stored_in_pocket_multiple_start,<player.name> met dans la~
item_stored_in_pocket_multiple_end,poche. item_stored_in_pocket_multiple_end,poche.
item_handed_over_single,<Player.Name> handed over the~
item_handed_over_multiple,<Player.Name> handed over the~
Berries: Berries:
berry_picked_single_start,<player.name> Cueille~ berry_picked_single_start,<player.name> Cueille~

View File

@ -520,6 +520,8 @@ item_stored_in_pocket_single_start,<player.name> stopte het weg~in het
item_stored_in_pocket_single_end,vakje. item_stored_in_pocket_single_end,vakje.
item_stored_in_pocket_multiple_start,<player.name> stopte ze weg~in het item_stored_in_pocket_multiple_start,<player.name> stopte ze weg~in het
item_stored_in_pocket_multiple_end,vakje. item_stored_in_pocket_multiple_end,vakje.
item_handed_over_single,<Player.Name> overhandigde~een
item_handed_over_multiple,<Player.Name> overhandigde~de
Berries: Berries:
berry_picked_single_start,<player.name> plukte de~ berry_picked_single_start,<player.name> plukte de~

View File

@ -521,6 +521,8 @@ item_stored_in_pocket_single_start,<player.name> guardou no bolso de ~
item_stored_in_pocket_single_end,. item_stored_in_pocket_single_end,.
item_stored_in_pocket_multiple_start,<player.name> guardou no bolso de ~ item_stored_in_pocket_multiple_start,<player.name> guardou no bolso de ~
item_stored_in_pocket_multiple_end,. item_stored_in_pocket_multiple_end,.
item_handed_over_single,<Player.Name> handed over the~
item_handed_over_multiple,<Player.Name> handed over the~
Berries: Berries:
berry_picked_single_start,<player.name> pegou uma berry_picked_single_start,<player.name> pegou uma

View File

@ -65,9 +65,9 @@
If showMessage = True Then If showMessage = True Then
Dim Message As String = "" Dim Message As String = ""
If amount = 1 Then If amount = 1 Then
Message = "<player.name> handed over the~" & Item.OneLineName() & "!" Message = Localization.GetString("item_handed_over_single", "<Player.Name> handed over the~") & Item.OneLineName() & "!"
Else Else
Message = "<player.name> handed over the~" & Item.OneLinePluralName() & "!" Message = Localization.GetString("item_handed_over_multiple", "<Player.Name> handed over the~") & Item.OneLinePluralName() & "!"
End If End If
Screen.TextBox.reDelay = 0.0F Screen.TextBox.reDelay = 0.0F