Merge branch 'general-devel' into lang

This commit is contained in:
結柚 2022-10-28 21:29:33 +08:00 committed by GitHub
commit 0c017ee7ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 9560 additions and 2207 deletions

View file

@ -932,7 +932,7 @@ namespace TShockAPI
if (args.Player.IsBouncerThrottled())
{
TShock.Log.ConsoleDebug(GetString("Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}"), args.Player.Name, action, editData);
TShock.Log.ConsoleDebug(GetString("Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}", args.Player.Name, action, editData));
args.Player.SendTileSquareCentered(tileX, tileY, 4);
args.Handled = true;
return;
@ -1665,7 +1665,7 @@ namespace TShockAPI
{
if (TShock.Config.Settings.KickOnTileLiquidThresholdBroken)
{
args.Player.Kick(string.Format("Reached TileLiquid threshold {0}.", TShock.Config.Settings.TileLiquidThreshold));
args.Player.Kick(GetString("Reached TileLiquid threshold {0}.", TShock.Config.Settings.TileLiquidThreshold));
}
else
{
@ -1981,6 +1981,8 @@ namespace TShockAPI
return;
}
if (!args.Player.HasPermission(Permissions.ignorenpcbuffdetection))
{
bool detectedNPCBuffTimeCheat = false;
if (NPCAddBuffTimeMax.ContainsKey(type))
@ -1990,11 +1992,24 @@ namespace TShockAPI
detectedNPCBuffTimeCheat = true;
}
if (npc.townNPC && npc.netID != NPCID.Guide && npc.netID != NPCID.Clothier)
if (npc.townNPC)
{
if (type != BuffID.Lovestruck && type != BuffID.Stinky && type != BuffID.DryadsWard &&
type != BuffID.Wet && type != BuffID.Slimed && type != BuffID.GelBalloonBuff && type != BuffID.Frostburn2 &&
type != BuffID.Shimmer)
if (type != BuffID.Poisoned
&& type != BuffID.OnFire
&& type != BuffID.Confused
&& type != BuffID.CursedInferno
&& type != BuffID.Ichor
&& type != BuffID.Venom
&& type != BuffID.Midas
&& type != BuffID.Wet
&& type != BuffID.Lovestruck
&& type != BuffID.Stinky
&& type != BuffID.Slimed
&& type != BuffID.DryadsWard
&& type != BuffID.GelBalloonBuff
&& type != BuffID.OnFire3
&& type != BuffID.Frostburn2
&& type != BuffID.Shimmer)
{
detectedNPCBuffTimeCheat = true;
}
@ -2012,6 +2027,7 @@ namespace TShockAPI
args.Handled = true;
}
}
}
/// <summary>The Bouncer handler for when an NPC is rehomed.</summary>
/// <param name="sender">The object that triggered the event.</param>
@ -2441,7 +2457,7 @@ namespace TShockAPI
if (args.NewPosition.X > Main.maxTilesX || args.NewPosition.X < 0
|| args.NewPosition.Y > Main.maxTilesY || args.NewPosition.Y < 0)
{
TShock.Log.ConsoleDebug(GetString("Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}"), args.Player.Name);
TShock.Log.ConsoleDebug(GetString("Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}", args.Player.Name));
args.Handled = true;
return;
}
@ -2449,7 +2465,7 @@ namespace TShockAPI
//May as well reject teleport attempts if the player is being throttled
if (args.Player.IsBeingDisabled() || args.Player.IsBouncerThrottled())
{
TShock.Log.ConsoleDebug(GetString("Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}"), args.Player.Name);
TShock.Log.ConsoleDebug(GetString("Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}", args.Player.Name));
args.Handled = true;
return;
}
@ -2842,7 +2858,7 @@ namespace TShockAPI
{ BuffID.MaceWhipNPCDebuff, 240 }, // BuffID: 319
{ BuffID.GelBalloonBuff, 1800 }, // BuffID: 320
{ BuffID.OnFire3, 1200 }, // BuffID: 323
{ BuffID.Frostburn2, 900 }, // BuffID: 324
{ BuffID.Frostburn2, 1200 }, // BuffID: 324
{ BuffID.BoneWhipNPCDebuff, 240 }, // BuffID: 326
{ BuffID.TentacleSpike, 540 }, // BuffID: 337
{ BuffID.CoolWhipNPCDebuff, 240 }, // BuffID: 340

File diff suppressed because it is too large Load diff

View file

@ -2597,7 +2597,7 @@ namespace TShockAPI
{
if (args.Player.PlayerData.exists && TShock.ServerSideCharacterConfig.Settings.WarnPlayersAboutBypassPermission)
{
args.Player.SendWarningMessage("Bypass SSC is enabled for your account. SSC data will not be loaded or saved.");
args.Player.SendWarningMessage(GetString("Bypass SSC is enabled for your account. SSC data will not be loaded or saved."));
TShock.Log.ConsoleInfo(args.Player.Name + " has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored.");
TShock.Log.ConsoleInfo("You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player.");
}
@ -2614,8 +2614,8 @@ namespace TShockAPI
if (args.Player.HasPermission(Permissions.usebanneditem))
args.Player.IsDisabledForBannedWearable = false;
args.Player.SendSuccessMessage("Authenticated as " + account.Name + " successfully.");
TShock.Log.ConsoleInfo(args.Player.Name + " authenticated successfully as user " + args.Player.Name + ".");
args.Player.SendSuccessMessage(GetString($"Authenticated as {account.Name} successfully."));
TShock.Log.ConsoleInfo($"{args.Player.Name} authenticated successfully as user {args.Player.Name}.");
Hooks.PlayerHooks.OnPlayerPostLogin(args.Player);
return true;
}
@ -2938,7 +2938,7 @@ namespace TShockAPI
if (Main.npc[id].townNPC && !args.Player.HasPermission(Permissions.hurttownnpc))
{
args.Player.SendErrorMessage("You do not have permission to hurt Town NPCs.");
args.Player.SendErrorMessage(GetString("You do not have permission to hurt Town NPCs."));
args.Player.SendData(PacketTypes.NpcUpdate, "", id);
TShock.Log.ConsoleDebug($"GetDataHandlers / HandleNpcStrike rejected npc strike {args.Player.Name}");
return true;
@ -2948,24 +2948,24 @@ namespace TShockAPI
{
if (!args.Player.HasPermission(Permissions.summonboss))
{
args.Player.SendErrorMessage("You do not have permission to summon the Empress of Light.");
args.Player.SendErrorMessage(GetString("You do not have permission to summon the Empress of Light."));
args.Player.SendData(PacketTypes.NpcUpdate, "", id);
TShock.Log.ConsoleDebug($"GetDataHandlers / HandleNpcStrike rejected EoL summon from {args.Player.Name}");
return true;
}
else if (!TShock.Config.Settings.AnonymousBossInvasions)
{
TShock.Utils.Broadcast(string.Format($"{args.Player.Name} summoned the Empress of Light!"), 175, 75, 255);
TShock.Utils.Broadcast(GetString($"{args.Player.Name} summoned the Empress of Light!"), 175, 75, 255);
}
else
TShock.Utils.SendLogs(string.Format($"{args.Player.Name} summoned the Empress of Light!"), Color.PaleVioletRed, args.Player);
TShock.Utils.SendLogs(GetString($"{args.Player.Name} summoned the Empress of Light!"), Color.PaleVioletRed, args.Player);
}
if (Main.npc[id].netID == NPCID.CultistDevote || Main.npc[id].netID == NPCID.CultistArcherBlue)
{
if (!args.Player.HasPermission(Permissions.summonboss))
{
args.Player.SendErrorMessage("You do not have permission to summon the Lunatic Cultist!");
args.Player.SendErrorMessage(GetString("You do not have permission to summon the Lunatic Cultist!"));
args.Player.SendData(PacketTypes.NpcUpdate, "", id);
TShock.Log.ConsoleDebug($"GetDataHandlers / HandleNpcStrike rejected Cultist summon from {args.Player.Name}");
return true;
@ -3189,7 +3189,7 @@ namespace TShockAPI
args.Player.IsDisabledForBannedWearable = false;
args.Player.SendMessage("Authenticated as " + args.Player.Name + " successfully.", Color.LimeGreen);
args.Player.SendMessage(GetString("Authenticated as " + args.Player.Name + " successfully."), Color.LimeGreen);
TShock.Log.ConsoleInfo(args.Player.Name + " authenticated successfully as user " + args.Player.Name + ".");
TShock.UserAccounts.SetUserAccountUUID(account, args.Player.UUID);
Hooks.PlayerHooks.OnPlayerPostLogin(args.Player);
@ -3405,7 +3405,7 @@ namespace TShockAPI
if (type == 1 && TShock.Config.Settings.DisableDungeonGuardian)
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleSpecial rejected type 1 for {0}", args.Player.Name);
args.Player.SendMessage("The Dungeon Guardian returned you to your spawn point.", Color.Purple);
args.Player.SendMessage(GetString("The Dungeon Guardian returned you to your spawn point."), Color.Purple);
args.Player.Spawn(PlayerSpawnContext.RecallFromItem);
return true;
}
@ -3415,7 +3415,7 @@ namespace TShockAPI
if (!args.Player.HasPermission(Permissions.usesundial))
{
TShock.Log.ConsoleDebug($"GetDataHandlers / HandleSpecial rejected enchanted sundial permission {args.Player.Name}");
args.Player.SendErrorMessage("You do not have permission to use the Enchanted Sundial.");
args.Player.SendErrorMessage(GetString("You do not have permission to use the Enchanted Sundial."));
return true;
}
else if (TShock.Config.Settings.ForceTime != "normal")
@ -3423,10 +3423,10 @@ namespace TShockAPI
TShock.Log.ConsoleDebug($"GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {args.Player.Name}");
if (!args.Player.HasPermission(Permissions.cfgreload))
{
args.Player.SendErrorMessage("You cannot use the Enchanted Sundial because time is stopped.");
args.Player.SendErrorMessage(GetString("You cannot use the Enchanted Sundial because time is stopped."));
}
else
args.Player.SendErrorMessage("You must set ForceTime to normal via config to use the Enchanted Sundial.");
args.Player.SendErrorMessage(GetString("You must set ForceTime to normal via config to use the Enchanted Sundial."));
return true;
}
}
@ -3471,7 +3471,7 @@ namespace TShockAPI
if (!args.Player.HasPermission(Permissions.movenpc))
{
TShock.Log.ConsoleDebug("GetDataHandlers / UpdateNPCHome rejected no permission {0}", args.Player.Name);
args.Player.SendErrorMessage("You do not have permission to relocate Town NPCs.");
args.Player.SendErrorMessage(GetString("You do not have permission to relocate Town NPCs."));
args.Player.SendData(PacketTypes.UpdateNPCHome, "", id, Main.npc[id].homeTileX, Main.npc[id].homeTileY,
Convert.ToByte(Main.npc[id].homeless));
return true;
@ -3498,21 +3498,21 @@ namespace TShockAPI
if (bosses.Contains(thingType) && !args.Player.HasPermission(Permissions.summonboss))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}", args.Player.Name, thingType);
args.Player.SendErrorMessage("You do not have permission to summon bosses.");
args.Player.SendErrorMessage(GetString("You do not have permission to summon bosses."));
return true;
}
if (invasions.Contains(thingType) && !args.Player.HasPermission(Permissions.startinvasion))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}", args.Player.Name, thingType);
args.Player.SendErrorMessage("You do not have permission to start invasions.");
args.Player.SendErrorMessage(GetString("You do not have permission to start invasions."));
return true;
}
if (pets.Contains(thingType) && !args.Player.HasPermission(Permissions.spawnpets))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}", args.Player.Name, thingType);
args.Player.SendErrorMessage("You do not have permission to spawn pets.");
args.Player.SendErrorMessage(GetString("You do not have permission to spawn pets."));
return true;
}
@ -3523,52 +3523,52 @@ namespace TShockAPI
switch (thingType)
{
case -14:
thing = "has sent a request to the bunny delivery service";
thing = GetString("{0} has sent a request to the bunny delivery service!", args.Player.Name);
break;
case -13:
thing = "has sent a request to the dog delivery service";
thing = GetString("{0} has sent a request to the dog delivery service!", args.Player.Name);
break;
case -12:
thing = "has sent a request to the cat delivery service";
thing = GetString("{0} has sent a request to the cat delivery service!", args.Player.Name);
break;
case -11:
thing = "applied advanced combat techniques";
thing = GetString("{0} applied advanced combat techniques!", args.Player.Name);
break;
case -10:
thing = "summoned a Blood Moon";
thing = GetString("{0} summoned a Blood Moon!", args.Player.Name);
break;
case -8:
thing = "summoned a Moon Lord";
thing = GetString("{0} summoned a Moon Lord!", args.Player.Name);
break;
case -7:
thing = "summoned a Martian invasion";
thing = GetString("{0} summoned a Martian invasion!", args.Player.Name);
break;
case -6:
thing = "summoned an eclipse";
thing = GetString("{0} summoned an eclipse!", args.Player.Name);
break;
case -5:
thing = "summoned a frost moon";
thing = GetString("{0} summoned a frost moon!", args.Player.Name);
break;
case -4:
thing = "summoned a pumpkin moon";
thing = GetString("{0} summoned a pumpkin moon!", args.Player.Name);
break;
case -3:
thing = "summoned the Pirates";
thing = GetString("{0} summoned the Pirates!", args.Player.Name);
break;
case -2:
thing = "summoned the Snow Legion";
thing = GetString("{0} summoned the Snow Legion!", args.Player.Name);
break;
case -1:
thing = "summoned a Goblin Invasion";
thing = GetString("{0} summoned a Goblin Invasion!", args.Player.Name);
break;
default:
thing = String.Format("summoned the {0}", npc.FullName);
thing = GetString("{0} summoned the {1}!", args.Player.Name, npc.FullName);
break;
}
if (TShock.Config.Settings.AnonymousBossInvasions)
TShock.Utils.SendLogs(string.Format("{0} {1}!", args.Player.Name, thing), Color.PaleVioletRed, args.Player);
TShock.Utils.SendLogs(thing, Color.PaleVioletRed, args.Player);
else
TShock.Utils.Broadcast(String.Format("{0} {1}!", args.Player.Name, thing), 175, 75, 255);
TShock.Utils.Broadcast(thing, 175, 75, 255);
return false;
}
@ -3709,7 +3709,7 @@ namespace TShockAPI
if (type == 0 && !args.Player.HasPermission(Permissions.rod))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleTeleport rejected rod type {0} {1}", args.Player.Name, type);
args.Player.SendErrorMessage("You do not have permission to teleport using items."); // Was going to write using RoD but Hook of Disonnance and Potion of Return both use the same teleport packet as RoD.
args.Player.SendErrorMessage(GetString("You do not have permission to teleport using items.")); // Was going to write using RoD but Hook of Disonnance and Potion of Return both use the same teleport packet as RoD.
args.Player.Teleport(args.TPlayer.position.X, args.TPlayer.position.Y); // Suggest renaming rod permission unless someone plans to add separate perms for the other 2 tp items.
return true;
}
@ -3733,7 +3733,7 @@ namespace TShockAPI
if (!args.Player.HasPermission(Permissions.wormhole))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}", args.Player.Name, type);
args.Player.SendErrorMessage("You do not have permission to teleport using Wormhole Potions.");
args.Player.SendErrorMessage(GetString("You do not have permission to teleport using Wormhole Potions."));
args.Player.Teleport(args.TPlayer.position.X, args.TPlayer.position.Y);
return true;
}
@ -3797,7 +3797,7 @@ namespace TShockAPI
void Fail(string tpItem)
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}", args.Player.Name, type);
args.Player.SendErrorMessage("You do not have permission to teleport using {0}.", tpItem);
args.Player.SendErrorMessage(GetString("You do not have permission to teleport using {0}.", tpItem));
}
switch (type)
@ -3931,7 +3931,7 @@ namespace TShockAPI
if (TShock.TileBans.TileIsBanned((short)TileID.LogicSensor, args.Player))
{
args.Player.SendTileSquareCentered(x, y, 1);
args.Player.SendErrorMessage("You do not have permission to place Logic Sensors.");
args.Player.SendErrorMessage(GetString("You do not have permission to place Logic Sensors."));
return true;
}
@ -4091,7 +4091,7 @@ namespace TShockAPI
if (args.Player != null && !args.Player.HasPermission(Permissions.toggleparty))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleToggleParty rejected no party {0}", args.Player.Name);
args.Player.SendErrorMessage("You do not have permission to start a party.");
args.Player.SendErrorMessage(GetString("You do not have permission to start a party."));
return true;
}
@ -4109,14 +4109,14 @@ namespace TShockAPI
if (!args.Player.HasPermission(Permissions.startdd2))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandleOldOnesArmy rejected permissions {0}", args.Player.Name);
args.Player.SendErrorMessage("You do not have permission to start the Old One's Army.");
args.Player.SendErrorMessage(GetString("You do not have permission to start the Old One's Army."));
return true;
}
if (TShock.Config.Settings.AnonymousBossInvasions)
TShock.Utils.SendLogs(string.Format("{0} started the Old One's Army event!", args.Player.Name), Color.PaleVioletRed, args.Player);
TShock.Utils.SendLogs(GetString("{0} started the Old One's Army event!", args.Player.Name), Color.PaleVioletRed, args.Player);
else
TShock.Utils.Broadcast(string.Format("{0} started the Old One's Army event!", args.Player.Name), 175, 75, 255);
TShock.Utils.Broadcast(GetString("{0} started the Old One's Army event!", args.Player.Name), 175, 75, 255);
return false;
}
@ -4190,7 +4190,7 @@ namespace TShockAPI
if (TShock.CharacterDB.RemovePlayer(args.Player.Account.ID))
{
TShock.Log.ConsoleDebug("GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}", args.Player.Name, args.TPlayer.difficulty);
args.Player.SendErrorMessage("You have fallen in hardcore mode, and your items have been lost forever.");
args.Player.SendErrorMessage(GetString("You have fallen in hardcore mode, and your items have been lost forever."));
TShock.CharacterDB.SeedInitialData(args.Player.Account);
}
}

View file

@ -199,7 +199,7 @@ namespace TShockAPI
if (args.Player.TPlayer.autoActuator && DataModel.ItemIsBanned("Actuator", args.Player))
{
args.Player.SendTileSquareCentered(args.X, args.Y, 1);
args.Player.SendErrorMessage("You do not have permission to place actuators.");
args.Player.SendErrorMessage(GetString("You do not have permission to place actuators."));
args.Handled = true;
return;
}
@ -231,7 +231,7 @@ namespace TShockAPI
private void SendCorrectiveMessage(TSPlayer player, string itemName)
{
player.SendErrorMessage("{0} is banned! Remove it!", itemName);
player.SendErrorMessage(GetString("{0} is banned! Remove it!", itemName));
}
}
}

View file

@ -102,10 +102,10 @@ namespace TShockAPI
public Settings()
{
this.IncludeHeader = true;
this.headerFormat = "Page {0} of {1}";
this.headerFormat = GetString("Page {{0}} of {{1}}");
this.HeaderTextColor = Color.Green;
this.IncludeFooter = true;
this.footerFormat = "Type /<command> {0} for more.";
this.footerFormat = GetString("Type /<command> {{0}} for more.");
this.FooterTextColor = Color.Yellow;
this.NothingToDisplayString = null;
this.LineFormatter = null;

View file

@ -155,6 +155,9 @@ namespace TShockAPI
[Description("Prevents your actions from being ignored if damage is too high.")]
public static readonly string ignoredamagecap = "tshock.ignore.damage";
[Description("Prevents your from being kicked by npc buff hack detection.")]
public static readonly string ignorenpcbuffdetection = "tshock.ignore.npcbuff";
[Description("Bypass server side character checks.")]
public static readonly string bypassssc = "tshock.ignore.ssc";

View file

@ -151,12 +151,12 @@ namespace TShockAPI
if (output.Count == 0)
{
player.SendInfoMessage(includeUnprotected
? "There are no regions at this point."
: "There are no regions at this point, or they are not protected.");
? GetString("There are no regions at this point.")
: GetString("There are no regions at this point, or they are not protected."));
}
else
{
player.SendInfoMessage(includeUnprotected ? "Regions at this point: " : "Protected regions at this point: ");
player.SendInfoMessage(includeUnprotected ? GetString("Regions at this point: ") : GetString("Protected regions at this point: "));
foreach (string line in PaginationTools.BuildLinesFromTerms(output))
{
@ -184,7 +184,7 @@ namespace TShockAPI
// Set temp point coordinates to current tile coordinates
player.TempPoints[player.AwaitingTempPoint - 1].X = e.X;
player.TempPoints[player.AwaitingTempPoint - 1].Y = e.Y;
player.SendInfoMessage($"Set temp point {player.AwaitingTempPoint}.");
player.SendInfoMessage(GetString($"Set temp point {player.AwaitingTempPoint}."));
// Reset the awaiting temp point
player.AwaitingTempPoint = 0;

View file

@ -844,7 +844,7 @@ namespace TShockAPI
}
}
return RestResponse(GetPluralString($"{killcount} NPC has been killed.", "{killcount} NPCs have been killed.", killcount));
return RestResponse(GetPluralString("{0} NPC has been killed.", "{0} NPCs have been killed.", killcount, killcount));
}
[Description("Get information regarding the world.")]

View file

@ -55,7 +55,7 @@ namespace TShockAPI
// These can be caused by an unexpected error such as a bad or out of date plugin
try
{
TShock.Utils.Broadcast("Saving world...", Color.Yellow);
TShock.Utils.Broadcast(GetString("Saving world..."), Color.Yellow);
}
catch (Exception ex)
{
@ -132,9 +132,9 @@ namespace TShockAPI
WorldFile.SaveWorld(task.resetTime);
if (TShock.Config.Settings.AnnounceSave)
TShock.Utils.Broadcast("World saved.", Color.Yellow);
TShock.Utils.Broadcast(GetString("World saved."), Color.Yellow);
TShock.Log.Info(string.Format("World saved at ({0})", Main.worldPathName));
TShock.Log.Info(GetString("World saved at ({0})", Main.worldPathName));
}
catch (Exception e)
{
@ -160,7 +160,7 @@ namespace TShockAPI
public override string ToString()
{
return string.Format("resetTime {0}, direct {1}", resetTime, direct);
return GetString("resetTime {0}, direct {1}", resetTime, direct);
}
}
}

View file

@ -36,7 +36,7 @@ namespace TShockAPI
public override string ToString()
{
return string.Format("Message: {0}: {1}: {2}",
return GetString("Message: {0}: {1}: {2}",
caller, logLevel.ToString().ToUpper(), message);
}
}
@ -314,7 +314,7 @@ namespace TShockAPI
{
caller = "TShock",
logLevel = TraceLevel.Error,
message = string.Format("SQL Log insert query failed: {0}", ex),
message = GetString("SQL Log insert query failed: {0}", ex),
timestamp = DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture)
});
}
@ -343,7 +343,7 @@ namespace TShockAPI
foreach (var logInfo in _failures)
{
_backupLog.Write(string.Format("SQL log failed at: {0}. {1}", logInfo.timestamp, logInfo),
_backupLog.Write(GetString("SQL log failed at: {0}. {1}", logInfo.timestamp, logInfo),
TraceLevel.Error);
}
_failures.Clear();

View file

@ -1838,12 +1838,12 @@ namespace TShockAPI
TShock.Bans.InsertBan($"{Identifier.Account}{Account.Name}", reason, adminUserName, DateTime.UtcNow, DateTime.MaxValue);
}
Disconnect(string.Format("Banned: {0}", reason));
Disconnect(GetString("Banned: {0}", reason));
if (string.IsNullOrWhiteSpace(adminUserName))
TSPlayer.All.SendInfoMessage("{0} was banned for '{1}'.", Name, reason);
TSPlayer.All.SendInfoMessage(GetString("{0} was banned for '{1}'.", Name, reason));
else
TSPlayer.All.SendInfoMessage("{0} banned {1} for '{2}'.", adminUserName, Name, reason);
TSPlayer.All.SendInfoMessage(GetString("{0} banned {1} for '{2}'.", adminUserName, Name, reason));
return true;
}

View file

@ -443,8 +443,8 @@ namespace TShockAPI
if(Log is not null) Log.ConsoleError(message);
else Console.WriteLine(message);
};
SafeError("TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem.");
SafeError("Until the problem is resolved, TShock will not be able to start (and will crash on startup).");
SafeError(GetString("TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem."));
SafeError(GetString("Until the problem is resolved, TShock will not be able to start (and will crash on startup)."));
SafeError(ex.ToString());
Environment.Exit(1);
}
@ -780,7 +780,7 @@ namespace TShockAPI
{
if (!string.IsNullOrWhiteSpace(cfg))
{
ServerApi.LogWriter.PluginWriteLine(this, string.Format("Loading dedicated config file: {0}", cfg), TraceLevel.Verbose);
ServerApi.LogWriter.PluginWriteLine(this, GetString("Loading dedicated config file: {0}", cfg), TraceLevel.Verbose);
Main.instance.LoadDedConfig(cfg);
}
})
@ -791,7 +791,7 @@ namespace TShockAPI
if (int.TryParse(p, out port))
{
Netplay.ListenPort = port;
ServerApi.LogWriter.PluginWriteLine(this, string.Format("Listening on port {0}.", port), TraceLevel.Verbose);
ServerApi.LogWriter.PluginWriteLine(this, GetString("Listening on port {0}.", port), TraceLevel.Verbose);
}
})
@ -800,7 +800,7 @@ namespace TShockAPI
if (!string.IsNullOrWhiteSpace(world))
{
Main.instance.SetWorldName(world);
ServerApi.LogWriter.PluginWriteLine(this, string.Format("World name will be overridden by: {0}", world), TraceLevel.Verbose);
ServerApi.LogWriter.PluginWriteLine(this, GetString("World name will be overridden by: {0}", world), TraceLevel.Verbose);
}
})
@ -810,7 +810,7 @@ namespace TShockAPI
if (IPAddress.TryParse(ip, out addr))
{
Netplay.ServerIP = addr;
ServerApi.LogWriter.PluginWriteLine(this, string.Format("Listening on IP {0}.", addr), TraceLevel.Verbose);
ServerApi.LogWriter.PluginWriteLine(this, GetString("Listening on IP {0}.", addr), TraceLevel.Verbose);
}
else
{
@ -846,7 +846,7 @@ namespace TShockAPI
throw new InvalidOperationException("Invalid value given for command line argument \"-worldevil\".");
}
ServerApi.LogWriter.PluginWriteLine(this, String.Format("New worlds will be generated with the {0} world evil type!", value), TraceLevel.Verbose);
ServerApi.LogWriter.PluginWriteLine(this, GetString("New worlds will be generated with the {0} world evil type!", value), TraceLevel.Verbose);
WorldGen.WorldGenParam_Evil = worldEvil;
})
@ -978,8 +978,8 @@ namespace TShockAPI
if (File.Exists(Path.Combine(SavePath, "setup-code.txt")))
{
Log.ConsoleInfo("An account has been detected in the user database, but setup-code.txt is still present.");
Log.ConsoleInfo("TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed.");
Log.ConsoleInfo(GetString("An account has been detected in the user database, but setup-code.txt is still present."));
Log.ConsoleInfo(GetString("TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed."));
File.Delete(Path.Combine(SavePath, "setup-code.txt"));
}
@ -994,8 +994,8 @@ namespace TShockAPI
var r = new Random((int)DateTime.Now.ToBinary());
SetupToken = r.Next(100000, 10000000);
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("To setup the server, join the game and type {0}setup {1}", Commands.Specifier, SetupToken);
Console.WriteLine("This token will display until disabled by verification. ({0}setup)", Commands.Specifier);
Console.WriteLine(GetString("To setup the server, join the game and type {0}setup {1}", Commands.Specifier, SetupToken));
Console.WriteLine(GetString("This token will display until disabled by verification. ({0}setup)", Commands.Specifier));
Console.ResetColor();
File.WriteAllText(Path.Combine(SavePath, "setup-code.txt"), SetupToken.ToString());
}
@ -1003,9 +1003,9 @@ namespace TShockAPI
{
SetupToken = Convert.ToInt32(File.ReadAllText(Path.Combine(SavePath, "setup-code.txt")));
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("TShock Notice: setup-code.txt is still present, and the code located in that file will be used.");
Console.WriteLine("To setup the server, join the game and type {0}setup {1}", Commands.Specifier, SetupToken);
Console.WriteLine("This token will display until disabled by verification. ({0}setup)", Commands.Specifier);
Console.WriteLine(GetString("TShock Notice: setup-code.txt is still present, and the code located in that file will be used."));
Console.WriteLine(GetString("To setup the server, join the game and type {0}setup {1}", Commands.Specifier, SetupToken));
Console.WriteLine(GetString("This token will display until disabled by verification. ({0}setup)", Commands.Specifier));
Console.ResetColor();
}
@ -1465,7 +1465,7 @@ namespace TShockAPI
if (!Commands.HandleCommand(tsplr, text))
{
// This is required in case anyone makes HandleCommand return false again
tsplr.SendErrorMessage("Unable to parse command. Please contact an administrator for assistance.");
tsplr.SendErrorMessage(GetString("Unable to parse command. Please contact an administrator for assistance."));
Log.ConsoleError("Unable to parse command '{0}' from player {1}.", text, tsplr.Name);
}
}
@ -1483,7 +1483,7 @@ namespace TShockAPI
}
else if (tsplr.mute)
{
tsplr.SendErrorMessage("You are muted!");
tsplr.SendErrorMessage(GetString("You are muted!"));
args.Handled = true;
}
else if (!TShock.Config.Settings.EnableChatAboveHeads)
@ -1638,22 +1638,22 @@ namespace TShockAPI
if (Config.Settings.EnableGeoIP && TShock.Geo != null)
{
Log.Info("{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})", player.Name, player.IP,
Log.Info(GetString("{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})", player.Name, player.IP,
player.Group.Name, player.Country, TShock.Utils.GetActivePlayerCount(),
TShock.Config.Settings.MaxSlots);
TShock.Config.Settings.MaxSlots));
if (!player.SilentJoinInProgress)
Utils.Broadcast(string.Format("{0} ({1}) has joined.", player.Name, player.Country), Color.Yellow);
Utils.Broadcast(GetString("{0} ({1}) has joined.", player.Name, player.Country), Color.Yellow);
}
else
{
Log.Info("{0} ({1}) from '{2}' group joined. ({3}/{4})", player.Name, player.IP,
player.Group.Name, TShock.Utils.GetActivePlayerCount(), TShock.Config.Settings.MaxSlots);
Log.Info(GetString("{0} ({1}) from '{2}' group joined. ({3}/{4})", player.Name, player.IP,
player.Group.Name, TShock.Utils.GetActivePlayerCount(), TShock.Config.Settings.MaxSlots));
if (!player.SilentJoinInProgress)
Utils.Broadcast(player.Name + " has joined.", Color.Yellow);
Utils.Broadcast(GetString("{0} has joined.", player.Name), Color.Yellow);
}
if (Config.Settings.DisplayIPToAdmins)
Utils.SendLogs(string.Format("{0} has joined. IP: {1}", player.Name, player.IP), Color.Blue);
Utils.SendLogs(GetString("{0} has joined. IP: {1}", player.Name, player.IP), Color.Blue);
player.SendFileTextAsMessage(FileTools.MotdPath);
@ -1670,12 +1670,12 @@ namespace TShockAPI
if (Main.ServerSideCharacter)
{
player.IsDisabledForSSC = true;
player.SendErrorMessage(String.Format("Server side characters is enabled! Please {0}register or {0}login to play!", Commands.Specifier));
player.SendErrorMessage(GetString("Server side characters is enabled! Please {0}register or {0}login to play!", Commands.Specifier));
player.LoginHarassed = true;
}
else if (Config.Settings.RequireLogin)
{
player.SendErrorMessage("Please {0}register or {0}login to play!", Commands.Specifier);
player.SendErrorMessage(GetString("Please {0}register or {0}login to play!", Commands.Specifier));
player.LoginHarassed = true;
}
}
@ -1685,7 +1685,7 @@ namespace TShockAPI
if (Config.Settings.RememberLeavePos && (RememberedPos.GetLeavePos(player.Name, player.IP) != Vector2.Zero) && !player.LoginHarassed)
{
player.RPPending = 3;
player.SendInfoMessage("You will be teleported to your last known location...");
player.SendInfoMessage(GetString("You will be teleported to your last known location..."));
}
args.Handled = true;

View file

@ -148,7 +148,7 @@ namespace TShockAPI
private void NotifyAdministrator(TSPlayer player, string[] changes)
{
player.SendMessage("The server is out of date. Latest version: ", Color.Red);
player.SendMessage(GetString("The server is out of date. Latest version: "), Color.Red);
for (int j = 0; j < changes.Length; j++)
{
player.SendMessage(changes[j], Color.Red);

View file

@ -133,7 +133,7 @@ namespace TShockAPI
{
TSPlayer.All.SendMessage(msg, red, green, blue);
TSPlayer.Server.SendMessage(msg, red, green, blue);
TShock.Log.Info(string.Format("Broadcast: {0}", msg));
TShock.Log.Info(GetString("Broadcast: {0}", msg));
}
/// <summary>>Broadcast - Broadcasts a message to all players on the server, as well as the server console, and the logs.</summary>
@ -156,7 +156,7 @@ namespace TShockAPI
{
TSPlayer.All.SendMessageFromPlayer(msg, red, green, blue, ply);
TSPlayer.Server.SendMessage(Main.player[ply].name + ": " + msg, red, green, blue);
TShock.Log.Info(string.Format("Broadcast: {0}", Main.player[ply].name + ": " + msg));
TShock.Log.Info(GetString("Broadcast: {0}: {1}", Main.player[ply].name, msg));
}
/// <summary>
@ -945,6 +945,9 @@ namespace TShockAPI
{
PrepareLangForDump();
// Lang.setLang(true);
Directory.CreateDirectory("docs");
Configuration.TShockConfig.DumpDescriptions();
Permissions.DumpDescriptions();
Configuration.ServerSideConfig.DumpDescriptions();
@ -1060,7 +1063,7 @@ namespace TShockAPI
/// <param name="empty">If the server is empty; determines if we should use Utils.GetActivePlayerCount() for player count or 0.</param>
internal void SetConsoleTitle(bool empty)
{
Console.Title = string.Format("{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})",
Console.Title = GetString("{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})",
!string.IsNullOrWhiteSpace(TShock.Config.Settings.ServerName) ? TShock.Config.Settings.ServerName + " - " : "",
empty ? 0 : GetActivePlayerCount(),
TShock.Config.Settings.MaxSlots, Main.worldName, Netplay.ServerIP.ToString(), Netplay.ListenPort, TShock.VersionNum);

View file

@ -69,6 +69,7 @@ Use past tense when adding new entries; sign your name off when you add or chang
* Check loadout slots for hacked item stacks. (@drunderscore)
* Fix players being kicked after using the Flamethrower to apply the `OnFire3` debuff for `1200` ticks. (@BashGuy10)
* Fix being kicked for using the new sponge types on liquid. (@BashGuy10)
* Allow flask buffs to be applied on town npc due to the Flymeal. Add a permission could skip the buff detection. (@KawaiiYuyu)
* Added support of `-lang` and `-language` flags for our i18n system. (@KawaiiYuyu)
## TShock 4.5.18

View file

@ -210,6 +210,10 @@ Prevents you from being disabled by liquid set abuse detection.
Prevents you from being disabled by abnormal MP.
* **Commands**: `None`
## tshock.ignore.npcbuff
Prevents your from being kicked by npc buff hack detection.
* **Commands**: `None`
## tshock.ignore.paint
Prevents you from being disabled by paint abuse detection.
* **Commands**: `None`

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@ -18,16 +18,12 @@ msgstr ""
"Language: de_DE\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr ""
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr "{0} Ausgeführt: {1} {2}."
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -238,6 +299,37 @@ msgstr ""
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -487,6 +579,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -497,6 +597,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -523,6 +633,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -547,7 +665,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -642,6 +760,16 @@ msgstr ""
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -657,7 +785,7 @@ msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
@ -1600,6 +1728,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr ""
@ -1650,6 +1796,10 @@ msgstr ""
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1679,6 +1829,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1696,6 +1858,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1713,6 +1885,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1744,6 +1929,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1961,6 +2154,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -2000,6 +2199,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2113,6 +2321,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2128,6 +2340,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2164,6 +2381,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2186,6 +2413,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2280,11 +2517,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2296,6 +2603,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2362,6 +2684,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2372,15 +2699,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2396,6 +2746,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2461,10 +2815,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2551,6 +2917,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2792,6 +3168,12 @@ msgid_plural "Player {0} matches {1} players"
msgstr[0] ""
msgstr[1] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2858,6 +3240,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2868,6 +3256,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2904,6 +3297,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2941,6 +3348,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3031,6 +3443,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3057,6 +3474,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3077,6 +3499,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3170,6 +3596,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3388,6 +3818,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3404,6 +3838,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3426,6 +3865,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3511,6 +3954,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3556,6 +4003,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3568,6 +4023,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3652,6 +4113,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3822,6 +4293,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: Pirate English\n"
"MIME-Version: 1.0\n"
@ -18,27 +18,23 @@ msgstr ""
"Language: en_PT\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr "Arr! Shiver me timbers! Skipping yer SSC save due to tshock.ignore.ssc for ye matey {0}"
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
msgid "#{0} - You are banned: {1} ({2} remaining)"
msgstr ""
msgstr "#{0} - Yer ship be blocked: {1} ({2} be left)"
#: ../../TShockAPI/DB/BanManager.cs:208
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason"
msgid "#{0} - You are banned: {1}"
msgstr ""
msgstr "#{0} - Yer ship be blocked: {1}"
#: ../../TShockAPI/Commands.cs:1253
#, csharp-format
@ -57,7 +53,7 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:2003
msgid "(Server Broadcast) "
msgstr ""
msgstr "(Captain's Order)"
#: ../../TShockAPI/Commands.cs:2071
#, csharp-format
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr ""
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -238,6 +299,37 @@ msgstr ""
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -487,6 +579,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -497,6 +597,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -523,6 +633,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -547,7 +665,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -642,6 +760,16 @@ msgstr ""
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -657,7 +785,7 @@ msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
@ -1600,6 +1728,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr ""
@ -1650,6 +1796,10 @@ msgstr ""
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1679,6 +1829,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1696,6 +1858,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1713,6 +1885,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1744,6 +1929,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1961,6 +2154,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -2000,6 +2199,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2113,6 +2321,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2128,6 +2340,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2164,6 +2381,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2186,6 +2413,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2280,11 +2517,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2296,6 +2603,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2362,6 +2684,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2372,15 +2699,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2396,6 +2746,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2461,10 +2815,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2551,6 +2917,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2792,6 +3168,12 @@ msgid_plural "Player {0} matches {1} players"
msgstr[0] ""
msgstr[1] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2858,6 +3240,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2868,6 +3256,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2904,6 +3297,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2941,6 +3348,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3031,6 +3443,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3057,6 +3474,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3077,6 +3499,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3170,6 +3596,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3388,6 +3818,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3404,6 +3838,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3426,6 +3865,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3511,6 +3954,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3556,6 +4003,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3568,6 +4023,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3652,6 +4113,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3822,6 +4293,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: French, Quebec\n"
"MIME-Version: 1.0\n"
@ -18,16 +18,12 @@ msgstr ""
"Language: fr_QC\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr ""
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr ""
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -238,6 +299,37 @@ msgstr ""
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -487,6 +579,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -497,6 +597,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -523,6 +633,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -547,7 +665,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -642,6 +760,16 @@ msgstr ""
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -657,7 +785,7 @@ msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
@ -1600,6 +1728,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr ""
@ -1650,6 +1796,10 @@ msgstr ""
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1679,6 +1829,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1696,6 +1858,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1713,6 +1885,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1744,6 +1929,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1961,6 +2154,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -2000,6 +2199,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2113,6 +2321,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2128,6 +2340,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2164,6 +2381,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2186,6 +2413,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2280,11 +2517,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2296,6 +2603,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2362,6 +2684,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2372,15 +2699,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2396,6 +2746,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2461,10 +2815,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2551,6 +2917,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2792,6 +3168,12 @@ msgid_plural "Player {0} matches {1} players"
msgstr[0] ""
msgstr[1] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2858,6 +3240,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2868,6 +3256,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2904,6 +3297,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2941,6 +3348,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3031,6 +3443,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3057,6 +3474,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3077,6 +3499,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3170,6 +3596,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3388,6 +3818,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3404,6 +3838,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3426,6 +3865,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3511,6 +3954,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3556,6 +4003,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3568,6 +4023,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3652,6 +4113,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3822,6 +4293,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@ -18,16 +18,12 @@ msgstr ""
"Language: ja_JP\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr "{0}のSSCセーブをスキップ中 (tshock.ignore.ssc による)"
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr "{player.Account.Name}のSSCセーブをスキップ中 (tshock.ignore.ssc による)"
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr "{0} がアカウント {1} をグループ {2} に変更しました。"
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr "{0} がアカウント {1} のパスワードを変更しました"
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr ""
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -237,6 +298,37 @@ msgstr "{0} がアカウントを登録しました: \"{1}\"."
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -486,6 +578,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -496,6 +596,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -522,6 +632,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -546,7 +664,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -641,6 +759,16 @@ msgstr "禁止を解く"
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -656,8 +784,8 @@ msgstr "「Blood Moon」 が {0} に設定されました。"
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgstr "「Blood Moon」状態です {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
#, csharp-format
@ -1599,6 +1727,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr "サーバーのパスワードを変更する。"
@ -1649,6 +1795,10 @@ msgstr "コマンドが失敗しました。詳細はログで確認してくだ
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1678,6 +1828,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1695,6 +1857,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1712,6 +1884,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1743,6 +1928,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1960,6 +2153,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -1999,6 +2198,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2112,6 +2320,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2127,6 +2339,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2163,6 +2380,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2185,6 +2412,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2279,11 +2516,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2295,6 +2602,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2361,6 +2683,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2371,15 +2698,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2395,6 +2745,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2460,10 +2814,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2550,6 +2916,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2790,6 +3166,12 @@ msgid "Player {0} matches {1} player"
msgid_plural "Player {0} matches {1} players"
msgstr[0] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2856,6 +3238,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2866,6 +3254,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2902,6 +3295,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2939,6 +3346,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3029,6 +3441,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3055,6 +3472,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3075,6 +3497,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3168,6 +3594,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3386,6 +3816,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3402,6 +3836,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3424,6 +3863,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3509,6 +3952,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3554,6 +4001,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3566,6 +4021,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3650,6 +4111,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3820,6 +4291,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: Russian, Ukraine\n"
"MIME-Version: 1.0\n"
@ -18,16 +18,12 @@ msgstr ""
"Language: ru_UA\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr ""
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr ""
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -240,6 +301,37 @@ msgstr ""
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -489,6 +581,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -499,6 +599,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -525,6 +635,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -549,7 +667,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -644,6 +762,16 @@ msgstr ""
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -659,7 +787,7 @@ msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
@ -1602,6 +1730,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr ""
@ -1652,6 +1798,10 @@ msgstr ""
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1681,6 +1831,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1698,6 +1860,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1715,6 +1887,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1746,6 +1931,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1963,6 +2156,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -2002,6 +2201,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2115,6 +2323,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2130,6 +2342,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2166,6 +2383,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2188,6 +2415,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2282,11 +2519,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2298,6 +2605,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2364,6 +2686,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2374,15 +2701,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2398,6 +2748,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2463,10 +2817,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2553,6 +2919,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2796,6 +3172,12 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2862,6 +3244,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2872,6 +3260,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2908,6 +3301,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2945,6 +3352,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3035,6 +3447,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3061,6 +3478,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3081,6 +3503,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3174,6 +3600,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3392,6 +3822,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3408,6 +3842,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3430,6 +3869,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3515,6 +3958,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3560,6 +4007,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3572,6 +4027,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3656,6 +4117,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3826,6 +4297,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: tshock\n"
"POT-Creation-Date: 2022-10-23 05:28:17+0000\n"
"PO-Revision-Date: 2022-10-23 05:37\n"
"POT-Creation-Date: 2022-10-25 07:37:44+0000\n"
"PO-Revision-Date: 2022-10-25 18:02\n"
"Last-Translator: \n"
"Language-Team: toki pona\n"
"MIME-Version: 1.0\n"
@ -18,16 +18,12 @@ msgstr ""
"Language: tok\n"
#: ../../TShockAPI/DB/CharacterManager.cs:176
#: ../../TShockAPI/DB/CharacterManager.cs:246
#, csharp-format
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}"
msgstr ""
#: ../../TShockAPI/DB/CharacterManager.cs:246
msgctxt "{0} is a player name"
msgid "Skipping SSC save (due to tshock.ignore.ssc) for {player.Account.Name}"
msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:213
#, csharp-format
msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp"
@ -108,11 +104,36 @@ msgstr ""
msgid "{0} changed account {1} to group {2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4449
#, csharp-format
msgid "{0} changed the maximum spawns to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4430
#, csharp-format
msgid "{0} changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:1145
#, csharp-format
msgid "{0} changed the password for account {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4488
#, csharp-format
msgid "{0} changed the spawn rate to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4470
#, csharp-format
msgid "{0} changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:4622
#, csharp-format
msgid "{0} changed the wind speed to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2452
#, csharp-format
msgid "{0} ended the rain."
@ -133,11 +154,31 @@ msgstr "jan {0} li kepeken {1}{2}."
msgid "{0} failed to authenticate as user: {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4230
#, csharp-format
msgid "{0} has been allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3864
#, csharp-format
msgid "{0} has been allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4054
#, csharp-format
msgid "{0} has been allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4288
#, csharp-format
msgid "{0} has been disallowed from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4112
#, csharp-format
msgid "{0} has been disallowed from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3935
#, csharp-format
msgid "{0} has been disallowed to use {1}."
@ -195,16 +236,36 @@ msgstr ""
msgid "{0} has started a snow legion invasion."
msgstr ""
#: ../../TShockAPI/Commands.cs:4233
#, csharp-format
msgid "{0} is already allowed to place tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3868
#, csharp-format
msgid "{0} is already allowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4057
#, csharp-format
msgid "{0} is already allowed to use projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3939
#, csharp-format
msgid "{0} is already disallowed to use {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4292
#, csharp-format
msgid "{0} is already prevented from placing tile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4116
#, csharp-format
msgid "{0} is already prevented from using projectile {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3858
#: ../../TShockAPI/Commands.cs:3929
#, csharp-format
@ -241,6 +302,37 @@ msgstr ""
msgid "{0} remaining."
msgstr ""
#: ../../TShockAPI/Commands.cs:4557
#, csharp-format
msgid "{0} set the time to {1}:{2:D2}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4525
#, csharp-format
msgid "{0} set the time to 00:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4513
#, csharp-format
msgid "{0} set the time to 04:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4521
#, csharp-format
msgid "{0} set the time to 12:00."
msgstr ""
#: ../../TShockAPI/Commands.cs:4517
#, csharp-format
msgid "{0} set the time to 19:30."
msgstr ""
#: ../../TShockAPI/Commands.cs:4599
#: ../../TShockAPI/Commands.cs:4600
#, csharp-format
msgid "{0} slapped {1} for {2} damage."
msgstr ""
#: ../../TShockAPI/Commands.cs:2814
#, csharp-format
msgid "{0} spawned {1} {2} time(s)."
@ -490,6 +582,14 @@ msgstr ""
msgid "add <name> <permissions...> - Adds a new group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4132
msgid "add <projectile ID> - Adds a projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4308
msgid "add <tile ID> - Adds a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:1728
#, csharp-format
msgid "Added {0} to the whitelist."
@ -500,6 +600,16 @@ msgstr ""
msgid "Added buff to {0} NPC abnormally."
msgstr ""
#: ../../TShockAPI/Commands.cs:4838
#, csharp-format
msgid "Added group {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4768
#, csharp-format
msgid "Added user {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:3422
msgid "addperm <group> <permissions...> - Adds permissions to a group."
msgstr ""
@ -526,6 +636,14 @@ msgstr ""
msgid "allow <item> <group> - Allows a group to use an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4133
msgid "allow <projectile ID> <group> - Allows a group to use a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4309
msgid "allow <tile ID> <group> - Allows a group to place a tile."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:474
#, csharp-format
msgid "An exception has occurred during database rollback: {0}"
@ -550,7 +668,7 @@ msgstr ""
#: ../../TShockAPI/DB/BanManager.cs:636
#, csharp-format
msgid "An identifier for an IP Address in octet format. e.g., '{0}'.127.0.0.1"
msgid "An identifier for an IP Address in octet format. e.g., '{0}'."
msgstr ""
#: ../../TShockAPI/Commands.cs:2035
@ -645,6 +763,16 @@ msgstr ""
msgid "Banned ${0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4020
#, csharp-format
msgid "Banned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4196
#, csharp-format
msgid "Banned tile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1508
msgid "Banned."
msgstr ""
@ -660,7 +788,7 @@ msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:904
#, csharp-format
msgid "Bloodmoon state: {0}EnabledDisabled"
msgid "Bloodmoon state: {0}"
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1447
@ -1603,6 +1731,24 @@ msgstr ""
msgid "Certain projectiles have been ignored for cheat detection."
msgstr ""
#: ../../TShockAPI/Commands.cs:4445
#, csharp-format
msgid "Changed the maximum spawns to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4426
msgid "Changed the maximum spawns to 5."
msgstr ""
#: ../../TShockAPI/Commands.cs:4484
#, csharp-format
msgid "Changed the spawn rate to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4466
msgid "Changed the spawn rate to 600."
msgstr ""
#: ../../TShockAPI/Commands.cs:368
msgid "Changes the server password."
msgstr ""
@ -1653,6 +1799,10 @@ msgstr ""
msgid "Commands: add, del, hide, list, send, [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4378
msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart."
msgstr ""
#: ../../TShockAPI/Commands.cs:1769
#, csharp-format
msgid "Correct usage: {0}overridessc|{0}ossc <player name>"
@ -1682,6 +1832,18 @@ msgstr ""
msgid "Could not find specified warp."
msgstr ""
#: ../../TShockAPI/Commands.cs:4706
#: ../../TShockAPI/Commands.cs:4713
#: ../../TShockAPI/Commands.cs:4732
#: ../../TShockAPI/Commands.cs:4771
#: ../../TShockAPI/Commands.cs:4806
#: ../../TShockAPI/Commands.cs:4841
#: ../../TShockAPI/Commands.cs:4876
#: ../../TShockAPI/Commands.cs:4920
#, csharp-format
msgid "Could not find the region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1572
msgid "Could not find the target specified. Check that you have the correct spelling."
msgstr ""
@ -1699,6 +1861,16 @@ msgstr ""
msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4417
#, csharp-format
msgid "Current maximum spawns: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4457
#, csharp-format
msgid "Current spawn rate: {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:2650
#, csharp-format
msgid "Death Exploit Attempt: Damage {0}"
@ -1716,6 +1888,19 @@ msgstr ""
msgid "del <item> - Deletes an item ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4134
msgid "del <projectile ID> - Deletes an projectile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4310
msgid "del <tile ID> - Deletes a tile ban."
msgstr ""
#: ../../TShockAPI/Commands.cs:4729
#, csharp-format
msgid "Deleted region \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:3426
msgid "delperm <group> <permissions...> - Removes permissions from a group."
msgstr ""
@ -1747,6 +1932,14 @@ msgstr ""
msgid "disallow <item> <group> - Disallows a group from using an item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4135
msgid "disallow <projectile ID> <group> - Disallows a group from using a projectile."
msgstr ""
#: ../../TShockAPI/Commands.cs:4311
msgid "disallow <tile ID> <group> - Disallows a group from place a tile."
msgstr ""
#: ../../TShockAPI/Commands.cs:2631
msgid "Duke Fishron"
msgstr ""
@ -1964,6 +2157,12 @@ msgstr ""
msgid "Group {0} is referencing itself as parent group; parent reference was removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:4845
#: ../../TShockAPI/Commands.cs:4880
#, csharp-format
msgid "Group {0} not found."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1187
#, csharp-format
msgid "Group {0} updated successfully"
@ -2003,6 +2202,15 @@ msgstr ""
msgid "Heals a player in HP and MP."
msgstr ""
#: ../../TShockAPI/Commands.cs:4641
msgid "Hit a block to get the name of the region."
msgstr ""
#: ../../TShockAPI/Commands.cs:4654
#, csharp-format
msgid "Hit a block to set point {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:1226
#, csharp-format
msgid "ID: {0}"
@ -2116,6 +2324,10 @@ msgstr ""
#: ../../TShockAPI/Commands.cs:3748
#: ../../TShockAPI/Commands.cs:3851
#: ../../TShockAPI/Commands.cs:3922
#: ../../TShockAPI/Commands.cs:4041
#: ../../TShockAPI/Commands.cs:4099
#: ../../TShockAPI/Commands.cs:4217
#: ../../TShockAPI/Commands.cs:4275
msgid "Invalid group."
msgstr ""
@ -2131,6 +2343,11 @@ msgstr ""
msgid "Invalid item."
msgstr ""
#: ../../TShockAPI/Commands.cs:4438
#, csharp-format
msgid "Invalid maximum spawns. Acceptable range is {0} to {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2843
msgid "Invalid mob type!"
msgstr ""
@ -2167,6 +2384,16 @@ msgstr ""
msgid "Invalid player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4023
msgid "Invalid projectile ID!"
msgstr ""
#: ../../TShockAPI/Commands.cs:4060
#: ../../TShockAPI/Commands.cs:4081
#: ../../TShockAPI/Commands.cs:4119
msgid "Invalid projectile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:2347
msgid "Invalid pumpkin moon event wave."
msgstr ""
@ -2189,6 +2416,16 @@ msgstr ""
msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4170
#, csharp-format
msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4346
#, csharp-format
msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands."
msgstr ""
#: ../../TShockAPI/Commands.cs:3624
msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"."
msgstr ""
@ -2283,11 +2520,81 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}kick <player> [reason]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4013
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban add <proj id>"
msgstr ""
#: ../../TShockAPI/Commands.cs:4032
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4069
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4090
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}projban disallow <id> <group name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4779
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allow <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4849
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region allowg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4693
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region define <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4735
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region delete <name>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4908
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region info <region> [-d] [page]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4716
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4814
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region remove <name> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4884
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}region removeg <group> <region>."
msgstr ""
#: ../../TShockAPI/Commands.cs:1028
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}register <password>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4385
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}serverpassword \"<new password>\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4566
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}slap <player> [damage]."
msgstr ""
#: ../../TShockAPI/Commands.cs:2584
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}spawnboss <boss type> [amount]."
@ -2299,6 +2606,21 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}spawnmob <mob type> [amount]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4189
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban add <tile id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4208
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban allow <id> <group>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4245
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tileban del <id>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2914
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}tp <player> [player 2]."
@ -2365,6 +2687,11 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]."
msgstr ""
#: ../../TShockAPI/Commands.cs:4608
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}wind <speed>."
msgstr ""
#: ../../TShockAPI/Commands.cs:2129
#, csharp-format
msgid "Invalid syntax. Proper syntax: {0}worldevent <event type>."
@ -2375,15 +2702,38 @@ msgstr ""
msgid "Invalid syntax. Proper syntax: {0}worldmode <mode>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4719
#, csharp-format
msgid "Invalid syntax. Proper syntax: /region protect <name> <true/false>."
msgstr ""
#: ../../TShockAPI/Commands.cs:4659
msgid "Invalid syntax. Proper syntax: /region set <1/2>."
msgstr ""
#: ../../TShockAPI/Commands.cs:3134
#: ../../TShockAPI/Commands.cs:3295
#: ../../TShockAPI/Commands.cs:4572
#: ../../TShockAPI/Commands.cs:4580
msgid "Invalid target player."
msgstr ""
#: ../../TShockAPI/Commands.cs:4199
#: ../../TShockAPI/Commands.cs:4236
#: ../../TShockAPI/Commands.cs:4257
#: ../../TShockAPI/Commands.cs:4295
msgid "Invalid tile ID."
msgstr ""
#: ../../TShockAPI/Commands.cs:1926
msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier."
msgstr ""
#: ../../TShockAPI/Commands.cs:4531
#: ../../TShockAPI/Commands.cs:4540
msgid "Invalid time string. Proper format: hh:mm, in 24-hour time."
msgstr ""
#: ../../TShockAPI/Rest/RestManager.cs:1326
#, csharp-format
msgid "Invalid Type: '{0}'"
@ -2399,6 +2749,10 @@ msgstr ""
msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands."
msgstr ""
#: ../../TShockAPI/Commands.cs:4615
msgid "Invalid wind speed."
msgstr ""
#: ../../TShockAPI/Commands.cs:2542
#, csharp-format
msgid "Invalid world mode. Valid world modes: {0}"
@ -2464,10 +2818,22 @@ msgstr ""
msgid "Lanterns are now up."
msgstr ""
#: ../../TShockAPI/Commands.cs:4406
msgid "Liquids are already settling."
msgstr ""
#: ../../TShockAPI/Commands.cs:3958
msgid "list [page] - Lists all item bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4136
msgid "list [page] - Lists all projectile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:4312
msgid "list [page] - Lists all tile bans."
msgstr ""
#: ../../TShockAPI/Commands.cs:3427
msgid "list [page] - Lists groups."
msgstr ""
@ -2554,6 +2920,16 @@ msgstr ""
msgid "Manages user accounts."
msgstr ""
#: ../../TShockAPI/Commands.cs:4704
#, csharp-format
msgid "Marked region {0} as protected."
msgstr ""
#: ../../TShockAPI/Commands.cs:4711
#, csharp-format
msgid "Marked region {0} as unprotected."
msgstr ""
#: ../../TShockAPI/Commands.cs:1213
#, csharp-format
msgid "Memory usage: {0}"
@ -2798,6 +3174,12 @@ msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
#: ../../TShockAPI/Commands.cs:4775
#: ../../TShockAPI/Commands.cs:4810
#, csharp-format
msgid "Player {0} not found."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1123
#, csharp-format
msgid "Player {0} tried to sneak {1} onto the server!"
@ -2864,6 +3246,12 @@ msgstr ""
msgid "Proc count: {0}"
msgstr ""
#: ../../TShockAPI/Commands.cs:4048
#: ../../TShockAPI/Commands.cs:4106
#, csharp-format
msgid "Projectile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:1175
#, csharp-format
msgid "Projectile damage is higher than {0}."
@ -2874,6 +3262,11 @@ msgstr ""
msgid "Projectile update threshold exceeded {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4933
#, csharp-format
msgid "Protected: {0}."
msgstr ""
#: ../../TShockAPI/TSPlayer.cs:758
#, csharp-format
msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})"
@ -2910,6 +3303,20 @@ msgstr ""
msgid "Received type '{0}', however column '{1}' expects type '{2}'"
msgstr ""
#: ../../TShockAPI/Commands.cs:4684
#, csharp-format
msgid "Region {0} already exists."
msgstr ""
#: ../../TShockAPI/Commands.cs:4932
#, csharp-format
msgid "Region owner: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4689
msgid "Region points need to be defined first. Use /region set 1 and /region set 2."
msgstr ""
#: ../../TShockAPI/Commands.cs:258
msgid "Registers you an account."
msgstr ""
@ -2947,6 +3354,11 @@ msgstr ""
msgid "Removed suffix of group \"{0}\"."
msgstr ""
#: ../../TShockAPI/Commands.cs:4803
#, csharp-format
msgid "Removed user {0} from {1}."
msgstr ""
#: ../../TShockAPI/Commands.cs:300
msgid "Removes a player from the server."
msgstr ""
@ -3037,6 +3449,11 @@ msgstr ""
msgid "Server map saving..."
msgstr ""
#: ../../TShockAPI/Commands.cs:4390
#, csharp-format
msgid "Server password has been changed to: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:2023
#: ../../TShockAPI/Commands.cs:2029
msgid "Server shutting down: "
@ -3063,6 +3480,11 @@ msgstr ""
msgid "Server-side characters is disabled."
msgstr ""
#: ../../TShockAPI/Commands.cs:4680
#, csharp-format
msgid "Set region {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:510
msgid "Sets the dungeon's position to your location."
msgstr ""
@ -3083,6 +3505,10 @@ msgstr ""
msgid "Sets the world's spawn point to your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:4410
msgid "Settling liquids."
msgstr ""
#: ../../TShockAPI/DB/UserManager.cs:182
msgid "SetUserGroup SQL returned an error"
msgstr ""
@ -3176,6 +3602,10 @@ msgstr ""
msgid "Sorry, an error occurred: {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4361
msgid "Spawn has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2857
#, csharp-format
msgid "Spawned {0} {1} time(s)."
@ -3394,6 +3824,10 @@ msgstr ""
msgid "Temporarily sets another player's group."
msgstr ""
#: ../../TShockAPI/Commands.cs:4742
msgid "Temporary region set points have been removed."
msgstr ""
#: ../../TShockAPI/Commands.cs:1181
msgid "That group does not exist."
msgstr ""
@ -3410,6 +3844,11 @@ msgstr ""
msgid "the Brain of Cthulhu"
msgstr ""
#: ../../TShockAPI/Commands.cs:4505
#, csharp-format
msgid "The current time is {0}:{1:D2}."
msgstr ""
#: ../../TShockAPI/DB/GroupManager.cs:218
msgid "The default usergroup could not be found."
msgstr ""
@ -3432,6 +3871,10 @@ msgstr ""
msgid "the Destroyer"
msgstr ""
#: ../../TShockAPI/Commands.cs:4369
msgid "The dungeon's position has now been set at your location."
msgstr ""
#: ../../TShockAPI/Commands.cs:2638
msgid "the Eater of Worlds"
msgstr ""
@ -3517,6 +3960,10 @@ msgstr ""
msgid "The REST authentication token."
msgstr ""
#: ../../TShockAPI/Commands.cs:4478
msgid "The spawn rate you provided is out-of-range or not a number."
msgstr ""
#: ../../TShockAPI/Rest/SecureRest.cs:90
msgid "The specified token queued for destruction failed to be deleted."
msgstr ""
@ -3562,6 +4009,14 @@ msgstr ""
msgid "There are currently no banned items."
msgstr ""
#: ../../TShockAPI/Commands.cs:4338
msgid "There are currently no banned tiles."
msgstr ""
#: ../../TShockAPI/Commands.cs:4900
msgid "There are currently no regions defined."
msgstr ""
#: ../../TShockAPI/Commands.cs:3213
msgid "There are currently no warps defined."
msgstr ""
@ -3574,6 +4029,12 @@ msgstr ""
msgid "There was an error processing your login or authentication related request."
msgstr ""
#: ../../TShockAPI/Commands.cs:4224
#: ../../TShockAPI/Commands.cs:4282
#, csharp-format
msgid "Tile {0} is not banned."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:901
#, csharp-format
msgid "Tile kill threshold exceeded {0}."
@ -3658,6 +4119,16 @@ msgstr ""
msgid "Unbanned {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4077
#, csharp-format
msgid "Unbanned projectile {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4253
#, csharp-format
msgid "Unbanned tile {0}."
msgstr ""
#: ../../TShockAPI/Bouncer.cs:246
msgid "Unrecognized player direction"
msgstr ""
@ -3828,6 +4299,11 @@ msgstr ""
msgid "World mode set to {0}."
msgstr ""
#: ../../TShockAPI/Commands.cs:4931
#, csharp-format
msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}"
msgstr ""
#: ../../TShockAPI/Commands.cs:778
msgid "You are already logged in, and cannot login again."
msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff