mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-27 15:54:25 +02:00
Handing over items is localizable
This commit is contained in:
parent
fe6098fc7b
commit
1c9effb03f
@ -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_multiple_start,<Player.Name> stored them~in the
|
||||
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:
|
||||
berry_picked_single_start,<Player.Name> picked the~
|
||||
|
@ -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_multiple_start,<player.name> stored them~in the
|
||||
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:
|
||||
berry_picked_single_start,<player.name> picked the~
|
||||
|
@ -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_multiple_start,<player.name> stored them~in the
|
||||
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:
|
||||
berry_picked_single_start,<player.name> picked the~
|
||||
|
@ -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_multiple_start,<player.name> met dans la~
|
||||
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:
|
||||
berry_picked_single_start,<player.name> Cueille~
|
||||
|
@ -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_multiple_start,<player.name> stopte ze weg~in het
|
||||
item_stored_in_pocket_multiple_end,vakje.
|
||||
item_handed_over_single,<Player.Name> overhandigde~een
|
||||
item_handed_over_multiple,<Player.Name> overhandigde~de
|
||||
|
||||
Berries:
|
||||
berry_picked_single_start,<player.name> plukte de~
|
||||
|
@ -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_multiple_start,<player.name> guardou no bolso de ~
|
||||
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:
|
||||
berry_picked_single_start,<player.name> pegou uma
|
||||
|
@ -65,9 +65,9 @@
|
||||
If showMessage = True Then
|
||||
Dim Message As String = ""
|
||||
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
|
||||
Message = "<player.name> handed over the~" & Item.OneLinePluralName() & "!"
|
||||
Message = Localization.GetString("item_handed_over_multiple", "<Player.Name> handed over the~") & Item.OneLinePluralName() & "!"
|
||||
End If
|
||||
|
||||
Screen.TextBox.reDelay = 0.0F
|
||||
|
Loading…
x
Reference in New Issue
Block a user