2022-06-29 21:48:32 +00:00
|
|
|
|
using System.Collections.Generic;
|
2022-06-04 15:19:55 +00:00
|
|
|
|
|
2022-06-29 22:00:44 +00:00
|
|
|
|
namespace QSB.Localization;
|
2022-06-04 15:19:55 +00:00
|
|
|
|
|
|
|
|
|
public class Translation
|
|
|
|
|
{
|
|
|
|
|
public TextTranslation.Language Language;
|
|
|
|
|
public string MainMenuHost;
|
|
|
|
|
public string MainMenuConnect;
|
|
|
|
|
public string PauseMenuDisconnect;
|
|
|
|
|
public string PauseMenuStopHosting;
|
|
|
|
|
public string PublicIPAddress;
|
|
|
|
|
public string ProductUserID;
|
|
|
|
|
public string Connect;
|
|
|
|
|
public string Cancel;
|
2022-08-02 13:36:03 +00:00
|
|
|
|
public string HostExistingOrNewOrCopy;
|
|
|
|
|
public string HostNewOrCopy;
|
2022-06-04 15:19:55 +00:00
|
|
|
|
public string HostExistingOrNew;
|
|
|
|
|
public string ExistingSave;
|
|
|
|
|
public string NewSave;
|
2022-07-22 12:39:00 +00:00
|
|
|
|
public string CopySave;
|
2022-06-04 15:19:55 +00:00
|
|
|
|
public string DisconnectAreYouSure;
|
|
|
|
|
public string Yes;
|
|
|
|
|
public string No;
|
|
|
|
|
public string StopHostingAreYouSure;
|
|
|
|
|
public string CopyProductUserIDToClipboard;
|
|
|
|
|
public string Connecting;
|
|
|
|
|
public string OK;
|
|
|
|
|
public string ServerRefusedConnection;
|
|
|
|
|
public string ClientDisconnectWithError;
|
|
|
|
|
public string QSBVersionMismatch;
|
|
|
|
|
public string OWVersionMismatch;
|
|
|
|
|
public string DLCMismatch;
|
|
|
|
|
public string GameProgressLimit;
|
|
|
|
|
public string AddonMismatch;
|
|
|
|
|
public string IncompatibleMod;
|
|
|
|
|
public string PlayerJoinedTheGame;
|
|
|
|
|
public string PlayerWasKicked;
|
|
|
|
|
public string KickedFromServer;
|
|
|
|
|
public string RespawnPlayer;
|
2022-06-12 10:10:49 +00:00
|
|
|
|
public string TimeSyncTooFarBehind;
|
|
|
|
|
public string TimeSyncWaitingForStartOfServer;
|
|
|
|
|
public string TimeSyncTooFarAhead;
|
|
|
|
|
public string TimeSyncWaitForAllToReady;
|
|
|
|
|
public string TimeSyncWaitForAllToDie;
|
2022-06-29 21:48:32 +00:00
|
|
|
|
public string GalaxyMapEveryoneNotPresent;
|
2022-08-16 21:15:02 +00:00
|
|
|
|
public string YouAreDead;
|
|
|
|
|
public string WaitingForRespawn;
|
|
|
|
|
public string WaitingForAllToDie;
|
2022-08-16 21:18:44 +00:00
|
|
|
|
public string AttachToShip;
|
|
|
|
|
public string DetachFromShip;
|
2022-06-29 21:58:31 +00:00
|
|
|
|
public Dictionary<DeathType, string[]> DeathMessages;
|
2022-06-04 15:19:55 +00:00
|
|
|
|
}
|