2023-07-06 11:59:39 -07:00
|
|
|
|
using System.Collections.Generic;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
|
2022-06-29 15:00:44 -07:00
|
|
|
|
namespace QSB.Localization;
|
2022-06-04 16:19:55 +01: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 14:36:03 +01:00
|
|
|
|
public string HostExistingOrNewOrCopy;
|
|
|
|
|
public string HostNewOrCopy;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
public string HostExistingOrNew;
|
|
|
|
|
public string ExistingSave;
|
|
|
|
|
public string NewSave;
|
2022-07-22 13:39:00 +01:00
|
|
|
|
public string CopySave;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
public string DisconnectAreYouSure;
|
|
|
|
|
public string Yes;
|
|
|
|
|
public string No;
|
|
|
|
|
public string StopHostingAreYouSure;
|
2023-06-10 12:08:31 +01:00
|
|
|
|
public string CopySteamIDToClipboard;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
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;
|
2023-05-07 16:10:00 -07:00
|
|
|
|
public string PlayerLeftTheGame;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
public string PlayerWasKicked;
|
|
|
|
|
public string KickedFromServer;
|
|
|
|
|
public string RespawnPlayer;
|
2022-06-12 11:10:49 +01:00
|
|
|
|
public string TimeSyncTooFarBehind;
|
|
|
|
|
public string TimeSyncWaitingForStartOfServer;
|
|
|
|
|
public string TimeSyncTooFarAhead;
|
|
|
|
|
public string TimeSyncWaitForAllToReady;
|
|
|
|
|
public string TimeSyncWaitForAllToDie;
|
2022-06-29 14:48:32 -07:00
|
|
|
|
public string GalaxyMapEveryoneNotPresent;
|
2022-08-16 22:15:02 +01:00
|
|
|
|
public string YouAreDead;
|
|
|
|
|
public string WaitingForRespawn;
|
|
|
|
|
public string WaitingForAllToDie;
|
2022-08-16 22:18:44 +01:00
|
|
|
|
public string AttachToShip;
|
|
|
|
|
public string DetachFromShip;
|
2022-06-29 14:58:31 -07:00
|
|
|
|
public Dictionary<DeathType, string[]> DeathMessages;
|
2022-06-04 16:19:55 +01:00
|
|
|
|
}
|