More localization stuff
This commit is contained in:
parent
36294f8647
commit
73edefdd4b
|
@ -2294,7 +2294,12 @@ item_name_675,Steel Memory
|
|||
item_name_676,Water Memory
|
||||
|
||||
Item Use Text:
|
||||
item_cannot_use,Now is not the time~to use that.
|
||||
item_6_missingskin,You can't use this item~without a bicycle skin.*Its name should be the~same as your current one,~but with "_bike" at the end.
|
||||
item_6_only_custom_gamemodes,This item can't be used~on this GameMode.
|
||||
|
||||
Key Items:
|
||||
item_use_6,<player.name> stepped~off the Bicycle.
|
||||
item_use_54,Your Coins:~
|
||||
-------------------
|
||||
Move Names:
|
||||
|
|
|
@ -1454,7 +1454,12 @@ item_name_675,Staal-~herinnering
|
|||
item_name_676,Water-~herinnering
|
||||
|
||||
Item Use Text:
|
||||
item_cannot_use,Het is nu niet het moment~om dat te gebruiken.
|
||||
item_6_missingskin,Je kunt dit voorwerp niet~gebruiken zonder een fiets-~karakterafbeelding.*De naam van de karakter-~afbeelding moet dezelfde zijn~als degene die je nu gebruikt~maar dan met "_bike" aan~het eind.
|
||||
item_6_only_custom_gamemodes,Dit voorwerp kan niet gebruikt~worden in deze SpelModus.
|
||||
|
||||
Key Items:
|
||||
item_use_6,<player.name> stapte~van de fiets af.
|
||||
item_use_54,Jouw Munten:~
|
||||
-------------------
|
||||
GameMessages:
|
||||
|
|
|
@ -18,7 +18,7 @@ Namespace Items.KeyItems
|
|||
Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True)
|
||||
Core.Player.Skin = Core.Player.TempRideSkin
|
||||
|
||||
Screen.TextBox.Show("<player.name> stepped~off the Bicycle.")
|
||||
Screen.TextBox.Show(Localization.GetString("item_use_6", "<player.name> stepped~off the Bicycle."))
|
||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||
Core.CurrentScreen = Core.CurrentScreen.PreScreen
|
||||
End While
|
||||
|
@ -56,17 +56,17 @@ Namespace Items.KeyItems
|
|||
MusicManager.Play("Ride", True)
|
||||
End If
|
||||
Else
|
||||
Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_cannot_use", "Now is not the time~to use that."), {}, True, True)
|
||||
End If
|
||||
Else
|
||||
Screen.TextBox.Show("You can't use this item~without a bicycle skin.*Its name should be the~same as your current one,~but with ""_bike"" at the end.", {}, True, False)
|
||||
Screen.TextBox.Show(Localization.GetString("item_6_missingskin", "You can't use this item~without a bicycle skin.*Its name should be the~same as your current one,~but with ""_bike"" at the end."), {}, True, False)
|
||||
End If
|
||||
Else
|
||||
Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_cannot_use", "Now is not the time~to use that."), {}, True, True)
|
||||
End If
|
||||
End If
|
||||
Else
|
||||
Screen.TextBox.Show("This item can't be used~on this GameMode.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_6_only_custom_gamemodes", "This item can't be used~on this GameMode."), {}, True, True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ Namespace Items.KeyItems
|
|||
|
||||
CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2)
|
||||
Else
|
||||
Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_cannot_use", "Now is not the time~to use that."), {}, True, True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ Namespace Items.KeyItems
|
|||
|
||||
CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2)
|
||||
Else
|
||||
Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_cannot_use", "Now is not the time~to use that."), {}, True, True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ Namespace Items.KeyItems
|
|||
|
||||
CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2)
|
||||
Else
|
||||
Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True)
|
||||
Screen.TextBox.Show(Localization.GetString("item_cannot_use", "Now is not the time~to use that."), {}, True, True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
|
Loading…
Reference in New Issue