diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 488abe61..bf37110d 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -1308,6 +1308,35 @@ namespace TShockAPI return; } + // Portal Gun Gate projectiles must meet several validation criteria: + // 1. The angle must be within valid discrete directions (45 degree increments) + // 2. Must have an active PortalGunBolt projectile associated + if (type == ProjectileID.PortalGunGate) + { + // Validate the gate angle is one of 8 possible cardinal directions (every 45 degrees) + var wrappedAngle = MathHelper.WrapAngle(ai[0]); + var discreteDirection = (int)Math.Round(wrappedAngle / (MathF.PI / 4f)); + if (discreteDirection is < -3 or > 4) + { + TShock.Log.ConsoleDebug(GetString("Bouncer / OnNewProjectile rejected from portal gate from {0} (invalid angle: {1})", args.Player.Name, discreteDirection)); + args.Player.RemoveProjectile(ident, owner); + args.Handled = true; + return; + } + + // Validate we found an active bolt projectile + var boltProjectileData = args.Player.RecentlyCreatedProjectiles.FirstOrDefault(p => Main.projectile[p.Index].type == ProjectileID.PortalGunBolt); + if (boltProjectileData.Type == 0 || boltProjectileData.Killed) + { + TShock.Log.ConsoleDebug(GetString("Bouncer / OnNewProjectile rejected from portal gate from {0} (missing active Portal Gun bolt)", args.Player.Name, discreteDirection)); + args.Player.RemoveProjectile(ident, owner); + args.Handled = true; + return; + } + + boltProjectileData.Killed = true; + } + if (!TShock.Config.Settings.IgnoreProjUpdate && !args.Player.HasPermission(Permissions.ignoreprojectiledetection)) { if (type == ProjectileID.BlowupSmokeMoonlord diff --git a/TShockAPI/DB/GroupManager.cs b/TShockAPI/DB/GroupManager.cs index 7c8aac4c..4d34098e 100644 --- a/TShockAPI/DB/GroupManager.cs +++ b/TShockAPI/DB/GroupManager.cs @@ -565,7 +565,7 @@ namespace TShockAPI.DB permissions.ForEach(p => group.AddPermission(p)); if (database.Query("UPDATE GroupList SET Commands=@0 WHERE GroupName=@1", group.Permissions, name) == 1) - return "Group " + name + " has been modified successfully."; + return GetString($"Group {name} has been modified successfully."); // Restore old permissions so DB and internal object are in a consistent state group.Permissions = oldperms; @@ -588,7 +588,7 @@ namespace TShockAPI.DB permissions.ForEach(p => group.RemovePermission(p)); if (database.Query("UPDATE GroupList SET Commands=@0 WHERE GroupName=@1", group.Permissions, name) == 1) - return "Group " + name + " has been modified successfully."; + return GetString($"Group {name} has been modified successfully."); // Restore old permissions so DB and internal object are in a consistent state group.Permissions = oldperms; diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 6ed0f8de..a21fe55f 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -2734,8 +2734,11 @@ namespace TShockAPI if (OnPlayerSpawn(args.Player, args.Data, player, spawnX, spawnY, respawnTimer, numberOfDeathsPVE, numberOfDeathsPVP, context)) return true; - - args.Player.Dead = respawnTimer > 0; + + if (!Main.ServerSideCharacter || context != PlayerSpawnContext.SpawningIntoWorld) + { + args.Player.Dead = respawnTimer > 0; + } if (Main.ServerSideCharacter) { diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 99153deb..276ad338 100644 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -1263,6 +1263,11 @@ namespace TShockAPI /// True if allowed, otherwise false private bool OnCreep(int tileType) { + if (WorldGen.generatingWorld) + { + return true; + } + if (!Config.Settings.AllowCrimsonCreep && (tileType == TileID.Dirt || tileType == TileID.CrimsonGrass || TileID.Sets.Crimson[tileType])) { @@ -1456,7 +1461,7 @@ namespace TShockAPI if (!tsplr.FinishedHandshake) { - tsplr.Kick(GetString("Your client didn't send the right connection information."), true); + tsplr.Kick(GetString("Your client didn't send the right connection information."), true, true); args.Handled = true; return; } diff --git a/i18n/de_DE/TShockAPI.po b/i18n/de_DE/TShockAPI.po index 45e7367a..1f4de0e4 100644 --- a/i18n/de_DE/TShockAPI.po +++ b/i18n/de_DE/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,513 +211,513 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} Ausgeführt: {1} {2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -727,421 +727,421 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} versuchte {1} {2} auszuführen." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Fehlgeschlagener anmelde, versuch." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Ungültiger Befehl eingegeben. Geben Sie {0}Hilfe für eine liste gültiger befehle." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Zu viele ungültige Anmeldeversuche." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "Du kannst '{0}sudo {0}{1}' um überschreiben von dieser Prüfung." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "Du hast keine Berechtigung für diesen Befehl." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Du musst diesen Befehl im Spiel nutzen." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/en_PT/TShockAPI.po b/i18n/en_PT/TShockAPI.po index f76d3f62..085c8cda 100644 --- a/i18n/en_PT/TShockAPI.po +++ b/i18n/en_PT/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Pirate English\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ 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/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" -msgstr "#{0} - Yer ship be blocked: {1} ({2} be left)" +msgstr "#{0} - Yer bein' marooned: {1} ({2} be left)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" -msgstr "#{0} - Yer ship be blocked: {1}" +msgstr "#{0} - Yer bein' made to walk the plank: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" -msgstr " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" +msgstr " {0}{1} \"{2}\" (Plunder the IP associated with ye offline carouser's account)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" -msgstr " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" +msgstr " {0}{1} \"{2}{3}\" {4} {5} (Permanently sends that scurvy dog to Davy Jones’ Locker)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Find the player index for the target)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " If no {0} are specified, the command uses {1} by default." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " If no duration is provided, the ban will be permanent." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " Unless {0} is passed to the command, {1} is assumed to be a player or player index" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." -msgstr " -> Logged-in as: {0}; in group {1}." +msgstr " -> Yo Ho Ho! {0} be here; in crew {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} are provided when you add a ban, and can also be viewed with the {1} command." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} are provided when you add a ban, and can be found with the {1} command." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: uses the format {1} to determine the length of the ban." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Ban an offline player by account name" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Ban an offline player by IP address" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- Ban an online player by index (Useful for hard to type names)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Default trees :" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Gem trees :" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- Lists active bans. Color trends towards green as the ban approaches expiration" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- Misc :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Palm trees :" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." -msgstr "" +msgstr "!!! > Set DisableLoginBeforeJoin to true in the config file an' /reload if this here be a problem, ye scallywag." -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." -msgstr "" +msgstr "!!! > Set DisableUUIDLogin to true in the config file an' /reload if this here be a problem, ye scallywag." -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" is not a valid buff ID." -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,521 +203,521 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " -msgstr "(Captain's Order)" +msgstr "(Avast Ye) " #: ../../TShockAPI/Configuration/TShockConfig.cs:496 msgid "(Super Admin) " -msgstr "" +msgstr "(Yer Cap'n) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" -msgstr "" +msgstr "{0} - Ticket Num'r: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" -msgstr "" +msgstr "{0} ({1} doubloons)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." -msgstr "" +msgstr "{0} ({1}) 'as joined, Yo Ho Ho!" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" -msgstr "" +msgstr "{0} (Index: {1}, Account ID: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" -msgstr "" +msgstr "{0} (Index: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" -msgstr "" +msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" -msgstr "" +msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" -msgstr "" - -#: ../../TShockAPI/Commands.cs:1467 -#, csharp-format -msgid "{0} {1} ({2} ago)" -msgstr "" +msgstr "{0} {1}" #: ../../TShockAPI/Commands.cs:1481 #, csharp-format -msgid "{0} {1} ({2})" -msgstr "" +msgid "{0} {1} ({2} ago)" +msgstr "{0} {1} ({2} ago, aye)" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:1495 +#, csharp-format +msgid "{0} {1} ({2})" +msgstr "{0} {1} ({2})" + +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" -msgstr "" +msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" -msgstr "" +msgstr "{0} {1} on {2} ({3} ago, aye)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" -msgstr "" +msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" -msgstr "" +msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" -msgstr "" +msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" -msgstr "" +msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" -msgstr "" +msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" -msgstr "" +msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" -msgstr "" +msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" -msgstr "" +msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." -msgstr "" +msgstr "{0} added account {1} to crew {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" -msgstr "" +msgstr "{0} applied advanced combat techniques volume 2, arr!" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" -msgstr "" +msgstr "{0} applied advanced combat techniques, arr!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -727,421 +727,421 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Ahoy! Auto-save has been disabled!" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Ahoy! Auto-save has been enabled!" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "Ahoy! Auto-save is currently disabled." -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Ahoy! Auto-save is currently enabled!" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,32 +5307,32 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" #: ../../TShockAPI/Rest/SecureRest.cs:93 msgid "Requested token was successfully destroyed." -msgstr "" +msgstr "Requested doubloon was tossed to Davy Jones’ Locker, aye." #: ../../TShockAPI/Handlers/RequestTileEntityInteractionHandler.cs:35 #, csharp-format msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,63 +6005,63 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" #: ../../TShockAPI/Rest/RestManager.cs:158 msgid "The REST authentication token." -msgstr "" +msgstr "Ye REST authentication doubloon thingy." #: ../../TShockAPI/UpdateManager.cs:150 msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 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 "" +msgstr "Ye specified doubloon marked for sinkin' couldn't be sent to Davy Jones’ Locker, arrr." -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" -msgstr "" +msgstr "This here doubloon be shinin' until disabled by verification, aye. ({0}setup)" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/es_ES/TShockAPI.po b/i18n/es_ES/TShockAPI.po index 3fc0368f..3d293fdc 100644 --- a/i18n/es_ES/TShockAPI.po +++ b/i18n/es_ES/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2023-01-18 17:58\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Omitiendo guardado SSC (debido a tshock.ignore.ssc) para {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Estás baneado: {1} ({2} restantes)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Estás baneado: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (Encuentre la IP asociada con la cuenta del objetivo desconectado)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Banea permanentemente este nombre de cuenta)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Buscar el índice de jugador para el objetivo)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Banea permanentemente al jugador conectado por cuenta, UUID, e IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5} (Banea de forma permanente esta dirección IP)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Por ejemplo, un valor de {0} representaría 10 días, 30 minutos, 0 segundos." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " Si no se especifican {0}, el comando utiliza {1} por defecto." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Si no se indica la duración, el baneo será permanente." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " A menos que se pase {0} al comando, se asume que {1} es un jugador o índice de jugador" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> Sesión iniciada como: {0}; en grupo {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} se proporcionan cuando se añade un baneo, y también se pueden ver con el comando {1}." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} se proporcionan cuando se añade un baneo, y se pueden encontrar con el comando {1}." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (nombre de la cuenta), -u (UUID), -n (nombre del jugador), -ip (dirección IP), -e (exacto, {1} será tratado como identificador)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: utiliza el formato {1} para determinar la longitud del baneo." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Banea a un jugador desconectado por su nombre de cuenta" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Banea a un jugador desconectado por su dirección IP" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- Banea a un jugador conectado por índice (Útil para nombres difíciles de escribir)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Árboles por defecto :" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Árboles de gemas :" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- Enumera los baneos activos. El color tiende al verde a medida que el ban se aproxima a su vencimiento" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- Varios :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Palmeras :" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "!!! > En el archivo de configuración marca DisableLoginBeforeJoin como true y usa /reload si esto es un problema." -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "!!! > En el archivo de configuración marca DisableUUIDLogin como true y usa /reload si esto es un problema." -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "!!! Activado inicio de sesión antes de entrar. Las cuentas ya existentes pueden iniciar sesión omitiendo la contraseña del servidor." -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "!!! La contraseña del servidor en config.json fue anulada por el diálogo interactivo, y será ignorada." -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "!!! El inicio de sesión UUID está habilitado. Si el UUID de un usuario coincide con una cuenta, la contraseña del servidor será omitida." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "¡\"{0}\" no es un ID de buff válido!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "\"{0}\" no es una opción de eliminación válida." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" no es un PNJ válido." @@ -193,7 +193,7 @@ msgstr "\"{0}\" no es un PNJ válido." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" no es un número de página válido." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" no es un radio válido." @@ -203,7 +203,7 @@ msgstr "\"{0}\" no es un radio válido." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" solicitó el punto final REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Anuncio de Servidor) " @@ -211,513 +211,513 @@ msgstr "(Anuncio de Servidor) " msgid "(Super Admin) " msgstr "(Super Admin) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - Número de Ticket: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} tókens)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) ha cambiado la contraseña de la cuenta {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) no pudo cambiar la contraseña de la cuenta {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "{0} ({1}) del grupo '{2}' desde '{3}' se ha conectado. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "{0} ({1}) del grupo '{2}' se ha conectado. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) tuvo {2} o más intentos de inicio de sesión no válidos y fue expulsado automáticamente." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) se ha conectado." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "{0} (Índice: {1}, ID de cuenta: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "{0} (Índice: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} (hace {2})" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{0} {1} el {2} (hace {3})" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} añadió la cuenta {1} al grupo {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "¡{0} aplicó el volumen 2 de Técnicas Avanzadas de Combate!" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "¡{0} aplicó Técnicas Avanzadas de Combate!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "¡{0} ha aplicado el sachet del mercader ambulante!" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} intentó registrar la cuenta {1} pero ya está en uso." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "{0} se ha autenticado correctamente como el usuario {1}." -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} se ha autenticado correctamente como el usuario: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "{0} baneó a {1} por '{2}'." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "{0} mató {1} PNJ." msgstr[1] "{0} mató a {1} PNJ." -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} inició una lluvia de slimes." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} inició una lluvia." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} cambió la cuenta {1} al grupo {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} cambió la cantidad máxima de enemigos generados a {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} cambió la cantidad máxima de enemigos generados a 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} cambió la contraseña de la cuenta {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} cambió la tasa de aparición de enemigos a {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} cambió la tasa de aparición de enemigos a 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} cambió la velocidad del viento a {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "{0} eliminó {1} objeto en un radio de {2}." msgstr[1] "{0} eliminó {1} objetos en un radio de {2}." -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "{0} eliminó {1} PNJ en un radio de {2}." msgstr[1] "{0} eliminó a {1} PNJ en un radio de {2}." -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "{0} eliminó {1} proyectil en un radio de {2}." msgstr[1] "{0} eliminó {1} proyectiles en un radio de {2}." -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0} ha desactivado el modo halloween." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} ha desactivado el modo navidad." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "{0} se desconectó." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} ha activado el modo halloween." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} ha activado el modo navidad." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} detuvo la lluvia." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} detuvo la lluvia de slimes." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "{0} ejecutó (argumentos omitidos): {1}{2}." -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} ejecutó: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} falló en identificarse como el usuario: {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "{0} te ha dado {1} {2}." msgstr[1] "{0} te ha dado {1} {2}s." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "A {0} se le ha permitido colocar el bloque {1}." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "A {0} se le ha permitido usar {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "A {0} se le ha permitido usar el proyectil {1}." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "A {0} se le ha prohibido colocar el bloque {1}." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "A {0} se le ha prohibido usar el proyectil {1}." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "A {0} se le ha prohibido usar {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "¡{0} te ha potenciado con {1} ({2}) por {3} segundos!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} ha cambiado tu grupo a {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} ha desactivado los teletransportes entrantes." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} finalizó la invasión en curso." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} ha finalizado la invasión del Ejército del Antiguo." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} se ha conectado." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} se ha conectado. IP: {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0} ha lanzado a {1} a la estratosfera." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0} se lanzó ella misma a la estratosfera." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0} se lanzó el mismo a la estratosfera." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "{0} se desconectó." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0} ha silenciado a {1} por {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "{0} te ha reaparecido." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "¡{0} ha enviado una solicitud al servicio de entrega de conejos!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "¡{0} ha enviado una solicitud al servicio de entrega de gatos!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "¡{0} ha enviado una solicitud al servicio de entrega de perros!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "¡{0} ha enviado una solicitud al servicio de entrega de slimes!" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "{0} ha invocado a {1} {2} vez." msgstr[1] "{0} ha invocado a {1} {2} veces." -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} ha invocado un Muro Carnoso." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "{0} tiene datos SSC en la base de datos, mas tiene el permiso tshock.ignore.ssc; sus datos SSC están siendo ignorados." -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} inició la invasión del ejército de duendes." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} inició la invasión marciana." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} inició la invasión pirata." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} inició la invasión de la legión de escarcha." -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "{0} ha desmuteado a {1}." -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "{0} ha curado a {1} por {2} HP." -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0} se curó a sí misma por {1} HP." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "{0} se curó a sí mismo por {1} HP." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} ya tenía permiso de colocar el bloque {1}." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} ya tenía permiso de usar {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "{0} ya tenía permiso de usar el proyectil {1}." -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "¡{0} ya había muerto!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} ya tenía prohibido usar {1}." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "A {0} ya se le había prohibido colocar el bloque {1}." -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "A {0} ya se le había prohibido usar el proyectil {1}." @@ -727,421 +727,421 @@ msgstr "A {0} ya se le había prohibido usar el proyectil {1}." msgid "{0} is banned! Remove it!" msgstr "¡{0} es un objeto prohibido! ¡Desequípalo!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "{0} ya no está en modo dios." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "{0} no está aceptando susurros." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} no está baneado(a)." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "¡{0} no ha muerto!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "{0} está ahora en modo dios." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "{0} está desconectado(a) y no puede recibir tu respuesta." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "¡{0} te acaba de matar!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{0} expulsó a {1} por '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "{0} lanzó fuegos artificiales sobre ti." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "Se ha matado a {0} NPC." msgstr[1] "Se han matado {killcount} NPC." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} registró una cuenta: \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "{0} restante(s)." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0} renombró a {1}." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0} cambió el tiempo a {1}:{2:D2}." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "{0} cambió el tiempo a 00:00." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "{0} cambió el tiempo a 04:30." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "{0} cambió el tiempo a 12:00." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "{0} cambió el tiempo a 19:30." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "{0} abofeteó por {2} de daño a {1}." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "{0} invocó a {1} {2} vez." msgstr[1] "{0} invocó a {1} {2} veces." -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} inició una luna sangrienta." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} inició una luna llena." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} inició una noche de faroles." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} inició una tormenta de arena." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} inició un eclipse." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "¡{0} inició la luna helada en la ronda {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "¡{0} inició el evento del Ejército del Antiguo!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "¡{0} inició la luna calabaza en la ronda {1}!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} detuvo un eclipse." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} detuvo la luna sangrienta en curso." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} detuvo la tormenta de arena en curso." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} detuvo la noche de faroles." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} eliminó exitosamente la cuenta: {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "¡{0} invocó una Luna Sangrienta!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "¡{0} invocó una Luna Helada!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "¡{0} ha invocado una Invasión de Duendes!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "¡{0} invocó una invasión Marciana!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "¡{0} ha invocado a Mechdusa!" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "¡{0} ha invocado al Señor de la Luna!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "¡{0} invocó una Luna Calabaza!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "¡{0} invocó un eclipse!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "¡{0} ha invocado a {1}" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "¡{0} ha invocado a la Emperatriz de la Luz!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "¡{0} ha invocado los Piratas!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "¡{0} ha invocado a la Legión de Escarcha!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} teletransportó a {1} hacia ti." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} se teletransportó hacia ti." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} te teletransportó hacia {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0} intentó ejecutar (argumentos omitidos) {1}{2}." -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} intentó ejecutar {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} desencadenó un meteoro." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} te transportó hacia {1}." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "{0} fue baneado por '{1}'." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "Se expulsó a {0} por '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "Se teletransportó a {0} hacia ti." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "El grupo de {0} es {1}." -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "La última IP conocida de {0} es {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "El último inicio de sesión de {0} fue el {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "La fecha de registro de {0} es el {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "{0}{1} no define ningún alias." -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "Ayuda de {0}{1}: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "{0}{1}/{2} en {3} @ {4}:{5} (TShock para Terraria v{6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - Inicia tu sesión usando tu UUID y nombre de personaje." -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login - Inicias sesión usando tu contraseña y el nombre del personaje." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login - Inicias sesión usando tu nombre de usuario y contraseña." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add owner" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add username password group -- Agrega al usuario especificado" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del username -- Elimina al usuario especificado" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group username newgroup -- Cambia el grupo de un usuario" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password username newpassword -- Cambia la contraseña de un usuario" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "* **Comandos**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "* **Predeterminado**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "* **Tipo de campo**: `{0}`" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "* **Permisos**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "**Ejemplo de Uso**: `{0}?{1}`" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "**Sustantivos**:" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "**Verbos**:" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - Has sido baneado(a): {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1156,8 +1156,8 @@ msgstr "{0} de {1} [{2}]" msgid "{0} from {1} [{2}]" msgstr "{0} de {1} [{2}]" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "=== Plugin Solicitado ===" msgstr[1] "=== Plugins Solicitados ===" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "un Ciervíclope" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "Ya existe un grupo con el mismo nombre." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "Esto causará muchos fallos. Debes borrar y recrear manualmente el campo permitido." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "Un servidor malicioso puede robar fácilmente la UUID de un usuario. Considera desactivar esta opción si tienes un servidor público." -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "un Platillo Marciano" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "Un meteoro ha sido desencadenado." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "una Columna de Nebulosa" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "Se estableció una contraseña para este servidor en config.json y está en uso." -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "Debes escribir el nombre del jugador para poder expulsarlo. Por favor escribe su nombre." -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "Un plugin en el servidor detuvo tu inicio de sesión." @@ -1221,87 +1221,87 @@ msgstr "Un plugin en el servidor detuvo tu inicio de sesión." msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "Se bloqueó un inicio de sesión REST de {0} dado que ya tiene {1} tókens restringidos por frecuencia, alcanzando el umbral de RESTMaximumRequestsPerInterval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "una Columna Solar" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "una Columna de Polvo Estelar" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "Una cuenta de usuario con ese nombre no existe." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "una Columna de Vórtice" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "¡La cuenta {0} no existe! Por lo tanto, no se puede cambiar la contraseña." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "Se añadió la cuenta {0} al grupo {1}." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "La cuenta {0} ha sido cambiada al grupo {1}." -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "¡Se requiere una cuenta! ¡Por favor, {0}register o {0}login para jugar!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Cuenta eliminada con éxito." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "Usuarios REST activos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - Añade una prohibición de objeto." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "add - Añade un nuevo grupo." -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "add - Agrega una prohibición de proyectil." -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "add - Agrega una prohibición de bloque." -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "{0} añadido a la lista blanca." -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "Añadido buff al PNJ {0} de forma anormal." -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "Se añadió el grupo {0} a {1}." -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "Se añadió el usuario {0} a {1}." -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "addperm - Concede permisos a un grupo." @@ -1310,16 +1310,16 @@ msgstr "addperm - Concede permisos a un grupo." msgid "AddUser SQL returned an error ({0})" msgstr "SQL AddUser devolvió un error ({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "Alias de {0}{1}: {0}{2}" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "Se matará a todos los PNJ vivos (excepto los ciudadanos) en el servidor si no introduces un nombre o ID." -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "todos los jefes" @@ -1327,162 +1327,162 @@ msgstr "todos los jefes" msgid "All done! :)" msgstr "¡Todo listo! :)" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "Todos los tókens REST han sido destruidos." -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "Memoria reservada: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Permite a un grupo usar un objeto." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - Permite a un grupo usar un proyectil." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow - Permite a un grupo colocar un bloque." -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "allow - Permite a un usuario acceder a dicha región." -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "allowg - Permite a un grupo acceder a dicha región." -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "Arbolgema de Ámbar" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "Arbolgema de Amatista" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "Se ha detectado una cuenta de usuario en la base de datos, pero setup-code.txt sigue presente." -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Ha ocurrido una excepción durante la restauración de la base de datos: {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Ha ocurrido una excepción durante la transacción de la base de datos: {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "Se ha producido una excepción al ejecutar un comando." -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Un identificador para un nombre de personaje." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "Un identificador para un nombre de Cuenta de Usuario de TShock." -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "Un identificador para un UUID." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "Un identificador para una dirección IP en formato de octeto. Por ejemplo, '{0}'." -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Se pidió comprobar si hay actualizaciones. De haber una se te notificará en breve." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "Sintaxis de Molestar" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "Molestando a {0} por {1} segundos." -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Molesta a un jugador durante un período de tiempo." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "Anónimo solicitó un punto final REST: {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "Anti-construcción ha sido desactivado." -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "Anti-construcción ha sido activado." -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "Parámetros: add [nombre de warp], del [nombre de warp], list [página]." -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "Parámetros: send [jugador] [nombre de warp], hide [nombre de warp] [Activar(true/false)]." -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "Autenticado como {0} correctamente." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "AutoGuardado Desactivado" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "AutoGuardado Activado" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Se ha desactivado el AutoGuardado" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Se ha activado el AutoGuardado" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "El autoguardado esta actualmente desactivado" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "El autoguardado está actualmente activado" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "Comandos de Baneo disponibles:" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "Identificadores disponibles ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Comandos de Región Disponibles ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "Sub-Comandos REST Disponibles:" @@ -1499,1038 +1499,1058 @@ msgstr "¡Respaldo fallido!" msgid "Backup Thread" msgstr "Hilo de Respaldo" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "Respaldos Desactivados" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "Respaldos Activados" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Intento de inicio de sesión inválido." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "ban {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "ban {0} " -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "ban {0} [Parámetros]" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "El ban {0} ha sido revocado por {1}." -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "El ban {0} acaba de marcarse como expirado." -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "Sintaxis de Ban Add" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "Ban añadido. Se creó el Número de Ticket {0} para el identificador {1}." -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Ban añadido. Número de ticket: {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "Sintaxis de Ban Del" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "Sintaxis de Ban Details" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "Sintaxis de Ban List" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Ban revocado." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Ejemplos del Uso de Ban" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "Se ha baneado a {0}." -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "Se ha prohibido el proyectil {0}." -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "Se ha prohibido el bloque {0}." -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "Baneado: {0}" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "Baneado." -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "Baneos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "Árbol Básico" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "Betsy" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "La Luna Sangrienta fue marcada como {0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "Estado de la Luna Sangrienta: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "Árbol Boreal" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" -msgstr "Bouncer / HandleNpcTalk rechazó desde el bouncer fuera de area de {0}" +msgstr "Bouncer / HandleNpcTalk rechazado por el bouncer, fuera de los bordes desde {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" -msgstr "Bouncer / HandleNpcTalk rechazó desde el bouncer limitado de {0}" +msgstr "Bouncer / HandleNpcTalk rechazado por el bouncer, limitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" -msgstr "Bouncer / OnChestItemChange rechazo desde cofre no coincidente de {0}" +msgstr "Bouncer / OnChestItemChange rechazado por cofre no coincidente desde {0}" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" -msgstr "Bouncer / OnChestItemChange rechazo desde desactivación de {0}" +msgstr "Bouncer / OnChestItemChange rechazado por desactivación desde {0}" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" -msgstr "Bouncer / OnChestItemChange rechazo desde la comprobación de rango de {0}" +msgstr "Bouncer / OnChestItemChange rechazado por comprobación de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" -msgstr "Bouncer / OnChestItemChange rechazo desde ¿protección de región? de {0}" +msgstr "Bouncer / OnChestItemChange rechazado por ¿protección de región? desde {0}" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" -msgstr "Bouncer / OnChestOpen rechazo desde desactivación de {0}" +msgstr "Bouncer / OnChestOpen rechazado por desactivación desde {0}" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" -msgstr "Bouncer / OnChestOpen rechazo desde comprobación de rango de {0}" +msgstr "Bouncer / OnChestOpen rechazado por comprobación de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" -msgstr "Bouncer / OnChestOpen rechazo desde comprobación de región de {0}" +msgstr "Bouncer / OnChestOpen rechazado por comprobación de región desde {0}" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" -msgstr "Bouncer / OnFishOutNPC rechazo ¡por no encontrar proyectil de señuelo activo! - De {0}" +msgstr "Bouncer / OnFishOutNPC rechazado ¡por no encontrar proyectil de señuelo activo! - Desde {0}" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" -msgstr "Bouncer / OnFishOutNPC rechazo ¡por no usar una caña de pescar! - De {0}" +msgstr "Bouncer / OnFishOutNPC rechazado ¡por no usar una caña de pescar! - Desde {0}" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" -msgstr "Bouncer / OnFishOutNPC rechazo ¡por no estar el NPC en la lista de NPC que pueden ser pescados! - De {0}" +msgstr "Bouncer / OnFishOutNPC rechazado ¡por no estar el NPC en la lista de NPC que pueden ser pescados! - Desde {0}" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" -msgstr "Bouncer / OnFishOutNPC rechazo comprobaciones de rango de {0}" +msgstr "Bouncer / OnFishOutNPC rechazado, comprobaciones de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" -msgstr "Bouncer / OnFishOutNPC rechazó permisos de invocación de jefe de {0}" +msgstr "Bouncer / OnFishOutNPC rechazado, permisos de invocación de jefe desde {0}" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" -msgstr "Bouncer / OnFoodPlatterTryPlacing rechazó desactivación de {0}" +msgstr "Bouncer / OnFoodPlatterTryPlacing rechazado, desactivación desde {0}" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" -msgstr "Bouncer / OnFoodPlatterTryPlacing rechazó objeto no puesto manualmente de {0}" +msgstr "Bouncer / OnFoodPlatterTryPlacing rechazado, objeto no colocado manualmente desde {0}" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" -msgstr "Bouncer / OnFoodPlatterTryPlacing rechazó los permisos de {0}" +msgstr "Bouncer / OnFoodPlatterTryPlacing rechazado, permisos desde {0}" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" -msgstr "Bouncer / OnFoodPlatterTryPlacing rechazó las comprobaciones de rango de {0}" +msgstr "Bouncer / OnFoodPlatterTryPlacing rechazado, comprobaciones de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" -msgstr "Bouncer / OnFoodPlatterTryPlacing rechazó la colocación de bloques válidos desde {0}" +msgstr "Bouncer / OnFoodPlatterTryPlacing rechazado, colocación de bloques válida desde {0}" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" -msgstr "Bouncer / OnGemLockToggle colocación inválida/deadmod de {0}" +msgstr "Bouncer / OnGemLockToggle colocación inválida/deadmod desde {0}" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" -msgstr "Bouncer / OnGemLockToggle rechazada la comprobación de umbral de {0}" +msgstr "Bouncer / OnGemLockToggle rechazado, comprobación de límites desde {0}" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" -msgstr "Bouncer / OnGemLockToggle rechazó el estado deshabilitado desde {0}" +msgstr "Bouncer / OnGemLockToggle rechazado, deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" -msgstr "Bouncer / OnGemLockToggle rechazó la comprobación de permisos de {0}" +msgstr "Bouncer / OnGemLockToggle rechazado, comprobación de permisos desde {0}" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." -msgstr "Bouncer / OnGetSection rechazó un nombre de jugador vacío." +msgstr "Bouncer / OnGetSection rechazado, nombre de jugador vacío." -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" -msgstr "Bouncer / OnGetSection rechazó el paquete GetSection de {0}" +msgstr "Bouncer / OnGetSection rechazado, paquete GetSection desde {0}" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" -msgstr "Bouncer / OnHealOtherPlayer 0.2 comprobar desde {0}" +msgstr "Bouncer / OnHealOtherPlayer comprobación 0.2 desde {0}" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" -msgstr "Bouncer / OnHealOtherPlayer rechazó el estado deshabilitado/limitado desde {0}" +msgstr "Bouncer / OnHealOtherPlayer rechazado, deshabilitado/limitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" -msgstr "Bouncer / OnHealOtherPlayer rechazó el umbral de sanar a otro desde {0} {1}/{2}" +msgstr "Bouncer / OnHealOtherPlayer rechazado, umbral de sanar a otro desde {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" -msgstr "Bouncer / OnHealOtherPlayer rechazó comprobaciones nulas" +msgstr "Bouncer / OnHealOtherPlayer rechazado, comprobaciones nulas" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" -msgstr "Bouncer / OnItemDrop rechazó desde un intento de crasheo desde {0}" +msgstr "Bouncer / OnItemDrop rechazado por intento de crasheo desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1190 +#, csharp-format +msgid "Bouncer / OnItemDrop rejected from disabled from {0}" +msgstr "Bouncer / OnItemDrop rechazado por estado deshabilitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1170 +#, csharp-format +msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" +msgstr "Bouncer / OnItemDrop rechazado por comprobación de objeto prohibido arrojado / comprobación de stack máximo / comprobación de stack mínimo desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1139 +#, csharp-format +msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" +msgstr "Bouncer / OnItemDrop rechazado por comprobación de rango de duplicación desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1160 +#, csharp-format +msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" +msgstr "Bouncer / OnItemDrop rechazado por comprobación de objeto arrojado/recogido desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1124 +#, csharp-format +msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" +msgstr "Bouncer / OnItemDrop rechazado por comprobación de prefijo desde {0}" #: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format -msgid "Bouncer / OnItemDrop rejected from disabled from {0}" -msgstr "Bouncer / OnItemDrop rechazó desde estado deshabilitado de {0}" - -#: ../../TShockAPI/Bouncer.cs:1130 -#, csharp-format -msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" -msgstr "Bouncer / OnItemDrop rechazó la comprobación de objeto prohibido arrojado / comprobación de stack máximo / comprobación de stack mínimo desde {0}" - -#: ../../TShockAPI/Bouncer.cs:1099 -#, csharp-format -msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" -msgstr "Bouncer / OnItemDrop rechazó desde la comprobación de rango de duplicación de {0}" - -#: ../../TShockAPI/Bouncer.cs:1120 -#, csharp-format -msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" -msgstr "Bouncer / OnItemDrop rechazó desde la comprobación de objeto arrojado/recogido de {0}" - -#: ../../TShockAPI/Bouncer.cs:1084 -#, csharp-format -msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" -msgstr "Bouncer / OnItemDrop rechazado desde la comprobación de prefijo de {0}" - -#: ../../TShockAPI/Bouncer.cs:1110 -#, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" -msgstr "Bouncer / OnItemDrop rechazado desde la comprobación de rango de {0}" +msgstr "Bouncer / OnItemDrop rechazado por comprobación de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" -msgstr "Bouncer / OnItemDrop rechazado desde un sospechoso de {0}" +msgstr "Bouncer / OnItemDrop rechazado por acción furtiva desde {0}" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" -msgstr "Bouncer / OnKillMe rechazó el texto de muerte de longitud incorrecta de {0}" +msgstr "Bouncer / OnKillMe rechazado, texto mortuorio de longitud maliciosa desde {0}" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" -msgstr "Bouncer / OnKillMe rechazó el mensaje personalizado de muerte de {0}" +msgstr "Bouncer / OnKillMe rechazado, mensaje mortuorio personalizado desde {0}" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" -msgstr "Bouncer / OnKillMe rechazó el daño elevado de {0} {1}" +msgstr "Bouncer / OnKillMe rechazado, daño elevado desde {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" -msgstr "Bouncer / OnKillMe rechazó la comprobación de índice de {0}" +msgstr "Bouncer / OnKillMe rechazado, comprobación de índice desde {0}" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" -msgstr "Bouncer / OnLiquidSet rechazó el permiso de construcción de {0}" +msgstr "Bouncer / OnLiquidSet rechazado, permiso de construcción desde {0}" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" -msgstr "Bouncer / OnLiquidSet rechazo por deshabilitamiento de {0}" +msgstr "Bouncer / OnLiquidSet rechazado, deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" -msgstr "Bouncer / OnLiquidSet rechazado desde el umbral de líquido de {0} {1}/{2}" +msgstr "Bouncer / OnLiquidSet rechazado por umbral de líquido desde {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" -msgstr "Bouncer / OnLiquidSet rechazó comprobación inválida desde {0}" +msgstr "Bouncer / OnLiquidSet rechazado, comprobación inválida desde {0}" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" -msgstr "Bouncer / OnLiquidSet rechazó el tipo de líquido {0} de {1} sosteniendo {2}" +msgstr "Bouncer / OnLiquidSet rechazado, tipo de líquido {0} de {1} sosteniendo {2}" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" -msgstr "Bouncer / OnLiquidSet rechazó las comprobaciones de rango de {0}" +msgstr "Bouncer / OnLiquidSet rechazado, comprobaciones de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" -msgstr "Bouncer / OnLiquidSet rechazó limitación desde {0}" +msgstr "Bouncer / OnLiquidSet rechazado, limitación desde {0}" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" -msgstr "Bouncer / OnMassWireOperation rechazó los permisos de construcción desde {0}" +msgstr "Bouncer / OnMassWireOperation rechazado, permisos de construcción desde {0}" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" -msgstr "Bouncer / OnMassWireOperation rechazó por deshabilitación desde {0}" +msgstr "Bouncer / OnMassWireOperation rechazado, deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" -msgstr "Bouncer / OnMassWireOperation rechazó la colocación válida desde {0}" +msgstr "Bouncer / OnMassWireOperation rechazado, colocación válida desde {0}" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "Bouncer / OnNewProjectile ¡Favor reportar esto a TShock! Normalmente esto es un rechazo desde {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "Bouncer / OnNewProjectile ¡Favor reportar esto a TShock! Normalmente esto es un rechazo desde {0} {1} (golf)" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "Bouncer / OnNewProjectile rechazado por estar sobre el límite de proyectil desde {0}" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." -msgstr "Bouncer / OnNewProjectile rechazado desde el bouncer por IA modificada de {0}." +msgstr "Bouncer / OnNewProjectile rechazado por el bouncer, IA modificada desde {0}." -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." -msgstr "Bouncer / OnNewProjectile rechazado desde el bouncer por proyectil Cenit modificado de {0}." +msgstr "Bouncer / OnNewProjectile rechazado por el bouncer, proyectil Cenit modificado desde {0}." -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" -msgstr "Bouncer / OnNewProjectile rechazado desde el bouncer por limitación de {0}" +msgstr "Bouncer / OnNewProjectile rechazado por el bouncer, limitación desde {0}" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" -msgstr "Bouncer / OnNewProjectile rechazó desde estado deshabilitado de {0}" - -#: ../../TShockAPI/Bouncer.cs:1238 -#, csharp-format -msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" -msgstr "Bouncer / OnNewProjectile rechazado por uso de proyectil hostil de {0}" - -#: ../../TShockAPI/Bouncer.cs:1183 -#, csharp-format -msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" -msgstr "Bouncer / OnNewProjectile rechazado por comprobación de permisos de {0} {1}" +msgstr "Bouncer / OnNewProjectile rechazado por estado deshabilitado desde {0}" #: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format +msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" +msgstr "Bouncer / OnNewProjectile rechazado por uso de proyectil hostil desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1239 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" +msgstr "Bouncer / OnNewProjectile rechazado por comprobación de permisos desde {0} {1}" + +#: ../../TShockAPI/Bouncer.cs:1350 +#, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile rechazado por umbral de creación de proyectil desde {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile rechazado por límite de daño de proyectil desde {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" -msgstr "Bouncer / OnNewProjectile rechazado por lápidas de {0}" +msgstr "Bouncer / OnNewProjectile rechazado por lápidas desde {0}" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" -msgstr "Bouncer / OnNewProjectile rechazado por comprobación extraña de {0} {1}" +msgstr "Bouncer / OnNewProjectile rechazado por comprobación extraña desde {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." -msgstr "Bouncer / OnNPCAddBuff rechazó un buff anormal ({0}, de duración {4}) aplicado a {1} ({2}) por {3}." +msgstr "Bouncer / OnNPCAddBuff rechazado, buff anormal ({0}, de duración {4}) aplicado a {1} ({2}) por {3}." -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" -msgstr "Bouncer / OnNPCAddBuff rechazó el estado deshabilitado desde {0}" +msgstr "Bouncer / OnNPCAddBuff rechazado, deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" -msgstr "Bouncer / OnNPCAddBuff rechazó PNJ nulo de {0}" +msgstr "Bouncer / OnNPCAddBuff rechazado, PNJ nulo desde {0}" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" -msgstr "Bouncer / OnNPCAddBuff rechazó actualización de PNJ fuera de los bordes desde {0}" +msgstr "Bouncer / OnNPCAddBuff rechazado, actualización de PNJ fuera de los bordes desde {0}" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" -msgstr "" +msgstr "Bouncer / OnNPCStrike rechazado por el bouncer, limitación desde {0}" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" -msgstr "" +msgstr "Bouncer / OnNPCStrike rechazado por umbral de daño desde {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" -msgstr "" +msgstr "Bouncer / OnNPCStrike rechazado por estado deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" -msgstr "" +msgstr "Bouncer / OnNPCStrike rechazado por comprobaciones de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceChest / rechazado por estilo de colocación inválido de {0}" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1535 -#, csharp-format -msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1583 -#, csharp-format -msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceChest rechazado por estado deshabilitado desde {0}" #: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format -msgid "Bouncer / OnPlaceChest rejected from range check from {0}" -msgstr "" +msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" +msgstr "Bouncer / OnPlaceChest rechazado por comprobación inválida desde {0}" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1639 +#, csharp-format +msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" +msgstr "Bouncer / OnPlaceChest rechazado por permiso inválido desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1647 +#, csharp-format +msgid "Bouncer / OnPlaceChest rejected from range check from {0}" +msgstr "Bouncer / OnPlaceChest rechazado por comprobación de rango desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceChest rechazado por comprobación extraña desde {0}" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceChest rechazado por comprobación de colocación extraña desde {0}" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceItemFrame rechazado, deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceItemFrame rechazado, permisos desde {0}" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceItemFrame rechazado, comprobaciones de rango desde {0}" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceItemFrame rechazado, colocación de bloques válida desde {0}" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceObject rechazado, creación/selección incómoda de bloques desde {0}" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" -msgstr "" +msgstr "Bouncer / OnPlaceObject rechazado, Hacha de Regeneración solo coloca brotes {0}" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceObject rechazado, bloques prohibidos desde {0}" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceObject rechazado, la gente muerta no hace cosas desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2334 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected disabled from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, deshabilitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2308 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, contenedores falsos desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2407 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, bucle loco desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2392 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, datos de casilla nulos desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2381 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, colocación de objeto con estilo inválido {1} (se esperaba {2}) desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2285 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, bloque fuera de los bordes desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2292 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, casilla x fuera de los bordes desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2299 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, casilla y fuera de los bordes desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2423 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected range checks from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, comprobaciones de rango desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2345 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" +msgstr "Bouncer / OnPlaceObject rechazado, demoledor ¡no puedo creer que no son escombros! desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2431 +#, csharp-format +msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" +msgstr "Bouncer / OnPlaceObject rechazado, umbral de colocación de bloque desde {0} {1}/{2}" #: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format -msgid "Bouncer / OnPlaceObject rejected disabled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2252 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2351 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2336 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2325 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2229 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2236 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2243 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2367 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected range checks from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2289 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2375 -#, csharp-format -msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2222 -#, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceObject rechazado, colocaciones válidas desde {0}" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2413 -#, csharp-format -msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2420 -#, csharp-format -msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2399 -#, csharp-format -msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1642 -#, csharp-format -msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1650 -#, csharp-format -msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1960 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1942 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1951 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1933 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1893 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1902 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1911 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1924 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1875 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:1884 -#, csharp-format -msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2667 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2603 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2610 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2630 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2621 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2594 -msgid "Bouncer / OnPlayerDamage rejected null check" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2639 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2648 -#, csharp-format -msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2488 -#, csharp-format -msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:2480 -#, csharp-format -msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" -msgstr "" +msgstr "Bouncer / OnPlaceTileEntity rechazado, deshabilitado desde {0}" #: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format -msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" -msgstr "" +msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" +msgstr "Bouncer / OnPlaceTileEntity rechazado, permisos desde {0}" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:2476 +#, csharp-format +msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" +msgstr "Bouncer / OnPlaceTileEntity rechazado, comprobaciones de rango desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2455 +#, csharp-format +msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" +msgstr "Bouncer / OnPlaceTileEntity rechazado, colocación de bloque válida desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1698 +#, csharp-format +msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" +msgstr "Bouncer / OnPlayerAnimation rechazado por estado deshabilitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:1706 +#, csharp-format +msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" +msgstr "Bouncer / OnPlayerAnimation rechazado por limitación desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2016 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: el buff no se puede aplicar por tanto tiempo" + +#: ../../TShockAPI/Bouncer.cs:1998 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando el buff {2} a {3} por {4} ticks: el buff no puede aplicarse a no-remitentes" + +#: ../../TShockAPI/Bouncer.cs:2007 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: el buff no se puede aplicar sin JcJ" + +#: ../../TShockAPI/Bouncer.cs:1989 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: el buff no está en la lista blanca" + +#: ../../TShockAPI/Bouncer.cs:1949 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: tipo de buff inválido" + +#: ../../TShockAPI/Bouncer.cs:1958 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: remitente está siendo deshabilitado" + +#: ../../TShockAPI/Bouncer.cs:1967 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: remitente está siendo limitado" + +#: ../../TShockAPI/Bouncer.cs:1980 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: remitente fuera de rango del objetivo" + +#: ../../TShockAPI/Bouncer.cs:1931 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: ID de objetivo fuera de los límites" + +#: ../../TShockAPI/Bouncer.cs:1940 +#, csharp-format +msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" +msgstr "Bouncer / OnPlayerBuff rechazado, {0} ({1}) aplicando buff {2} a {3} por {4} ticks: el objetivo es nulo" + +#: ../../TShockAPI/Bouncer.cs:2731 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" +msgstr "Bouncer / OnPlayerDamage rechazado, mensaje mortuorio personalizado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2664 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" +msgstr "Bouncer / OnPlayerDamage rechazado, umbral de daño desde {0} {1}/{2}" + +#: ../../TShockAPI/Bouncer.cs:2671 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" +msgstr "Bouncer / OnPlayerDamage rechazado, umbral2 de daño desde {0} {1}/{2}" + +#: ../../TShockAPI/Bouncer.cs:2691 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" +msgstr "Bouncer / OnPlayerDamage rechazado, deshabilitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2682 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" +msgstr "Bouncer / OnPlayerDamage rechazado, hostil desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2655 +msgid "Bouncer / OnPlayerDamage rejected null check" +msgstr "Bouncer / OnPlayerDamage rechazado, comprobación nula" + +#: ../../TShockAPI/Bouncer.cs:2700 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" +msgstr "Bouncer / OnPlayerDamage rechazado, comprobaciones de rango desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2709 +#, csharp-format +msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" +msgstr "Bouncer / OnPlayerDamage rechazado, limitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2549 +#, csharp-format +msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" +msgstr "Bouncer / OnPlayerPortalTeleport rechazado, deshabilitado/limitado desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2541 +#, csharp-format +msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" +msgstr "Bouncer / OnPlayerPortalTeleport rechazado, teletransporte fuera de los bordes desde {0}" + +#: ../../TShockAPI/Bouncer.cs:2530 +#, csharp-format +msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" +msgstr "Bouncer / OnPlayerPortalTeleport rechazado, teletransporte inalcanzable desde {0}" + +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:495 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:479 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:487 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:561 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:565 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" -msgstr "" - -#: ../../TShockAPI/Bouncer.cs:573 -#, csharp-format -msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" -msgstr "" +msgstr "Bouncer / OnPlayerUpdate *habría rechazado* desde (última posición en red cero) {0}" #: ../../TShockAPI/Bouncer.cs:510 #, csharp-format -msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:502 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" +msgstr "Bouncer / OnPlayerUpdate forzó la expulsión (se intentó establecer velocidad +/- 50000) desde {0}" + +#: ../../TShockAPI/Bouncer.cs:486 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" +msgstr "Bouncer / OnPlayerUpdate forzó la expulsión (se intentó establecer velocidad al infinito) desde {0}" + +#: ../../TShockAPI/Bouncer.cs:494 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" +msgstr "Bouncer / OnPlayerUpdate forzó la expulsión (se intentó establecer velocidad a un NaN) desde {0}" + +#: ../../TShockAPI/Bouncer.cs:576 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" +msgstr "Bouncer / OnPlayerUpdate rechazado desde (??) {0}" + +#: ../../TShockAPI/Bouncer.cs:580 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" +msgstr "Bouncer / OnPlayerUpdate rechazado desde (bajo ??) {0}" + +#: ../../TShockAPI/Bouncer.cs:588 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" +msgstr "Bouncer / OnPlayerUpdate rechazado desde (los cadáveres no se mueven) {0}" + +#: ../../TShockAPI/Bouncer.cs:525 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" +msgstr "Bouncer / OnPlayerUpdate rechazado desde (longitud de inventario) {0}" + +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" -msgstr "" +msgstr "Bouncer / OnPlayerUpdate rechazado desde (comprobación de posición) {0}" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" -msgstr "" +msgstr "Bouncer / OnPlayerZone rechazado, desde {0}" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" -msgstr "" +msgstr "Bouncer / OnProjectileKill rechazado por el bouncer, limitación desde {0}" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" -msgstr "" +msgstr "Bouncer / OnProjectileKill rechazado por estado deshabilitado desde {0}" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" -msgstr "" +msgstr "Bouncer / OnProjectileKill rechazado por índice de proyectil negativo desde {0}" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" -msgstr "" +msgstr "Bouncer / OnReleaseNPC rechazado, liberación de PNJ desde {0}" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" -msgstr "" +msgstr "Bouncer / OnReleaseNPC rechazado, fuera de los bordes desde {0}" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" -msgstr "" +msgstr "Bouncer / OnReleaseNPC rechazado, limitación desde {0}" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" -msgstr "" +msgstr "Bouncer / OnReleaseNPC liberó una criatura distinta desde {0}" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (hacha) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (tope de cofre) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (martillo) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (martillo2) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por (rollo de cuerda inconcebible) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (ms1) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (pdm) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (pico) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por (estilo de colocación) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (tb) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado desde (colocación de bloque válida) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por activador/pulsificador desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por construcción desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por deshabilitación desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por editData fuera de los bordes {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por explosivos/fusibles desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por hielo/construcción desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por colocación de cable desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por sts permite corte desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por limitación desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por umbral de destrucción de bloques desde {0}, (valor: {1})" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por umbral de colocación de bloques desde {0}, (valor: {1})" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por colocación de bloque no coincidente con el createTile del objeto seleccionado {0} {1} {2} selectedItemID:{3} createTile:{4}" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por usar el báculo de hielo pero no colocar un bloque de hielo {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por colocación de muro no coincidente con el createWall del objeto seleccionado {0} {1} {2} selectedItemID:{3} createWall:{4}" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por control de flujo extraño y confuso desde {0}" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit rechazado por cortador de cable desde {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" -msgstr "" +msgstr "Bouncer / OnTileEdit super aceptado desde (bloque de hielo) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" -msgstr "" +msgstr "Bouncer / OnUpdateNPCHome rechazado, permiso de construcción de casa para PNJ desde {0}" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" -msgstr "" +msgstr "Bouncer / OnUpdateNPCHome rechazado, comprobaciones de rango desde {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" -msgstr "" +msgstr "Bouncer / SendTileRect aceptó edición de mundo por parte del cliente desde {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" -msgstr "" +msgstr "Bouncer / SendTileRect rechazado por estar deshabilitado desde {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" +msgstr "Bouncer / SendTileRect rechazado por limitación desde {0}" #: ../../TShockAPI/Utils.cs:136 #, csharp-format @@ -2542,27 +2562,27 @@ msgstr "Anuncio: {0}" msgid "Broadcast: {0}: {1}" msgstr "Anuncio: {0}: {1}" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "Transmite un mensaje a todo el servidor." -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "Sintaxis y Ejemplo de Buff" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "Sintaxis y Ejemplo de Butcher" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "Tu cuenta tiene activado el bypass de SSC. Los datos SSC no serán cargados ni guardados." -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "Cactus" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "SqlColumn.DefaultCurrentTimestamp no puede marcarse como true (verdadero) cuando el MySqlDbType no es DateTime" @@ -2571,79 +2591,79 @@ msgstr "SqlColumn.DefaultCurrentTimestamp no puede marcarse como true (verdadero msgid "Cannot load module {0} as it does not derive from {1}" msgstr "No se puede cargar el módulo {0} ya que no se deriva de {1}" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "Algunos proyectiles fueron ignorados por detección de trampas." -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "Se cambió la generación máxima de enemigos a {0}." -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "Se cambió la generación máxima de enemigos a 5." -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "Se cambió la tasa de aparición de enemigos a {0}." -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "Se cambió la tasa de aparición de enemigos a 600." -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "Cambia la contraseña del servidor." -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "Cambia la velocidad del viento." -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "Cambia el tipo de mundo." -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "Cambia la contraseña de tu cuenta." -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "El color de chat para \"{0}\" es \"{1}\"." -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "Color de chat para grupo \"{0}\" establecido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "Busca actualizaciones de TShock." -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "clear - Elimina los puntos de región temporales." -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "Sintaxis de Clear" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "Eliminados todos los usuarios de la lista de misiones completadas hoy del pescador." -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "Elimina objetos o proyectiles." -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color - Cambia el color de chat de un grupo." -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "Alias del comando: {0}, {1}, {2}" @@ -2652,20 +2672,20 @@ msgstr "Alias del comando: {0}, {1}, {2}" msgid "Command failed, check logs for more details." msgstr "Comando fallido, compruebe los registros para más detalles." -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "Comandos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "Comandos: add, del, hide, list, send, [nombre de warp]." -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "La ruta de configuración se ha establecido en {0}" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "Recarga de configuración, permisos y regiones completada. Algunos cambios pueden requerir un reinicio del servidor." @@ -2673,20 +2693,20 @@ msgstr "Recarga de configuración, permisos y regiones completada. Algunos cambi msgid "Connect to the internet to figure out what to download?" msgstr "¿Conectarse a Internet para averiguar qué descargar?" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "No se permite la conexión a través de un proxy." -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "Uso correcto: {0}overridessc|{0}ossc " -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "Palmera Corrupta" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "No se pudo usar la ruta / formato de logs dado; se usarán los valores p msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "No se encontró una biblioteca de base de datos (probablemente Sqlite3.dll)" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "No se pudo encontrar un warp llamado {0} para eliminarlo." -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "No se encontró ningún jugador llamado \"{0}\"" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "No se encontró ningún jugador llamado \"{0}\"." -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "Ninguno de los jugadores se llama \"{0}\"" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "No se pudo encontrar el grupo {0}" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "No se pudo encontrar al jugador {0}." -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "No se pudo encontrar la región especificada" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "No se pudo encontrar el warp especificado." -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "No se pudo encontrar la región {0}." -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "No se pudo encontrar el objetivo especificado. Revise que esté bien escrito." -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "¡No se pudo renombrar a {0}!" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "Intento de crasheo a través de un paquete de chat largo." -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "Crea tablas de referencia para datos de tipo Terraria y el sistema de permisos TShock en la carpeta del servidor." -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "Crea: con la contraseña como parte del grupo owner." @@ -2781,26 +2801,26 @@ msgstr "CreativePowerHandler recibió una petición de comprobación de permiso msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "CreativeUnlocksHandler recibió una petición de apertura no-vainilla. Valor de campo al azar: {0} pero debería ser 0 de {1}" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "Palmera Carmesí" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "Número máximo actual de enemigos generados: {0}." -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "Tasa actual de generación de enemigos: {0}." -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "Intento de Exploit de Muerte: Daño {0}" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "Razón de muerte fuera de los límites normales." @@ -2813,87 +2833,90 @@ msgstr "Morir resulta en un baneo" msgid "Death results in a kick" msgstr "Morir resulta en una expulsión" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "define - Establece la región con el nombre otorgado." -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "del - Elimina un grupo." -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "del - Elimina una prohibición de objeto." -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "del - Elimina una prohibición de proyectil." -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "del - Elimina una prohibición de bloque." -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "delete - Elimina la región especificada." -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "Región \"{0}\" eliminada." -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "delperm - Quita permisos a un grupo." -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "Palmera Desértica" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "destroytokens - Destruye todos los tókens REST actuales." -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "Detectado DOOM establecido en la posición ON." -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "Arbolgema de Diamante" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "Modo halloween desactivado." -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "Modo navideño desactivado." -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "Deshabilitado. Debes iniciar sesión con {0}login para cargar tus datos guardados." -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "Deshabilitado. Has ido demasiado lejos usando armadura prohibida." -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "Deshabilitado. Has ido demasiado lejos con pilas de objetos hackeados." -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "disallow - Le prohíbe a un grupo usar el objeto." -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "disallow - Le prohíbe a un grupo usar el proyectil." -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "disallow - Le prohíbe a un grupo colocar el bloque." @@ -2902,157 +2925,157 @@ msgstr "disallow - Le prohíbe a un grupo colocar el bloq msgid "Download and install the given packages?" msgstr "¿Descargar e instalar los paquetes en cuestión?" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "Duque Fishron" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "Árbol de Ébano" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "Arbolgema de Esmeralda" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "Modo halloween activado." -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "Modo navideño activado." -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "Permite iniciar y detener varios eventos del mundo." -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "Error al recargar los grupos: {0}" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "Error: los dos nombres son iguales." -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "Gritoeterno" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "Ejemplo de uso: {0}" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "Ejemplo de uso: {0} \"{1}\" \"{2}\"" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "Ejemplo de uso: {0} \"{1}\" {2}" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "Ejemplo de uso: {0} {1}" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "Ejemplo de uso: {0} {1} {2}" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "Ejemplo de uso: {0} {1} {2} {3}" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "Ejemplo de uso: {0} {1} {2} {3} {4}" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "Ejemplo de uso: {0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "Ejemplo: /sudo /ban add particles 2d Hackeando." -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "Ejemplos: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "Ejecuta un comando como súper admin." -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "¡Intento de exploit detectado!" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "No se pudo agregar el ban para el identificador {0}." -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "No se pudo agregar el ban. {0}" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "No se pudo agregar el grupo {0}." -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "No se pudo eliminar el grupo {0}." -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "No se pudo encontrar ningún usuario con ese nombre en la lista." -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "No se pudo eliminar el baneo." -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "No se pudo renombrar el grupo {0}." -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "No se pudo renombrar la región." -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "Error al sombrear las normales del polígono." -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "No se pudo actualizar el grupo \"{0}\"." -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "No se pudo subir tus datos de personaje al servidor. ¿Iniciaste sesión en una cuenta?" @@ -3060,442 +3083,452 @@ msgstr "No se pudo subir tus datos de personaje al servidor. ¿Iniciaste sesión msgid "Fatal Startup Exception" msgstr "Excepción fatal de arranque." -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "Excepción fatal en la inicialización de TShock: no se pudo conectar a la base de datos MySQL. Vea la excepción interna para más detalles." -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "SQL FetchHashedPasswordAndGroup devolvió un error: {0}" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "Sintaxis de Firework" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "Por ejemplo, 1d y 10h-30m+2m son ambas cadenas de tiempo válidas, pero 2 no lo es." -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "Para más información, usa {0} {1} o {2} {3}" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "Hace que todos los líquidos se actualicen inmediatamente." -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "Dio {0} {1} {2}." msgstr[1] "Dio {0} {1} {2}s." -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "Dio {0} {1}." msgstr[1] "Dio {0} {1}s." -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" -msgstr "" +msgstr "GetDataHandlers / HandleCatchNpc capturó cero {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" -msgstr "" +msgstr "GetDataHandlers / HandleCatchNpc rechazado, captura PNJ {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleChestActive rechazado, permiso de construcción y comprobación de región {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" -msgstr "" +msgstr "GetDataHandlers / HandleChestItem rechazado, stacks máximos {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleDoorUse rechazado, comprobaciones de espacio de puerta {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" -msgstr "" +msgstr "GetDataHandlers / HandleDoorUse rechazado, puerta fuera de alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleDoorUse rechazado, comprobación tipo 0 5 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" -msgstr "" +msgstr "GetDataHandlers / HandleGetSection rechazado, ranura de reserva" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" +msgstr "GetDataHandlers / HandleKillPortal rechazado, comprobación de dueño no concordante {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNpcStrike rechazado, invocación de Sectario desde {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNpcStrike rechazado, invocación de Emperatriz desde {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" +msgstr "GetDataHandlers / HandleNpcStrike rechazado, golpe a PNJ {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNpcTalk rechazado, diálogo de PNJ {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNpcTeleportPortal rechazado, no está pensando con portales {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNpcTeleportPortal rechazado, comprobación nula {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" -msgstr "" +msgstr "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted ¡Paquete sorpresa! ¡Alguien avise al equipo de TShock! {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" -msgstr "" +msgstr "GetDataHandlers / HandleOldOnesArmy rechazado, permisos {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" -msgstr "" +msgstr "GetDataHandlers / HandleOldOnesArmy rechazado, limitado {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintTile rechazado, comprobación de rango {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintTile rechazado, consistencia de selección {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintTile rechazado, comprobación de limitación/permiso/rango {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintWall rechazado, comprobación de rango {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintWall rechazado, consistencia de selector {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePaintWall rechazado, limitación/permiso/rango {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" +msgstr "GetDataHandlers / HandlePlayerBuffList manejó el evento y envió los datos {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:3476 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" +#: ../../TShockAPI/GetDataHandlers.cs:2843 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" +msgstr "GetDataHandlers / HandlePlayerHp rechazado, sobre HP máximo {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:2558 +msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" +msgstr "GetDataHandlers / HandlePlayerInfo rechazado, se requiere hardcore" + +#: ../../TShockAPI/GetDataHandlers.cs:2552 +msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" +msgstr "GetDataHandlers / HandlePlayerInfo rechazado, se requiere mediumcore" + +#: ../../TShockAPI/GetDataHandlers.cs:2493 +msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" +msgstr "GetDataHandlers / HandlePlayerInfo rechazado, largo de nombre 0" + +#: ../../TShockAPI/GetDataHandlers.cs:2486 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" +msgstr "GetDataHandlers / HandlePlayerInfo rechazado, fase de plugin {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:2546 +msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" +msgstr "GetDataHandlers / HandlePlayerInfo rechazado, se requiere softcore" + +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" +msgstr "GetDataHandlers / HandlePlayerKillMeV2 expulsado con dificultad {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:4366 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" +msgstr "GetDataHandlers / HandlePlayerKillMeV2 eliminación de SSC {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3368 +#, csharp-format +msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" +msgstr "GetDataHandlers / HandlePlayerMana rechazado, mana máximo {0} {1}/{2}" + +#: ../../TShockAPI/GetDataHandlers.cs:2590 +msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" +msgstr "GetDataHandlers / HandlePlayerSlot rechazado, paquetes que ignoran SSC" + #: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2777 -#, csharp-format -msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2522 -msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2516 -msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2457 -msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2450 -#, csharp-format -msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2510 -msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 -#, csharp-format -msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4225 -#, csharp-format -msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3289 -#, csharp-format -msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2554 -msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3316 -#, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePlayerTeam rechazado, cambio rápido de equipo {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" -msgstr "" +msgstr "GetDataHandlers / HandlePlayerUpdate delta de posición de casa {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" -msgstr "" +msgstr "GetDataHandlers / HandlePlayerZone rechazado, comprobación nula" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" -msgstr "" +msgstr "GetDataHandlers / HandleProjectileKill permitió la exención de Esqueletrón Mayor {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" -msgstr "" +msgstr "GetDataHandlers / HandleProjectileKill rechazado, proyectil prohibido {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" -msgstr "" +msgstr "GetDataHandlers / HandleProjectileKill rechazado, lápida {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSign rechazado, cartel en permiso de construcción {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSign rechazado, comprobación de rango para cartel {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSignRead rechazado, fuera de los bordes {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSpawn rechazado, petición de spawn de jugador muerto {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" -msgstr "" +msgstr "GetDataHandlers / HandleSpawnBoss rechazado, jefe {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" +msgstr "GetDataHandlers / HandleSpawnBoss rechazado, limitado por bouncer {0}" + +#: ../../TShockAPI/GetDataHandlers.cs:3649 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" +msgstr "GetDataHandlers / HandleSpawnBoss rechazado, invasión {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3656 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" +msgstr "GetDataHandlers / HandleSpawnBoss rechazado, mascota {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" msgstr "" +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" +msgstr "GetDataHandlers / HandleSpecial rechazado, permiso para Reloj de Sol Encantado (ForceTime) {0}" + #: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format -msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3531 -#, csharp-format -msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3442 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3436 -#, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSpecial rechazado, permiso para Reloj de Sol Encantado {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncExtraValue rechazado, comprobación de modo experto/maestro {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncExtraValue rechazado, comprobación de medidas {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncExtraValue rechazado, comprobación de ID PNJ fuera de los límites - ID PNJ: {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncExtraValue rechazado, el PNJ es nulo - ID PNJ: {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncExtraValue rechazado, comprobación de rango {0},{1} vs {2},{3} que es {4}" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncLoadout rechazado, sincronización índice de set {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" -msgstr "" +msgstr "GetDataHandlers / HandleSyncLoadout rechazado, sincronización índice de set fuera de los límites {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" -msgstr "" +msgstr "GetDataHandlers / HandleTeleport rechazado, teletransporte de PNJ {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3762 -#, csharp-format -msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3768 -#, csharp-format -msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3744 -#, csharp-format -msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 #: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format -msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" -msgstr "" +msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" +msgstr "GetDataHandlers / HandleTeleport rechazado, medidas p2p {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3907 +#, csharp-format +msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" +msgstr "GetDataHandlers / HandleTeleport rechazado, permiso agujero de gusano p2p {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3883 +#, csharp-format +msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" +msgstr "GetDataHandlers / HandleTeleport rechazado, tipo de varita {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 +#, csharp-format +msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" +msgstr "GetDataHandlers / HandleTeleportationPotion rechazado, no se sostiene el objeto correcto {0} {1}" + +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" -msgstr "" +msgstr "GetDataHandlers / HandleTeleportationPotion rechazado, permisos {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" -msgstr "" +msgstr "GetDataHandlers / HandleToggleParty rechazado, sin grupo {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" -msgstr "" +msgstr "GetDataHandlers / HandleTogglePvp rechazado, cambio rápido {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" -msgstr "" +msgstr "GetDataHandlers / HandleTogglePvp rechazado, índice no concordante {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." -msgstr "" +msgstr "GetDataHandlers / OnPlayerUpdate rechazado por jugador nulo." -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." -msgstr "" +msgstr "GetDataHandlers / rechazando jugador por prefijo de nombre comenzando con tsi: o tsn:." -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" -msgstr "" +msgstr "GetDataHandlers / UpdateNPCHome rechazado, sin permiso {0}" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "SQL GetUser devolvió un error {0}" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "Sintaxis y Ejemplo de Give Buff" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Da a otro jugador un buff o debuff por un tiempo determinado. Si pones -1 para el tiempo, será de 415 días." -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "Da un objeto a otro jugador." -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Te da un buff o debuff por un tiempo determinado. Si pones -1 para el tiempo, será de 415 días." -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "Te da un objeto." -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "Árbol de Champiñón Brillante" @@ -3504,163 +3537,163 @@ msgstr "Árbol de Champiñón Brillante" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "GolfPacketHandler: ¡El jugador no había creado un proyectil de palo de golf en los últimos 5 segundos! - De {0}" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "El grupo \"{0}\" no tiene padre." -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "El grupo \"{0}\" no tiene prefijo." -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "El grupo \"{0}\" no tiene sufijo." -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "El grupo \"{0}\" hace referencia al grupo padre {1} que ya forma parte de la cadena de parentesco. Se ha eliminado esta referencia." -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "El grupo \"superadmin\" está definido en la base de datos aunque es un nombre de grupo reservado." -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "El grupo {0} ya existe" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "Grupo {0} creado con éxito" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "Grupo {0} eliminado con éxito" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "El grupo {0} no existe" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "El grupo {0} no existe." -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "El grupo {0} no existe" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "El grupo {0} no existe." -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "El grupo {0} fue eliminado exitosamente." -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "El grupo {0} fue renombrado a {1}." -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "El grupo {0} hace referencia a un grupo padre {1} que no existe. Se ha eliminado esta referencia." -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "El grupo {0} se está referenciando a sí mismo como grupo padre. Se ha eliminado esta referencia." -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "No se encuentra el grupo {0}." -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "Grupo {0} actualizado exitosamente" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "El grupo {0} se agregó correctamente." -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Comandos de Group ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "Grupos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "Crece plantas en tu ubicación." -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "Palmera Sagrada" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "HandleSyncCavernMonsterType: El jugador está intentando modificar el cavernMonsterType de PNJ; ¡este es un paquete creado artificialmente! - De {0}" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "El modo difícil está deshabilitado en el archivo de configuración del servidor." -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "Se ha desactivado el modo difícil." -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "Se ha activado el modo difícil." -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "Sintaxis y Ejemplo de Heal" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "¡Intento de trampa con HealOtherPlayer!" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "Umbral de HealOtherPlayer excedió {0}." -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "Restaura los HP y MP del jugador." -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "Hierba" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "Golpea un bloque para ver el nombre de la región." -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "Golpea un bloque para definir el punto {0}." @@ -3671,67 +3704,71 @@ msgstr "Golpea un bloque para definir el punto {0}." msgid "holding banned item: {0}" msgstr "sosteniendo un objeto prohibido: {0}" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "Si no se especifica una cantidad el jugador curará toda su vida." -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de daño por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de HealOtherPlayer por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de proyectiles creados por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de destrucción de bloques por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de bloques líquidos por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "Si este jugador no estaba haciendo trampa, ¡favor reportar a TShock el umbral de colocación de bloques por el que fue deshabilitado para mejorar el sistema!" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "Si esto no estaba relacionado con Esqueletrón Prime, por favor reporta a TShock lo ocurrido." -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "Si perdiste el acceso a todas las cuentas de administrador, pide ayuda en https://tshock.co/" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "Si no especificas un radio, usará uno predeterminado de {0} alrededor de tu personaje." -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "Si no especificas una duración, se usara la predeterminada de {0} segundos." -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "Si olvidaste tu contraseña, pide ayuda al administrador." -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "Si estableces {0} como la duración, usará el máximo tiempo posible que es 415 días." -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "Si has entendido, por favor usa {0}login , y a continuación teclea {0}setup." @@ -3744,15 +3781,15 @@ msgstr "Si deseas saber qué plugins necesitan qué dependencias, pulsa E." msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "Si deseas ver nuevamente qué plugins necesitan qué dependencias, pulsa E." -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "Si ves este mensaje y sabes lo que hizo ese jugador, favor reportar a TShock para investigar más a fondo." -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "Ignorando esquirlas de acuerdo a la configuración.." -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "Nombre ilegal: los prefijos tsi: y tsn: están prohibidos." @@ -3761,38 +3798,38 @@ msgstr "Nombre ilegal: los prefijos tsi: y tsn: están prohibidos." msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "IllegalPerSe: Paquete de emoji rechazado por falsificación de ID. Esperado {0}, recibido {1} de {2}." -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "Ahora se permiten teletransportes entrantes." -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "Ahora se bloquean teletransportes entrantes." -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "Código de configuración incorrecto. Incidente archivado en el registro." -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "Grupo infinito de jerarquía ({0})" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "info [-d] - Muestra bastante información sobre la región dada." -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "Información Sobre la Región \"{0}\" ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "Información sobre el mundo actual" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "Se ha producido un error al insertar el ban en la base de datos." @@ -3800,165 +3837,165 @@ msgstr "Se ha producido un error al insertar el ban en la base de datos." msgid "Install the plugins as specified in the plugins.json" msgstr "Instala los plugins como se especifica en plugins.json" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "Error interno del servidor." -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxis de Ban Add inválida. Revisa {0} para ver detalles de uso para el comando {1}" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxis de Ban Del inválida. Revisa {0} para ver detalles de uso para el comando {1}" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxis de Ban Details inválida. Revisa {0} para ver detalles de uso para el comando {1}" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxis de Ban List inválida. Revisa {0} para ver detalles de uso para el comando {1}" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "¡Factor de trabajo BCrypt inválido en el archivo de configuración! Creando nuevo hash usando el factor de trabajo predeterminado." -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "La cantidad de jefes no es válida." -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "¡El tipo de jefe no es válido!" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "¡El ID de buff no es válido!" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Se ha introducido un comando inválido. Escriba {0}help para obtener una lista de comandos válidos." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "Comando inválido." -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "El PNJ destino no es válido." -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "El jugador destino no es válido." -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "Tipo de evento inválido. Tipos de eventos válidos: {0}." -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "Ronda inválida para el evento de luna helada." -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "Grupo inválido." -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "Tipo de invasión inválido. Tipos válidos de invasión: {0}." -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "¡Tipo de objeto inválido!" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "Objeto inválido." -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "Máximo de enemigos generados inválido. El rango aceptable es de {0} a {1}." -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "¡Tipo de enemigo inválido!" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "Tipo de enemigo inválido." -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "Modo de mundo inválido. Modos válidos: {0}" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "Número de página inválido. La cifra debe ser numérica." -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "Grupo padre {0} inválido para el grupo {1}" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "Grupo padre {0} inválido para el grupo {1}." -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "Contraseña inválida." -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "¡Jugador inválido!" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "Jugador inválido." -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "¡ID de proyectil inválido!" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "ID de proyectil inválido." -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "Ronda inválida para el evento de luna calabaza." -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "Región \"{0}\" inválida." @@ -3974,461 +4011,461 @@ msgstr "Configuración REST inválida: \n" "Por favor ajusta tu configuración y reinicia el servidor. \n" "Presiona cualquier tecla para salir." -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "Contraseña de servidor inválida." -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "¡Subcomando inválido! Teclea {0}group help para más información sobre comandos válidos." -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "¡Subcomando inválido! Teclea {0}itemban help para más información sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "¡Subcomando inválido! Teclea {0}projban help para más información sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "¡Subcomando inválido! Teclea {0}tileban help para más información sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "Sintaxis incorrecta para color, se esperaba \"rrr,vvv,aaa\" (rojo, verde, azul)." -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "Sintaxis inválida." -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}worldevent invasion [tipo de invasión] [ronda de invasión]." -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}accountinfo ." -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "Sintaxis inválida. Sintaxis correcta: {0}aliases " -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group add [permisos]." -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group addperm ." -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group color [color nuevo(000,000,000)]." -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group del ." -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group delperm ." -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group listperm [página]." -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group parent [nuevo nombre del grupo padre]." -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group prefix [prefijo nuevo]." -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group rename ." -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}group suffix [sufijo nuevo]." -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "Sintaxis inválida. Sintaxis correcta: {0}help " -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "Sintaxis inválida. Sintaxis correcta: {0}item [cantidad del objeto] [id/nombre del prefijo]" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}itemban add ." -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}itemban allow ." -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}itemban del ." -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}itemban disallow ." -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}kick [motivo]." -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "Sintaxis inválida. Sintaxis correcta: {0}me " -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "Sintaxis inválida. Sintaxis correcta: {0}p " -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "Sintaxis inválida. Sintaxis correcta: {0}projban add " -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}projban allow ." -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}projban del ." -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}projban disallow ." -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region allow ." -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region allowg ." -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region define ." -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region delete ." -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region info [-d] [página]." -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region protect ." -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region remove ." -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region removeg ." -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "Sintaxis inválida. Sintaxis correcta: {0}region rename " -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "Sintaxis inválida. Sintaxis correcta: {0}region resize " -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}region tp ." -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "Sintaxis inválida. Sintaxis correcta: {0}region z <#>" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}register ." -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "Sintaxis inválida. Sintaxis correcta: {0}renameNPC " -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "Sintaxis inválida. Sintaxis correcta: {0}serverpassword \"\"." -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}slap [daño]." -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}spawnboss [cantidad]." -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}spawnmob [cantidad]." -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tileban add ." -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tileban allow ." -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tileban del ." -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tileban disallow ." -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tp [jugador 2]." -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tp ." -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tpnpc ." -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}tppos ." -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}userinfo ." -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp [comando] [argumentos]." -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp [nombre] o {0}warp list ." -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp add [nombre]." -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp del [nombre]." -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp hide [nombre] ." -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "Sintaxis inválida. Sintaxis correcta: {0}warp send [jugador] [nombreDeWarp]." -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." -msgstr "Sintaxis inválida. Sintaxis correcta: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." +msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}worldevent ." -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "Sintaxis inválida. Sintaxis correcta: {0}worldmode ." -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "Sintaxis inválida. Sintaxis correcta: /region protect ." -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "Sintaxis inválida. Sintaxis correcta: /region set <1/2>." -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "Jugador destino inválido." -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "Número de Ticket inválido. Consulte {0} para más detalles sobre cómo utilizar el comando {1}" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "ID de bloque inválido." -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "¡Cadena de tiempo inválida! Formato correcto: _d_h_m_s, con al menos un especificador de hora." -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "Cadena de tiempo inválida. Formato correcto: hh:mm, en formato de 24 horas." -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "Tipo Inválido: '{0}'" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "Sintaxis de user inválida. Prueba {0}user help." -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "Nombre de warp inválido. Los nombres 'list', 'hide', 'del' y 'add' están reservados para comandos." -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." -msgstr "Velocidad de viento inválida." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." +msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "Modo de mundo inválido. Modos válidos: {0}" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "Dirección IP: {0}." -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Comandos de Item Ban ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "Objetos prohibidos ({{0}}/{{1}}):" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "Se expulsó a {0} por : '{1}'" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "Expulsado vía web" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "Expulsado: {0}" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "Sintaxis y ejemplo de Kill" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "Mata a otro jugador." -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "Mata PNJ hostiles o a un tipo específico de PNJ." @@ -4457,108 +4494,108 @@ msgstr "LandGolfBallInCupHandler: ¡La casilla en la posición del paquete X:{0} msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "LandGolfBallInCupHandler: ¡Las posiciones X e Y están fuera de los bordes del mundo! - De {0}" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "Los faroles ahora están deshabilitados." -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "Los faroles ahora están habilitados." -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "Los líquidos ya se están estabilizando." -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "list - Da una lista de todas las regiones." -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "list [página] - Da una lista de todos los ítems prohibidos." -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "list [página] - Da una lista de todos los proyectiles prohibidos." -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "list [página] - Da una lista de todos los bloques prohibidos." -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "list [página] - Muestra los grupos." -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "Sintaxis de List Online Players" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "Escuchando IP {0}." -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "Escuchando puerto {0}." -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "listperm [página] - Muestra los permisos de un grupo." -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "Muestra comandos o ayuda sobre los mismos." -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "listusers - Muestra todos los usuarios REST y sus tókens activos." -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "Cargando un archivo de configuración dedicado: {0}" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "La ubicación de {0} es ({1}, {2})." -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "Registro en pantalla desactivado." -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "Registro en pantalla activado." -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "La ruta del registro se ha establecido en {0}" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "Fallo en el intento de inicio de sesión - vea el mensaje anterior." -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "El inicio de sesión antes de entrar está activado. A los usuarios se les solicitará la contraseña de su cuenta en lugar de la contraseña del servidor cuando se conecten." -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "Inicio de sesión con UUID habilitado. Los usuarios iniciarán sesión automáticamente a través de su UUID." -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "Inicias sesión en una cuenta." -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "Cierras la sesión de tu cuenta actual." -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "Nombre de la máquina: {0}" @@ -4567,7 +4604,7 @@ msgstr "Nombre de la máquina: {0}" msgid "Make sure that you trust the plugins you're installing." msgstr "Asegúrate de estar instalando plugins en los que confías." -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "Intento malicioso de uso de portal." @@ -4575,102 +4612,102 @@ msgstr "Intento malicioso de uso de portal." msgid "Manage plugins and their requirements" msgstr "Administra plugins y sus requerimientos" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "Gestiona grupos." -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "Gestiona los objetos prohibidos." -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "Gestiona los bans de jugadores." -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "Gestiona los proyectiles prohibidos." -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "Gestiona regiones." -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "Gestiona el API REST." -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "Gestiona la lista blanca del servidor." -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "Gestiona los bloques prohibidos." -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "Gestiona las cuentas de usuario." -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "Manipulando un tipo de líquido desconocido" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "Región {0} marcada como protegida." -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "Región {0} marcada como desprotegida." -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "Uso de memoria: {0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "Mensaje: {0}: {1}: {2}" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "Se ha generado un meteoro" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "Mal comportamiento." -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "Falta el nombre/ID del objeto." -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "Parámetro {0} faltante o vacío" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "Parámetro {0} faltante o inválido" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "Falta el nombre del jugador." -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "Modo: {0}" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "Hay más de una coincidencia -- no se puede decidir la correcta: " -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "Árbol de Luto" @@ -4678,24 +4715,24 @@ msgstr "Árbol de Luto" msgid "Msg ID not implemented" msgstr "ID de Msg no implementado" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "Se encontraron múltiples cuentas para {0} '{1}'" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "Sintaxis de Mute" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "N/D" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "name [-u][-z][-p] - Muestra el nombre de la región en el punto determinado." -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "Nombre: {0}" @@ -4705,33 +4742,33 @@ msgstr "Nombre: {0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "NetModuleHandler recibida petición de {0} para desbloquear sacrificio sin estar en modo viaje" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "Nunca." -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "¡El nuevo nombre es demasiado largo!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "¡Los mundos nuevos serán generados con el bioma maligno {0}!" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "No hay comandos asociados." -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "No se encontraron baneos que coincidan con el número de ticket." -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "No se encontró ningún comando o alias que coincida con \"{0}\"." -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "No hay descripción disponible." @@ -4739,43 +4776,43 @@ msgstr "No hay descripción disponible." msgid "No help available." msgstr "No hay ayuda disponible." -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "No se encontraron baneos que coincidan." -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "No se encontró ningún jugador que coincida con '{0}'." -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "Ningún jugador coincide con \"{0}\"." -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "Ningún prefijo coincide con \"{0}\"." -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "No se ha especificado ninguna razón." -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "No se requieren permisos especiales para esta ruta." -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "No existe el grupo \"{0}\"." -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "No se proporcionó ningún valor" @@ -4787,9 +4824,9 @@ msgstr "No autorizado. El tóken proporcionado fue invalidado debido a cambios e msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "No autorizado. El punto final API especificado requiere un tóken, pero el que fue proporcionado no era válido." +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "No autorizado. El punto final API especificado requiere un tóken." @@ -4798,17 +4835,17 @@ msgstr "No autorizado. El punto final API especificado requiere un tóken." msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "No autorizado. El usuario \"{0}\" no tiene acceso para utilizar el punto final API especificado." -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "No conectado o sintaxis inválida. Sintaxis correcta: {0}password ." -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "No se está actualizando el factor de trabajo porque el hash de bcrypt está en un formato inválido." -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "Daño a NPC excedió {0}." @@ -4817,22 +4854,27 @@ msgstr "Daño a NPC excedió {0}." msgid "One moment..." msgstr "Un momento..." -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "Uno de tus UserIDs no es un entero utilizable: {0}" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "Jugadores en Línea ({0}/{1})" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "Sistema operativo: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "Ignora temporalmente los personajes exclusivos de servidor para un jugador." @@ -4840,178 +4882,178 @@ msgstr "Ignora temporalmente los personajes exclusivos de servidor para un jugad msgid "Page {{0}} of {{1}}" msgstr "Página {{0}} de {{1}}" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "parent - Cambia el grupo padre de un grupo." -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "El padre de \"{0}\" es \"{1}\"." -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "Padre del grupo \"{0}\" asignado a \"{1}\"." -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "Hacer al grupo {0} padre de {1} causaría bucles en la cadena de parentesco." -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "El intento de cambio de contraseña de {0} falló por una razón desconocida. Comprueba la consola del servidor para más detalles." -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "La contraseña de {0} se cambió correctamente." -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "La contraseña debe tener al menos {0} caracteres." -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "La contraseña debe contener {0} o más caracteres." -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "PasswordUser devolvió un error: {0}." -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "Ruta: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "Árbol de Madera Perlada" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "Permisos para {0} ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "Plantera" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "El jugador \"{0}\" debe realizar antes un intento de /login." -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "El jugador \"{0}\" debe reconectarse antes, pues necesita eliminar su papelera." -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "El jugador \"{0}\" ya está conectado." -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "El jugador {0} ha sido deshabilitado por {1}." -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "El jugador {0} fue silenciado" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "Al jugador {0} se le revocó su silencio" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "El jugador {0} coincide con {1} jugador" msgstr[1] "El jugador {0} coincide con {1} jugadores" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "No se encontró al jugador {0}." -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "¡El jugador {0} intentó ingresar {1} de contrabando al servidor!" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "El jugador {0} fue asesinado" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "No se encontró al jugador {0}" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "El daño al jugador excedió {0}." -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "¡El jugador no tiene espacios vacíos!" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "El jugador no tiene permiso para crear el proyectil {0}." -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "Jugador no encontrado. Imposible expulsar al jugador." -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "¡Por favor usa {0}register o {0}login para jugar!" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "Por favor cierre las ventanas de PNJ antes de cerrar sesión." -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "Por favor ingresa un nombre o alias de comando válido." -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "Por favor prueba con un nombre de usuario distinto." -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "Por favor usa {0}login después de esto." -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "Por favor utiliza lo siguiente para crearte una cuenta permanente." -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "Puerto sobreescrito por argumento de inicio. Establecido en {0}" @@ -5021,54 +5063,54 @@ msgstr "Puerto sobreescrito por argumento de inicio. Establecido en {0}" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "Posible problema con su base de datos - ¿Está el archivo Sqlite3.dll presente?" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "prefix - Cambia el prefijo de un grupo." -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "El prefijo de \"{0}\" es \"{1}\"." -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "Prefijo del grupo \"{0}\" establecido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "Evita que un jugador hable." -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "Cantidad de Proc: {0}" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "El proyectil {0} no está prohibido." -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Comandos de Projectile Ban ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "Prohibiciones de Proyectil ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "El umbral de creación de proyectiles excedió {0}." -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "El daño del proyectil es mayor que {0}." -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "protect - Establece si las casillas en el interior de la región están o no protegidas." @@ -5076,65 +5118,65 @@ msgstr "protect - Establece si las casillas en el interior msgid "Protected regions at this point: " msgstr "Regiones protegidas en este punto: " -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "Protegido: {0}." -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "Uso abreviado: {0} {1} \"Molestar\"" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "Rangecheck falló para {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "Se alcanzó el umbral de HealOtherPlayer" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "Se alcanzó el umbral de HealOtherPlayer." -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "Se alcanzó el umbral de pintura" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "Se alcanzó el umbral de creación de proyectiles." -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "Se alcanzó el umbral de proyectiles" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "Se alcanzó el umbral de TileKill." -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "Se alcanzó el umbral de TileLiquid" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "Se alcanzó el umbral de líquidos {0}." -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "Se alcanzó el umbral de líquidos." -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "Se alcanzó el umbral de bloques puestos" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "Se alcanzó el umbral de bloques puestos." @@ -5142,62 +5184,62 @@ msgstr "Se alcanzó el umbral de bloques puestos." msgid "Read the message below to find out more." msgstr "Lea el siguiente mensaje para obtener más información." -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "Razón: {0}." -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "Recibido tipo '{0}', sin embargo la columna '{1}' esperaba tipo '{2}'" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "La región \"{0}\" ya existe." -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "La región \"{0}\" no existe." -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "La región {0} ya existe." -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "La región no es compartida con ningún grupo." -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "La región no es compartida con ningún usuario." -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "Dueño de la región: {0}." -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "Primero hay que definir los puntos de la región. Usa /region set 1 y /region set 2." -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "¡La región se ha renombrado correctamente!" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "¡La región se ha redimensionado correctamente!" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "El índice z de la región ahora es {0}" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "Regiones ({{0}}/{{1}}):" @@ -5205,62 +5247,62 @@ msgstr "Regiones ({{0}}/{{1}}):" msgid "Regions at this point: " msgstr "Regiones en este punto: " -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "Te registra una cuenta." -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "RegisterUser devolvió un error: {0}." -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "La criatura liberada no correspondía a su objeto." -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "Recarga el archivo de configuración del servidor." -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "remove - Retira a un usuario de una región." -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "Eliminados {0} jugadores del listado de misiones completadas hoy del pescador." -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "El grupo {0} fue removido de {1}" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "Se eliminó el padre del grupo \"{0}\"." -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "Se quitó el prefijo del grupo \"{0}\"." -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "Se quitó el sufijo del grupo \"{0}\"." -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "Se quitó el usuario {0} de {1}." -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "removeg - Quita a un grupo de usuarios de la región." -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "Elimina a un jugador del servidor." @@ -5268,19 +5310,19 @@ msgstr "Elimina a un jugador del servidor." msgid "RemoveUser SQL returned an error" msgstr "SQL RemoveUser devolvió un error" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "rename - Cambia el nombre de un grupo." -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "rename - Renombra la región dada." -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "Renombra a un PNJ." -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "Contestas al mensaje privado que te fue enviado." @@ -5293,7 +5335,7 @@ msgstr "El tóken solicitado fue destruido exitosamente." msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "RequestTileEntityInteractionHandler: ¡Paquete rechazado por falta de permisos de construcción! - De {0} | Posición X:{1} Y:{2}, Tipo de TileEntity: {3}, Tipo de bloque: {4}" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "Reinicia la lista de usuarios que han completado durante el día una misión del pescador." @@ -5302,11 +5344,11 @@ msgstr "Reinicia la lista de usuarios que han completado durante el día una mis msgid "resetTime {0}, direct {1}" msgstr "resetTime {0}, direct {1}" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "resize - Redimensiona una región." -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "Te hace reaparecer a ti u otro jugador." @@ -5314,43 +5356,43 @@ msgstr "Te hace reaparecer a ti u otro jugador." msgid "Retrying in 5 minutes." msgstr "Reintentando en 5 minutos." -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "Muestra la posición actual ya sea del usuario o de otro jugador." -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "Madera de Caoba Rico" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "Sintaxis de Rocket" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "Propulsa a un jugador hacia arriba. Requiere SSC." -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "Arbolgema de Rubí" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "Árbol Sakura" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "Papá-NK1" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "Arbolgema de Zafiro" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "Guarda todos los personajes exclusivos-de-servidor." -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "Guarda el archivo del mundo." @@ -5358,36 +5400,36 @@ msgstr "Guarda el archivo del mundo." msgid "Saving world..." msgstr "Guardando mundo..." -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "Semilla: {0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "Envía un mensaje a todos los miembros de tu equipo." -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "Envía un mensaje privado a un jugador." -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "Envía todas las casillas desde el servidor al jugador para sincronizar el cliente con el estado actual del mundo." -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "Envía a todos un mensaje de acción." -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "Te envía al punto de aparición del mundo." -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "Te envía a tu punto de aparición." -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "¡Se ha interrumpido la consola del servidor!" @@ -5399,7 +5441,7 @@ msgstr "Servidor lleno" msgid "Server is full. No reserved slots open." msgstr "Servidor lleno y sin cupos reservados." -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "El servidor se está cerrando..." @@ -5407,47 +5449,47 @@ msgstr "El servidor se está cerrando..." msgid "Server map saving..." msgstr "Guardando mapa del servidor..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "La contraseña de servidor se cambió a: {0}." -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "El servidor se está cerrando: " -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "¡El servidor se está cerrando!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "El servidor se está cerrando." -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "Los personajes exclusivos-de-servidor están activados. Debes estar autenticado para jugar." -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "¡Los personajes exclusivos-de-servidor están activados! ¡Por favor usa {0}register o {0}login para jugar!" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "Los datos exclusivos-de-servidor de \"{0}\" fueron reemplazados por sus datos locales actuales." -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "Personajes exclusivos-de-servidor desactivados." -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "set <1/2> - Establece los puntos temporales de región." -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "Se creó la región {0}." @@ -5457,31 +5499,32 @@ msgstr "Se creó la región {0}." msgid "Set temp point {0}." msgstr "Se estableció el punto temporal {0}." -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "Establece la posición de la mazmorra en tu ubicación." -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "Establece el número máximo de PNJ." -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "Establece la tasa de aparición de PNJ." -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "Establece la hora del mundo." -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "Establece la posición del punto de reaparición del mundo en tu ubicación." -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "Estabilizando líquidos." -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "SQL SetUserGroup devolvió un error" @@ -5493,257 +5536,257 @@ msgstr "SQL SetUserPassword devolvió un error" msgid "SetUserUUID SQL returned an error" msgstr "SQL SetUserUUID devolvió un error" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "Árbol Sombrío" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "Comparte tu servidor, habla con otros admins, y relájate en GitHub & Discord. https://tshock.co/" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "Compartiendo con los grupos: " -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "Compartiendo con: " -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "Muestra los alias de un comando." -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "Muestra información sobre un jugador." -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "Muestra información sobre un usuario." -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "Muestra información sobre el mundo actual." -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "Muestra los jugadores conectados actualmente." -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "Muestra el mensaje del día." -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "Muestra la información del servidor." -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "Muestra las reglas del servidor." -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "Muestra la versión de TShock." -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "Apaga el servidor guardándolo." -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "Apaga el servidor sin guardarlo." -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "Apagando de forma segura. Para forzar el apagado, envíe SIGINT (CTRL + C) de nuevo." -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "Tamaño: {0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "Esqueletrón" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "Esqueletrón Mayor" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Omitiendo guardado SSC (debido a tshock.ignore.ssc) para {0}" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "Abofetea a un jugador, infligiéndole daño." -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "No se puede activar la lluvia de slime durante una lluvia normal. Detén el aguacero actual y vuelve a intentarlo." -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "Lamentablemente {0} ya fue reservado por otra persona." -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "Lo sentimos, ha ocurrido un error: {0}." -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "Punto de aparición establecido en tu posición." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "El punto de aparición ahora está abierto." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "El punto de aparición ahora está protegido." -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "Se invocó {0} {1} vez." msgstr[1] "Se invocó {0} {1} veces." -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "Se invocó un Muro Carnoso." -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "Invoca una cantidad de jefes a tu alrededor." -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "Invoca una cantidad de enemigos a tu alrededor." -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "Genera fuegos artificiales en un jugador." -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "El punto final API especificado no existe. Consulte la documentación para ver una lista de puntos finales válidos." -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "El registro SQL falló en: {0}. {1}" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "Consulta de inserción de registro SQL fallida: {0}" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "Para usar este comando SSC debe estar activado." -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate la armadura {0} ({1}) y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quita el objeto {0} ({1}) de la Forja del Defensor y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el tinte {0} ({1}) y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el objeto {0} ({1}) y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el objeto de tinte {0} ({1}) y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el objeto {0} ({1}) del Equipamiento 1 y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el objeto {0} ({1}) del Equipamiento 2 y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quítate el objeto {0} ({1}) del Equipamiento 3 y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quita el objeto {0} ({1}) de la Hucha y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quita el objeto {0} ({1}) de la Caja Fuerte y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quita el objeto {0} ({1}) de tu papelera y luego vuelve a entrar." -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "Trampa de stack detectada. Quita el objeto {0} ({1}) de tu Cámara del Vacío y luego vuelve a entrar." -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "Iniciada una luna sangrienta." -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "Iniciada una luna llena." -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "Iniciado un eclipse." -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "El parámetro de inicio impuso su propio valor máximo de jugadores sobre los de la configuración." -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "El parámetro de inicio anuló la activación de REST." -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "El parámetro de inicio anuló el puerto REST." -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "El parámetro de inicio anuló el tóken REST." -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "Se detuvo un eclipse." -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "Se detuvo la luna sangrienta en curso." @@ -5751,21 +5794,21 @@ msgstr "Se detuvo la luna sangrienta en curso." msgid "Successful login" msgstr "Inicio de sesión exitoso" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "suffix - Cambia el sufijo de un grupo." -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "El sufijo de \"{0}\" es \"{1}\"." -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "Sufijo del grupo \"{0}\" establecido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "¡Sincronizado!" @@ -5774,190 +5817,186 @@ msgstr "¡Sincronizado!" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "SyncTilePickingHandler: ¡Las posiciones X e Y están fuera de los límites del mundo! - De {0}" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "Se teletransportó a {0} hacia {1}." -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "Se teletransportó a {0} hacia tu posición." -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "Se teletransportó a todos hacia {0}." -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "Se teletransportó a todos a tu posición." -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "Teletransportado a {0}, {1}." -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "Teletransportado a {0}." -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "Teletransportado hacia '{0}'." -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "Teletransportado al punto de aparición del mapa." -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "Teletransportado a tu punto de aparición (casa)." -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "Teletransporta a un jugador a la posición de otro." -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "Teletransporta a un jugador hacia tu posición." -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "Te teletransporta a un punto de warp o permite administrarlos." -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "Te teletransporta a un PNJ." -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "Te teletransporta a coordenadas de casilla." -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "Te asciende temporalmente a Super Admin." -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "Establece de forma temporal el grupo de otro usuario." -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "Los puntos temporales para demarcar región fueron quitados." -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "Se te ha dado acceso temporal de sistema, así que puedes ejecutar un comando." -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "¡Gracias por usar TShock para Terraria!" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "No existe ese grupo." -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "El baneo es inválido porque ya existe un ban actual para este identificador." -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "El ban no es válido por razón desconocida." -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "el Cerebro de Cthulhu" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "La hora actual es {0}:{1:D2}." -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "No se pudo encontrar el grupo predeterminado." -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "No se pudo encontrar el grupo de usuarios predeterminado. Esto puede indicar un error tipográfico en el archivo de configuración, o que el grupo fue renombrado o eliminado." -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "Las coordenadas de destino proporcionadas no parecen ser números válidos." -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "No se encontró el warp de destino, {0}." -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "el Destructor" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "El Guardián de la Mazmorra te devolvió a tu punto de aparición." - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "La posición de la mazmorra se ha establecido en tu ubicación." -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "el Devoramundos" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "la Emperatriz de la Luz" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "el Ojo de Cthulhu" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "el Holandés Volador" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "el Gólem" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "El grupo {0} apareció más de una vez. Manteniendo la configuración actual de los grupos." -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "No se pudo encontrar el grupo huésped." -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "No se pudo encontrar el grupo huésped. Esto puede indicar un error tipográfico en el archivo de configuración, o que el grupo fue renombrado o eliminado." -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "la Reina del Hielo" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "El sistema de configuración inicial está deshabilitado. Este incidente ha sido registrado." -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "El tipo de objeto {0} no es válido." -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "el Rey Slime" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "el Sectario Lunático" @@ -5969,31 +6008,31 @@ msgstr "El método al que hace referencia LineFormatter arrojó una excepción. msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "El método al que representa termFormatter arrojó una excepción. Revise la excepción interna para más detalles." -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "el Señor de la Luna" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "Los permisos se agregaron a todos los grupos en el sistema." -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "Los permisos se quitaron de todos los grupos en el sistema." -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "Los datos de personaje del jugador fueron subidos exitosamente desde su conexión inicial." -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "el Rey Calabaza" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "la Abeja Reina" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "la Reina Slime" @@ -6005,7 +6044,7 @@ msgstr "El tóken de autenticación REST." msgid "The server is out of date. Latest version: " msgstr "Servidor desactualizado. Última versión: " -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "La tasa de generación provista esta fuera del rango o no es un número." @@ -6013,19 +6052,19 @@ msgstr "La tasa de generación provista esta fuera del rango o no es un número. msgid "The specified token queued for destruction failed to be deleted." msgstr "El tóken especificado marcado para ser destruido no pudo ser eliminado." -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "El jugador objetivo aún no ha iniciado sesión." -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "El usuario objetivo no puede subir sus datos, pues no es un jugador." -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "los Gemelos" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "¡El usuario {0} no existe! Por ende, no se eliminó la cuenta." @@ -6042,52 +6081,52 @@ msgstr "El valor debe ser mayor que cero." msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "Las versiones de plugins que has solicitado no son compatibles entre ellas." -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "el Muro Carnoso" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "El límite de cofres del mundo fue alcanzado - imposible colocar más." -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "No hay bans activos en este momento." -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "No hay usuarios REST activos en este momento." -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "No hay identificadores disponibles en este momento." -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "No hay objetos prohibidos en este momento." -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "No hay proyectiles prohibidos en este momento." -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "No hay bloques prohibidos en este momento." -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "Ahora mismo {0} no posee permisos." -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "Actualmente no hay jugadores en línea." -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "Actualmente no hay regiones definidas." -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "Actualmente no hay warps definidos." @@ -6099,11 +6138,11 @@ msgstr "Este punto o no tiene regiones, o no están protegidas." msgid "There are no regions at this point." msgstr "No hay regiones en este punto." -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "Ya hay un Muro Carnoso." -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "Hubo un error al procesar tu petición de inicio de sesión o relacionada con autenticación." @@ -6122,265 +6161,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "Este es el plugin que solicitaste instalar." msgstr[1] "Estos son los plugins que solicitaste instalar." -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "Este tóken se mostrará hasta que se deshabilite por verificación. ({0}setup)" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "El bloque {0} no está prohibido." -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Comandos de Tile Ban ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "Objetos prohibidos ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "El umbral de destrucción de bloques ha excedido {0}." -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "El umbral de colocación de bloques ha excedido {0}." -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "Para potenciar a un jugador sin que lo sepan, usa {0} en lugar de {1}" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "Para ejecutar este comando silenciosamente, usa {0} en lugar de {1}" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "Para deshacerte de los PNJ sin hacerlos soltar objetos, usa el comando {0} en su lugar." -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "Para silenciar a un jugador sin mostrarlo en el chat, usa el comando con {0} en lugar de {1}" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "Para configurar el servidor, únete al juego y escribe {0}setup {1}" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "Activa o desactiva la protección de construcción." -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "Activa o desactiva el modo navideño (generación de regalos, santa, etc)." -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "Activa o desactiva el modo dios en un jugador." -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "Activa o desactiva el modo halloween (bolsitas sorpresa, calabazas, etc)." -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "Activa o desactiva la protección del área de aparición." -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "Activa o desactiva el modo difícil del mundo." -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "Cambia entre ignorar o recibir susurros de otros jugadores." -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "Alterna entre si otras personas pueden o no teletransportarse a tu posición." -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "Alterna si recibes o no los registros del servidor." -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Demasiados intentos de inicio de sesión inválidos." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "Arbolgema de Topacio" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "Tiempo total de procesador: {0}" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "tp - Te teletransporta al centro de la región determinada." -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "Tipos de árboles & misc disponibles para su uso. ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "Se intentó hacer crecer {0}." -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "TShock {0} ({1}) ahora en ejecución." -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "Ayuda de TShock Ban" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "TShock es gratuito y viene sin garantía." -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "TShock encontró un problema del que no puede recuperarse. El siguiente mensaje puede ayudar a diagnosticar el problema." -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "Aviso de TShock: setup-code.txt todavía está presente, y el código ubicado en ese archivo será utilizado." -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "TShock se cerró incorrectamente. Utilice el comando exit en el futuro para evitar esto." -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "TShock desactivará ahora el sistema de configuración inicial y eliminará setup-code.txt pues ya no es necesario." -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "TShock: {0} {1}." -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "Escribe {0}ban help identifiers {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "Escribe {0}ban list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "Escribe {0}group help {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "Escribe {0}group list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "Escribe {0}group listperm {1} {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "Escribe {0}grow help {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "Escribe {0}help {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "Escribe {0}itemban help {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "Escribe {0}itemban list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "Escribe {0}login \"{1}\" {2} para iniciar sesión en tu cuenta." -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "Escribe {0}login {1} para iniciar sesión en tu cuenta." -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "Escribe {0}login para iniciar sesión usando tu UUID." -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "Escribe {0}projban help {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "Escribe {0}projban list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "Escribe {0}region {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "Escribe {0}region info {1} {{0}} para más información." -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "Escribe {0}region list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "Escribe {0}rest listusers {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "Escribe {0}tileban help {{0}} para más sub-comandos." -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "Escribe {0}tileban list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "Escribe {0}warp list {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "Escribe {0}who {1} para ver más." @@ -6389,82 +6428,95 @@ msgstr "Escribe {0}who {1} para ver más." msgid "Type / {{0}} for more." msgstr "Escribe / {{0}} para ver más." -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "No se encontró ningún buff de nombre \"{0}\"" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "No se encontraron buffs de nombre \"{0}\"" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "No se encontró ningún jugador de nombre \"{0}\"" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "No se encontraron jugadores de nombre \"{0}\"" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "No se puede hacer despegar a {0} porque no está conectado." -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "No se puede hacer despegar a {0} porque no está conectada." -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "No se puede analizar el comando '{0}' del jugador {1}." -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "No se puede analizar el comando. Por favor contacte a un administrador para obtener ayuda." -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "No se puede generar un Muro Carnoso basado en su estado o tu ubicación actual." -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "No se puede verificar el hash de contraseña para el usuario {0} ({1})" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "Se revocó la prohibición de {0}." -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "Se revocó la prohibición del proyectil {0}." -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "Se revocó la prohibición del bloque {0}." -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "Comando de ban desconocido. Prueba {0} {1}, {2}, {3}, {4}, {5}, o {6}." -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "¡Planta desconocida!" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "Dirección del jugador no reconocida" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "Hasta que no se resuelva el problema, TShock no podrá iniciarse (y crasheará al cargar)." @@ -6473,7 +6525,7 @@ msgstr "Hasta que no se resuelva el problema, TShock no podrá iniciarse (y cras msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "El servidor de actualización no respondió con un OK. Mensaje del servidor: [error {0}] {1}" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "SQL UpdateLogin devolvió un error" @@ -6483,78 +6535,78 @@ msgstr "SQL UpdateLogin devolvió un error" msgid "UpdateManager warning: {0}" msgstr "Advertencia de UpdateManager: {0}" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "Sube la información de la cuenta cuando te uniste al servidor como tus datos de Personaje Exclusivo-de-Servidor." -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "Uso: {0}tempgroup [tiempo]" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "Uso: /sudo [comando]." -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "Uso: /uploadssc [nombreJugador]." -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "¡Usa \"{0}worldevent rain slime\" para iniciar una lluvia de slimes!" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "Usa comillas (Ej. \"tal objeto\") para objetos con espacios." -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "Usa tsi:[number] o tsn:[username] para distinguir entre IDs y nombres de usuario." -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "Se usa para autenticarse como superadmin la primera vez que configuras TShock." -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "El usuario {0} '{1}' no existe" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "Ya existe el usuario {0}." -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "El usuario {0} no pudo ser añadido, comprueba la consola para más detalles." -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "El usuario {0} no pudo ser añadido. Comprueba la consola para más detalles." -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "El usuario {0} no existe." -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "La cuenta de usuario {0} ya existe" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "La cuenta de usuario {0} no existe" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "Ayuda del comando de gestión de usuario:" @@ -6564,130 +6616,130 @@ msgstr "Ayuda del comando de gestión de usuario:" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "El nombre de usuario o la contraseña pueden ser incorrectos o esta cuenta puede no tener suficientes privilegios." -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "Usando {0} para la implementación de casillas" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "Usando {0} en algo que no es miel" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "Usando {0} en algo que no es lava" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "Usando {0} en algo que no es fulgor" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "Usando {0} en algo que no es agua" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "Usando {0} en algo que no es agua o fulgor" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "Usando {0} para manipular el líquido desconocido {1}" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "Usando el {0} prohibido para manipular líquido" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "Usando el cubo de miel prohibido sin permisos" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "Usando cubo de lava prohibido sin permisos" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "Usando cubo de fulgor prohibido sin permisos" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "Usando cubo de agua prohibido sin permisos" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "El UUID no coincide con este personaje." -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "Tipos de eventos válidos: {0}." -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "Tipos de invasión válidos si se genera una invasión: {0}." -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "Tipos de invasión válidos: {0}." -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "Modos de mundo válidos: {0}" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "El warp {0} ya existe." -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "El warp {0} es ahora privado." -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "El warp {0} es ahora público." -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "Warp añadido: {0}" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "Warp eliminado: {0}" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "Te transportas a {0}." -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "Warps ({{0}}/{{1}}):" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "¡Bienvenido a TShock para Terraria!" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "Sintaxis de Whisper" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "Sauce" @@ -6704,17 +6756,17 @@ msgstr "Mundo respaldado ({0})." msgid "World backed up." msgstr "Mundo respaldado." -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "Tipo de mundo cambiado a {0}." -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "El nombre del mundo será reemplazado por: {0}" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "La ruta del mundo se ha establecido en {0}" @@ -6728,48 +6780,48 @@ msgstr "Mundo guardado en ({0})" msgid "World saved." msgstr "Mundo guardado." -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "¡Ya estás muerto!" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "Tu sesión ya ha sido iniciada, por lo que no puedes volver a iniciarla." -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "Estás muerto(a). Los jugadores muertos no pueden ir a casa." -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "¡Estás silenciado!" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "Estás silenciado." -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "Ya no estás en modo dios." -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "¡No estás muerto!" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "¡No estás en un grupo!" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "No has iniciado sesión. Por ende, no puedes cerrarla." @@ -6777,157 +6829,161 @@ msgstr "No has iniciado sesión. Por ende, no puedes cerrarla." msgid "You are not on the whitelist." msgstr "No estás en la lista blanca." -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "Ahora estás siendo molestado." -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "Ahora estas en modo dios." -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "Te potencias con {0} ({1}) por {2} segundos." -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "Mataste {0} PNJ." msgstr[1] "Mataste {0} PNJ." -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "Puedes modificar y distribuirlo bajo los términos de la GNU GPLv3." -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "Puedes utilizar '{0}sudo {0}{1}' para anular esta comprobación." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "Puedes usar {0} en lugar de {1} para molestar a un jugador silenciosamente." -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "Puede usar {0} en lugar de {1} para ejecutar este comando de forma silenciosa." -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "Puedes usar {0} en lugar de {1} para lanzar un fuego artificial silenciosamente." -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "Puedes usar {0} en lugar de {1} para hacer despegar a un jugador silenciosamente." -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "Puedes usar {0}{1} para cambiar esta configuración." -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "Puedes usar {0}{1} para susurrar a otros jugadores." -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "¡No puedes poner en modo dios nada que no sea un jugador!" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "¡No puedes curar a un jugador muerto!" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "No puedes expulsar a otro admin." -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "No puedes quitar el grupo huésped predeterminado." -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "¡No puedes reaparecer a la consola del servidor!" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "No puedes iniciar sesión mientras se te está conteniendo." -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "No puedes iniciar sesión mientras estas muerto(a)." -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "No puedes iniciar sesión mientras usas un objeto." -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "No puedes generar objetos prohibidos." -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "No puedes usar el Reloj de Sol Encantado porque el tiempo está detenido." -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "No puedes susurrarte a ti mismo." -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "Has eliminado {0} objeto en un radio de {1}." msgstr[1] "Has eliminado {0} objetos en un radio de {1}." -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "Has eliminado {0} PNJ en un radio de {1}." msgstr[1] "Has eliminado {0} PNJ en un radio de {1}." -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "Has eliminado {0} proyectil en un radio de {1}." msgstr[1] "Has eliminado {0} proyectiles en un radio de {1}." -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "No has puesto un nombre de jugador." -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "¡Has muerto! Normalmente habrías sido baneado." -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "No tienes acceso a este comando." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "No tienes permiso de construir en el punto de aparición." -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "No tienes permiso para construir dentro de esta región." -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "No tienes permiso para construir en este servidor." @@ -6935,7 +6991,7 @@ msgstr "No tienes permiso para construir en este servidor." msgid "You do not have permission to contribute research." msgstr "No tienes permiso de contribuir investigación." -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "No tienes permiso de crear ese proyectil." @@ -6955,15 +7011,15 @@ msgstr "No tienes permiso de detener el tiempo del servidor." msgid "You do not have permission to freeze the wind strength of the server." msgstr "No tienes permiso de congelar la fuerza del viento del servidor." -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "No tienes permiso para poner en modo dios a otro jugador." -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "No tienes permiso para hacer crecer este tipo de árbol." -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "No tienes permiso para dañar a PNJ ciudadanos." @@ -7008,12 +7064,12 @@ msgstr "No tienes permiso para cambiar la fuerza del viento del servidor." msgid "You do not have permission to modify the world difficulty of the server." msgstr "No tienes permiso para cambiar la dificultad de mundo del servidor." -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "No tienes permiso para silenciar a {0}" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "No tienes permiso para realizar esta acción." @@ -7021,24 +7077,24 @@ msgstr "No tienes permiso para realizar esta acción." msgid "You do not have permission to place actuators." msgstr "No tienes permiso para colocar actuadores." -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "No tienes permiso para colocar Sensores Lógicos." -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "No tienes permiso para colocar este bloque." -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "No tienes permiso para reubicar a los PNJ ciudadanos." -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "No tienes permiso para reaparecer a otro jugador." -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "No tienes permiso para ver las IDs de los jugadores." @@ -7046,57 +7102,61 @@ msgstr "No tienes permiso para ver las IDs de los jugadores." msgid "You do not have permission to send emotes!" msgstr "¡No tienes permiso para enviar emoticonos!" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "No tienes permiso para invocar mascotas." -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "No tienes permiso para iniciar una fiesta." -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "No tienes permiso para iniciar invasiones." -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "No tienes permiso para iniciar el evento {0}." -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "No tienes permiso para invocar el Ejército del Antiguo." -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "No tienes permiso para invocar jefes." -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "No tienes permiso para invocar a la Emperatriz de la Luz." -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "¡No tienes permiso para invocar al Sectario Lunático!" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "No tienes permiso de teletransportar a todos los demás jugadores." -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "No tienes permiso de teletransportar a todos los jugadores." -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "No tienes permiso de teletransportar a otros jugadores." -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "No tienes permiso para teletransportarte usando {0}." -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "No tienes permiso para teletransportarte usando objetos." @@ -7104,11 +7164,11 @@ msgstr "No tienes permiso para teletransportarte usando objetos." msgid "You do not have permission to teleport using pylons." msgstr "No tienes permiso de teletransportarte usando pilones." -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "No tienes permiso para teletransportarte usando Pociones de Agujero de Gusano." -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "No tienes permiso para teletransportarte." @@ -7116,203 +7176,219 @@ msgstr "No tienes permiso para teletransportarte." msgid "You do not have permission to toggle godmode." msgstr "No tienes permiso de activar el modo dios." -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "No tienes permiso para subir datos de join-state de personaje exclusivo-de-servidor para otro jugador." -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "No tienes permiso para usar el Reloj de Sol Encantado." -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "Has introducido un espacio después de {0} en lugar de un comando. Escribe {0}help para ver la lista de comandos." -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "No pudiste cambiar tu contraseña." -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "Se te ha negado la entrada." -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "Has sido silenciado de forma remota" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "Se revocó tu silencio de forma remota" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "Te desconectaste de tu cuenta exitosamente." -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "¡Has potenciado a {0} con {1} ({2}) durante {3} segundos!" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "Has cambiado el grupo de {0} a {1}" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "Has cambiado el grupo de {0} a {1} durante {2}" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "Has muerto en modo extremo y todos tus objetos se han perdido para siempre." -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "Has lanzado a {0} a la estratosfera." -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "Te has lanzado a ti mismo a la estratosfera." -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "Has silenciado a {0} por {1}" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "Has reaparecido a {0}" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "Te has reaparecido a ti mismo." -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "Cambiaste tu contraseña exitosamente." -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "Has desmuteado a {0}." -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "No has recibido ningún susurro recientemente." -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "Curas {1} puntos de vida a {0}." -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "Te curas por {0} puntos de vida." -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "¡Has matado a {0}!" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "¡Te has matado a ti mismo!" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "Has lanzado fuegos artificiales sobre {0}." -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "Has lanzado fuegos artificiales sobre ti mismo." -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "Has iniciado sesión desde otra ubicación." -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "Has iniciado sesión desde la misma IP." -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "Ahora podrás recibir susurros de otros jugadores." -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "Deberías considerar el quitar o denegar el permiso tshock.ignore.ssc para este jugador." -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "Debes estar conectado para poder aprovechar las regiones protegidas." -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "¡Debes proporcionar el código de configuración!" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "Debes cambiar a normal la opción ForceTime en el archivo de configuración para usar el Reloj de Sol Encantado." -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "Debes invocar al Muro Carnoso en el inframundo." -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Debes usar este comando dentro del juego." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "Necesitas unirte con un jugador en modo extremo." -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "Necesitas unirte con un jugador en modo medio o superior." -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "Necesitas unirte con un jugador en modo clásico." -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "¡Tienes que volver a entrar para asegurarnos que tu casilla basurero está vacía!" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "Has invocado a {0} {1} vez." msgstr[1] "Has invocado a {0} {1} veces." -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "Transportas a {0} hacia {1}." -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "Te han teletransportado hacia {0}." -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "Serás teletransportado a tu última ubicación conocida..." -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "Ya no recibirás más susurros de otros jugadores." -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "¡No tienes permiso para cambiar bloques aquí!" @@ -7320,85 +7396,89 @@ msgstr "¡No tienes permiso para cambiar bloques aquí!" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "Estás intentando sincronizar, pero no tienes un archivo packages.json." -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "Tu cuenta fue ascendida a superadmin por 10 minutos." -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "Has registrado tu cuenta: \"{0}\"." -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "El grupo de tu cuenta no pudo ser cargado. Por favor informa de esto a los administradores del servidor." -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "Tu cliente envió un nombre de personaje en blanco." -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "Tu cliente envió un UUID en blanco. Configúralo para que envíe uno o usa un cliente distinto." -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "Tu base de datos contiene UserIDs inválidas (deberían ser números enteros)." -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "Tu grupo fue cambiado a {0} por {1}" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "Tu grupo fue cambiado temporalmente a {0}" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "Tu inventario parece estar lleno." -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "Los datos locales de tu personaje, desde tu conexión inicial, se han subido al servidor." -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "Tu nueva cuenta ha sido verificada y el sistema {0}setup ha sido desactivado." -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "Tu contraseña no coincide con la contraseña de este personaje." -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "Tu contraseña es: {0}." -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "Se ha restaurado tu conjunto de permisos previos." -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "Los volcados de referencia han sido creados en la carpeta del servidor." -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "Se han guardado los datos de SSC para tu personaje." -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "Expiró tu acceso temporal al grupo." -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "z <#> - Establece el orden Z de la región." -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "Se te ha negado la entrada por contraseña inválida." diff --git a/i18n/fr_FR/TShockAPI.po b/i18n/fr_FR/TShockAPI.po index 9826d110..e08b6564 100644 --- a/i18n/fr_FR/TShockAPI.po +++ b/i18n/fr_FR/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "La sauvegarde SSC est ignoré(e) (à cause de tshock.ignoré.ssc) pour {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Vous êtes banni(e): {1} ({2} restant)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Vous êtes banni(e): {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "→ Vous êtes connecté en tant que {0} dans le groupe {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "Le numéro de page \"{0}\" n'est pas valide." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" a demandé un point de terminaison REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Une annonce du serveur) " @@ -211,513 +211,513 @@ msgstr "(Une annonce du serveur) " msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} jeton(s))" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) a changé le mot de passe pour le compte {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) ne pouvait pas changer le mot de passe du compte {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) a eu {2} ou plus tentatives de connexion invalides et a été expulse(e) automatiquement." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} a ajouté le compte {1} au groupe {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} a tenté de créer le compte {1} mais il a déjà été pris." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} s'est connecté avec succès au compte {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} a commencé la pluie de gelées." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} a commencé la pluie." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} a changé le compte {1} au groupe {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} a modifié le nombre maximum d'apparitions en {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} a modifié le maximum d'apparition à 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} a changé le mot de passe pour le compte {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} a modifié le taux d'apparition à {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} a changé le taux d'apparition à 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} a changé la vitesse du vent à {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} a arrêté la pluie." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} a arrêté la pluie de gelées." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} a exécuté: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} n'a past pu se connecter au compte {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "{0} est autorisé à utiliser {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "{0} n'est pas autorisé à utiliser {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} a changé votre groupe en {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} a désactivé les téléportations entrantes." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} a fini l'événement d'invasion actuel." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} a arrêté l'armée de l'ancien." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} a produit le mur de chair." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} a commencé l'invasion de l'armée de gobelins." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} a commencé la folie martienne." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} a commencé l'invasion pirate." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} a commence l'invasion de la légion de givre." -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} est autorisé à utiliser {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} n'est pas autorisé à utiliser {1}." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -727,421 +727,421 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} n'est pas banni(e)." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} vous a tué !" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{0} expulsé {1} pour '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0} NPC a été tué." msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} a créé un compte \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "{0} restant(s)." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} a commencé un événement de lune de sang." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} a commencé un événement de pleine lune." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} a commencé une nuit de lanterne." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} a commencé un événement de tempête de sable." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} a commencé une éclipse." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "{0} a commencé la lune de givre à la vague {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "{0} a commencé la lune de citrouille à la vague {1}!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} a arrêté une éclipse." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} a arrêté la lune de sang actuelle." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} a arrêté l'événement tempête de sable actuel." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} a arrêté la nuit de lanterne." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} a supprimé avec succès le compte : {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} s'est téléporté {1} à vous." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} c'est téléporté vers vous." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} vous a téléporté à {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} a essayé d'exécuter {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} a déclenché un météore." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "{0} a été expulsé pour '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} a été téléporté à vous." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "La dernière adresse IP connue de {0} est {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "La dernière connexion de {0} a eu lieu {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "La date d'inscription de {0} est {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add username password group - Ajouter un utilisateur spécifique" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del username - Effacer un utilisateur spécifique" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group username newgroup - Changer un utilisateur spécifique" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password username newpassword - Changer le mot de passe d'un utilisateur" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "Un groupe portant le même nom existe déjà." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "Il y a beaucoup de choses qui échoueront à cause de cela. Vous devez supprimer et recréer le domaine autorisé." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "Une connexion REST de {0} a été bloquée parce qu'il a {1} jetons de limite des taux et est seuil de RESTMaximumRequestsPerInterval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "Le compte utilisateur n'existe pas." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "Le compte {0} n'existe pas ! Alors, le mot de passe ne peut pas être changé." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "Le compte {0} a été ajouté au groupe {1}." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "Le compte {0} a été changé en groupe {1}." -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "Un compte est nécessaire ! {0}register ou {0}login pour jouer, s'il vous plaît !" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Le compte a été effacé avec succès." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - Ajoute un ban d'objet." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "Le statut a été anormalement ajouté à {0} NPC." -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "AddUser SQL a retourné une erreur ({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "La mémoire allouée : {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Permet à un groupe d'utiliser un objet." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - Permet à un groupe d’utiliser un projectile." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Une exception s'est produite lors de la récupération de la base de données : {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Une exception s'est produite lors de la transaction de la base de données : {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Un identifiant pour le nom d'un caractère." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "Un identifiant pour le nom du compte utilisateur TShock." -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "Un identifiant pour un UUID." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Une vérification des mises à jour a été mise en attente. Si une mise à jour est disponible, vous serez notifié sous peu." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Il ennuie un joueur pendant un certain temps." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "Un anonyme a demandé un point d'accès REST : {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "Vous avez identifié {0} avec succès." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Autosave a été désactivé" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Autosave a été activé" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "Autosave est désactivé" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Autosave est activé" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "La sauvegarde a échoué !" msgid "Backup Thread" msgstr "Le fil de sauvegarde" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "La tentative de connexion est invalide." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Un ban a été rajouté. Numéro de ticket : {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Un ban a été levé." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "La lune sanguine a été définie a {0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "La commande est invalide. Tapez-vous {0}help pour une liste de commandes valides." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Il y a trop de tentatives de connexion invalides." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "Vous pouvez utiliser '{0}sudo {0}{1}' pour remplacer cette vérification." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "Vouz n'avez pas accès à cette commande." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Vous devez utiliser cette commande dans le jeu." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/fr_QC/TShockAPI.po b/i18n/fr_QC/TShockAPI.po index 7425eff1..9eb2aebf 100644 --- a/i18n/fr_QC/TShockAPI.po +++ b/i18n/fr_QC/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:53\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: French, Quebec\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,513 +211,513 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -727,421 +727,421 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/id_ID/TShockAPI.po b/i18n/id_ID/TShockAPI.po index 9f00eb69..1a0404a8 100644 --- a/i18n/id_ID/TShockAPI.po +++ b/i18n/id_ID/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Mengabaikan penyimpanan SSC untuk {0} (karena memiliki tshock.ignore.ssc)" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Anda telah diblokir: {1}( tersisa {2})" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Anda telah diblokir: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (Temukan IP yang terkait dengan target akun offline)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Blokir secara permanen untuk nama akun ini)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (target ini ditemukan berdasarkan indeks pemain)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Blokir secara permanen pemain online dengan Account, UUID, dan IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5} (Blokir permanen untuk alamat IP ini)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Misalnya nilai {0} akan merepresentasikan 10 hari, 30 menit, 0 detik." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " Jika {0} tidak ada ditentukan, perintah menggunakan {1} secara default." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Jika rentang waktu tidak ditentukan, maka akan diblokir permanen." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " Kecuali jika {0} diteruskan ke perintahnya, {1} akan dianggap sebagai pemain atau indeks pemain" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> telah masuk sebagai: {0}; dalam grup {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} disediakan ketika anda menambah pemblokiran, dan juga dapat dilihat dengan perintah {1} ." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} disediakan ketika anda menambah pemblokiran, dan dapat ditemukan dengan perintah {1} ." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (nama akun), -u (UUID), -n (nama karakter), -ip (alamat IP), -e (harus tepat, {1} akan digunakan sebagai pengenal)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: menggunakan format {1} ini untuk menentukan lama pemblokiran." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Blokir pemain online dari nama akun" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Blokir pemain online dari alamat IP" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "Blokir pemain online dari indeks (Untuk nama yang susah diketik)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Pohon bawaan :" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Pohon gem :" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- daftar blokir aktif. Tren warna menuju hijau saat pemblokiran mendekati kedaluwarsa" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- Lain-lain :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Pohon Palm :" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "!!! > Atur DisableLoginBeforeJoin menjadi true didalam berkas config dan /reload jika ini sebuah masalah." -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "!!! > Atur DisableUUIDLogin menjadi true didalam berkas config, selanjutnya /reload jika ini sebuah masalah." -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "!!! Masuk sebelum bergabung diaktifkan. Akun yang ada dapat masuk & kata sandi server akan dilewati." -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "!!! Kata sandi server di config.json diganti oleh prompt interaktif dan akan diabaikan." -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "!!! Login UUID diaktifkan. Jika UUID pengguna cocok dengan sebuah akun, kata sandi server akan dilewati." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" itu bukan ID buff yang valid!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "\"{0}\" itu bukan opsi valid yang jelas." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" itu bukan NPC yang valid." @@ -193,7 +193,7 @@ msgstr "\"{0}\" itu bukan NPC yang valid." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" itu bukan nomor halaman yang valid." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" itu bukan radius yang valid." @@ -203,7 +203,7 @@ msgstr "\"{0}\" itu bukan radius yang valid." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" telah meminta titik akhir REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Siaran Server) " @@ -211,507 +211,507 @@ msgstr "(Siaran Server) " msgid "(Super Admin) " msgstr "(Super Admin) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - Nomor tiket: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} token)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) telah mengubah sandi untuk akun {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) gagal mengubah sandi untuk akun {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "{0} ({1}) dari '{2}' dari grup '{3}' telah bergabung. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "{0} ({1}) dari '{2}' grup telah bergabung. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) telah melakukan kesalahan login sebanyak {2} atau lebih dan telah dikeluarkan secara otomatis." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) telah bergabung." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "{0} (Indeks: {1}, ID Akun: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "{0} (Indeks: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} ({2} yang lalu)" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{0} {1} dalam {2} ({3} yang lalu)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} telah menambahkan {1} ke dalam grup {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "{0} menerapkan advanced combat techniques volume 2!" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "{0} telah menerapkan teknik pertempuran tingkat lanjut!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "{0} menerapkan tas Travelling Merchant!" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} mencoba mendaftarkan akun {1} tetapi telah digunakan." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "{0} telah berhasil diautentikasi sebagai pengguna {1}." -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} berhasil masuk sebagai: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "{0} diblokir {1} untuk '{2}'." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "{0} membunuh NPC {1}." -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} telah menurunkan hujan slime." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} telah menurunkan hujan." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} telah merubah akun {1} ke dalam grup {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} telah mengubah jumlah maksimal kemunculan musuh menjadi {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} telah mengubah jumlah maksimal kemunculan musuh menjadi 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} telah mengubah kata sandi akun {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} telah mengubah tingkat kemunculan monster menjadi {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} telah mengubah tingkat kemunculan monster menjadi 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} telah mengubah kecepatan angin menjadi {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "{0} telah menghapus {1} item dalam radius sejauh {2}." -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "{0} telah menghapus {1} NPC dalam radius sejauh {2}." -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "{0} telah menghapus {1} proyektil dalam radius sejauh {2}." -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0} telah menonaktifkan mode halloween." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} telah menonaktifkan mode natal." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "{0} terputus." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} telah mengaktifkan mode halloween." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} telah mengaktifkan mode natal." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} telah mengakhiri hujan." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} telah mengakhiri hujan slime." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "{0} menjalankan (argumen dihilangkan): {1}{2}." -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} telah mengeksekusi: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} gagal mengautentikasi sebagai pengguna: {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "{0} memberi anda {1} {2}." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "{0} telah diizinkan untuk meletakkan tile {1}." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "{0} telah diizinkan menggunakan {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "{0} telah diizinkan untuk menggunakan proyektil {1}." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "{0} tidak diizinkan meletakkan tile {1}." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "{0} tidak diizinkan menggunakan proyektil {1}." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "{0} telah tidak diizinkan menggunakan {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "{0} telah memberimu buff dengan {1} ({2}) untuk {3} detik!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} telah mengubah grup anda ke {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} telah menonaktifkan teleportasi yang akan datang." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} telah mengakhiri peristiwa invasi saat ini." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} telah mengakhiri peristiwa Old One's Army." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} telah bergabung." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} telah bergabung. IP: {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0} telah melempar {1} keluar angkasa." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0} telah melempar dirinya sendiri keluar angkasa." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0} telah melempar dirinya sendiri keluar angkasa." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "{0} telah keluar." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0} telah dibisukan {1} kurun waktu {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "{0} telah memunculkan anda kembali." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "{0} telah mengirim sebuah permintaan ke pelayanan pengiriman kelinci!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "{0} telah mengirim sebuah permintaan ke pelayanan pengiriman kucing!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "{0} telah mengirim sebuah permintaan ke pelayanan pengiriman anjing!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" -msgstr "" +msgstr "{0} telah mengirim sebuah permintaan ke kurir slime!" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "{0} telah membangkitkan {1} {2} kali." -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} telah membangkitkan Wall of Flesh." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." -msgstr "" +msgstr "{0} mempunyai data SSC di dalam database, tetapi juga mempunyai permission tshock.ignore.ssc. Hal ini akan mengakibatkan data SSC mereka akan diabaikan." -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} telah memulai invasi tentara goblin." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} telah memulai invasi martian." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} telah memulai invasi bajak laut." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} telah memulai invasi pasukan salju." -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "{0} telah tidak dibisukan {1}." -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "{0} telah menyembuhkan {1} untuk {2} HP." -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0} telah menyembuhkan diri sendiri untuk {1} HP." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "{0} telah menyembuhkan diri sendiri untuk {1} HP." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} sudah diperbolehkan untuk meletakkan tile {1}." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} sudah diperbolehkan menggunakan {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "{0} sudah diperbolehkan untuk menggunakan proyektil {1}." -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "{0} sudah mati!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} sudah tidak diperbolehkan menggunakan {1}." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "{0} sudah dicegah dari peletakan tile {1}." -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "{0} sudah dicegah dari penggunaan proyektil {1}." @@ -721,419 +721,419 @@ msgstr "{0} sudah dicegah dari penggunaan proyektil {1}." msgid "{0} is banned! Remove it!" msgstr "{0} diblokir! Buang itu!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "{0} tidak lagi dalam mode dewa." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "{0} tidak menerima bisikan." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} tidak diblokir." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "{0} belum mati!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "{0} sekarang dalam mode dewa." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "{0} telah offline dan tidak dapat menerima balasan anda." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} telah membunuh anda!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{1} dikeluarkan oleh {0} karena '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "{0} telah meluncurkan kembang api kepada anda." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0} NPC telah terbunuh." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} telah terdaftar akun: \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "sisa waktu {0}." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0} telah diberi nama kembali {1}." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0} mengatur waktu ke {1}:{2:D2}." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "{0} mengatur waktu ke 00:00." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "{0} mengatur waktu ke 04:30." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "{0} mengatur waktu ke 12:00." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "{0} mengatur waktu ke 19:30." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "{1} menampar {0} untuk {2} kerusakan." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "{1} dipanggil {0} {2} kali." -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} telah memulai peristiwa bulan berdarah." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} telah memulai peristiwa bulan purnama." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} telah memulai malam lentera." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} telah memulai badai pasir." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} telah memulai gerhana." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "{0} telah memulai bulan dingin di gelombang {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "{0} telah memulai peristiwa Old One's Army!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "{0} telah memulai bulan labu di gelombang {1}!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} telah menghentikan gerhana." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} telah menghentikan bulan berdarah saat ini." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} telah mengehentikan badai pasir saat ini." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} telah menghentikan malam lentera." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} telah sukses menghapus akun: {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "{0} telah memunculkan Bulan Berdarah!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "{0} telah memunculkan bulan beku!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "{0} telah memunculkan invasi goblin!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "{0} telah memunculkan invasi Martian!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "{0} telah membangkitkan Mechdusa!" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "{0} telah membangkitkan Moon Lord!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "{0} telah memunculkan bulan labu!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "{0} telah memunculkan gerhana!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "{0} telah membangkitkan {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "{0} telah membangkitkan Empress of Light!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "{0} telah memunculkan si Bajak Laut!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "{0} telah memunculkan Pasukan Salju!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{1} diteleportasikan {0} kepada anda." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} telah menteleportasi kepada anda." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} telah menteleportasikan kamu ke {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0} mencoba untuk menjalankan (argumen dihilangkan) {1}{2}." -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} telah mencoba untuk menjalankan {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} telah memicu sebuah meteor." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} telah menandai anda ke {1}." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "{0} telah diblokir karena '{1}'." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "{0} telah dikeluarkan karena '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} telah diteleportasi ke anda." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "{0} berada didalam grup {1}." -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "IP terakhir {0} yang diketahui adalah {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "masuk terakhir {0} pada saat {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "Tanggal pendaftaran {0} ialah {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "{0}{1} dianggap bukan samaran." -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "{0}{1} bantuan: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "{0}{1}/{2} pada {3} @ {4}:{5} (TShock untuk Terraria v{6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - Autentikasi diri anda menggunakan UUID dan nama karakter anda" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login - Autentikasi diri anda menggunakan kata sandi dan nama karakter anda." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login - Autentikasi diri anda menggunakan nama pengguna dan sandi anda." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add owner" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add nama-pengguna sandi grup -- tambahkan pengguna yang ditentukan" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del nama-pengguna -- hapus pengguna yang ditentukan" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group nama-pengguna grup-baru -- Mengubah grup pengguna" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password username sandi-baru -- mengubah sandi pengguna" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" -msgstr "" +msgstr "* **Perintah**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" -msgstr "" +msgstr "* **Default**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" -msgstr "" +msgstr "* **Jenis data**: `{0}`" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" -msgstr "" +msgstr "* **Hak akses**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" -msgstr "" +msgstr "**Contoh penggunaan**: `{0}?{1}`" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" -msgstr "" +msgstr "**Objek**:" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" -msgstr "" +msgstr "**Aksi**:" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - kamu telah diblokir: {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1141,15 +1141,15 @@ msgstr " {1}" #: ../../TShockPluginManager/NugetCLI.cs:187 #, csharp-format msgid "{0} from {1} [{2}]" -msgstr "" +msgstr "{0} dari {1}[{2}]" #: ../../TShockPluginManager/NugetCLI.cs:178 #, csharp-format msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1158,51 +1158,51 @@ msgstr " {1}" #, csharp-format msgid "=== Dependency ===" msgid_plural "=== Dependencies ===" -msgstr[0] "" +msgstr[0] "=== Dependensi ===" #: ../../TShockPluginManager/NugetCLI.cs:133 #, csharp-format msgid "=== Requested Plugin ===" msgid_plural "=== Requested Plugins ===" -msgstr[0] "" +msgstr[0] "=== Plugin yang dibutuhkan ===" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "si Deeeclops" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "Grup dengan nama yang sama sudah ada." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "Banyak hal yang akan gagal karena ini. Anda harus menghapus dan membuat ulang field yang diizinkan." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "Server jahat dapat dengan mudah mencuri UUID pengguna. Anda dapat mempertimbangkan untuk mematikan opsi ini jika Anda menjalankan server publik." -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "sebuah Martian Saucer" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "Sebuah meteor telah terpicu." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "sebuah Pilar Nebula" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "Sebuah kata sandi untuk server ini telah ditetapkan didalam config.json dan digunakan saat ini." -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "Nama pemain harus ada untuk menendang pemain. Mohon sediakan nama pemain itu." -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "Sebuah plugin di server ini memberhentikan proses masuk anda." @@ -1211,87 +1211,87 @@ msgstr "Sebuah plugin di server ini memberhentikan proses masuk anda." msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "Login REST dari {0} diblokir karena saat ini memiliki {1} token rate-limit dan berada di batas RESTMaximumRequestsPerInterval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "sebuah Pilar Solar" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "sebuah Pilar Stardust" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "Akun user dari nama itu tidak ada." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "sebuah Pilar Vortex" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "Akun {0} tidak ada! oleh karena itu, sandi tidak dapat diubah." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "Akun {0} telah ditambah ke grup {1}." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "Akun {0} telah diubah menjadi grup {1}." -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "Diperlukan akun! dimohon {0}register atau {0}login untuk bermain!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Akun berhasil dihapus." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "Pengguna-pengguna REST aktif ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - menambah sebuah barang." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "add - menambahkan sebuah grup baru." -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "add - menambahkan pemblokiran sebuah proyektil." -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "add - menambahkan pemblokiran sebuah tile." -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "Ditambahkan {0} kedalam whitelist." -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "Telah menambahkan buff tidak normal ke NPC {0}." -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "Telah menambahkan grup {0} ke {1}." -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "Telah menambahkan pengguna {0} ke {1}." -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "addperm - Tambahkan beberapa perizinan ke sebuah grup." @@ -1300,179 +1300,179 @@ msgstr "addperm - Tambahkan beberapa perizinan ke sebuah g msgid "AddUser SQL returned an error ({0})" msgstr "AddUser SQL mengembalikan kesalahan({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "Nama lain dari {0}{1}: {0}{2}" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "Semua NPC yang hidup (termasuk NPC kota) yang ada didalam server akan terbunuh jika kamu tidak memasukkan nama atau ID." -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "semua boss" #: ../../TShockPluginManager/NugetCLI.cs:169 msgid "All done! :)" -msgstr "" +msgstr "Berhasil! :)" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "Semua token REST telah dihilangkan." -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "Alokasi memori: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Izinkan sebuah grup untuk menggunakan sebuah item." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - Izinkan sebuah grup untuk menggunakan sebuah projectile." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow - Izinkan sebuah grup untuk meletakkan sebuah tile." -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "allow - Izinkan seorang pemain kedalam sebuah region." -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "allowg - Izinkan sebuah grup pemain kedalam sebuah region." -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "Amber Gemtree" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "Amethyst Gemtree" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "Sebuah akun telah terdeteksi didalam basis data pemain, tapi setup-code.txt masih ada." -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Pengecualian telah terjadi selama pengembalian basis data: {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Pengecualian telah terjadi selama transaksi basis data: {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "Terjadi sebuah pengecualian dalam menjalankan sebuah perintah." -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Pengidentifikasi untuk nama karakter." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "Pengidentifikasi untuk pengguna nama akun TShock." -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "Pengidentifikasi untuk UUID." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "Pengidentifikasi untuk Alamat IP dalam bentuk oktet. contohnya., '{0}'." -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Pemeriksaan pembaruan dalam antrean. jika pembaruan tersedia, kamu akan diberitahu segera." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "Sintaks mengganggu" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "Mengganggu {0} dalam {1} detik." -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Mengganggu pemain beberapa kali." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "Anonim telah meminta titik akhir REST: {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "Anti-build sekarang tidak aktif." -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "Anti-build sekarang aktif." -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "Argumennya: add [nama warp], del [nama warp], list [halaman]." -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "Argumennya: send [pemain] [nama warp], hide [nama warp] [Enable(true/false)]." -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "Berhasil diautentikasi sebagai {0}." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "Penyimpanan Otomatis Nonaktif" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "Penyimpanan Otomatis Aktif" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Penyimpanan Otomatis telah di non-aktifkan." -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Penyimpanan Otomatis telah di aktifkan." -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "Penyimpanan Otomatis non-aktif." -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Penyimpanan Otomatis aktif." -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "Perintah Ban yang tersedia:" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "Identifikasi yang tersedia ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "Wilayah tersedia Sub-Perintah ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "Sub-Perintah dari REST tersedia:" @@ -1489,1039 +1489,1059 @@ msgstr "Pencadangan gagal!" msgid "Backup Thread" msgstr "Utas Cadangan" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "Cadangan Nonaktif" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "Cadangan Aktif" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Upaya masuk yang buruk." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "ban {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "ban {0} " -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "ban {0} [Flags]" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "Pemblokiran {0} telah dicabut oleh {1}." -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "Pemblokiran {0} telah ditandai sebagai kadaluwarsa." -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "Ban Add sintaks" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "Pemblokiran telah ditambahkan. Nomor tiket {0} telah dibuat untuk pengidentifikasian {1}." -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Pemblokiran telah ditambahkan. Nomor Tiket: {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "Ban Del Sintaks" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "Ban Details Sintaks" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "Ban List Sintaks" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Pemblokiran telah dihilangkan." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Contoh Penggunaan Pemblokiran" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "{0} telah diblokir." -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "Proyektil diblokir {0}." -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "Tile diblokir {0}." -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "Diblokir: {0}" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "Diblokir." -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "Blokiran ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "Rangkaian dasar" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "Betsy" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "Bulan Berdarah telah diatur dalam {0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "Kedudukan Bulan Berdarah: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "Pohon Boreal" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" -msgstr "" +msgstr "Bouncer / HandleNpcTalk telah ditolak dari bouncer, out of bounds dari {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" -msgstr "" +msgstr "Bouncer / HandleNpcTalk ditolak karena throttling bouncer dari {0}" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "Bouncer / OnChestItemChange (ketidakcocokan peti) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "Bouncer / OnChestItemChange (penonaktifkan) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "Bouncer / OnChestItemChange(pemeriksaan jangkauan) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "Bouncer / OnChestItemChange (Pelindungan Wilayah) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "Bouncer / OnChestOpen (penonaktifkan) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "Bouncer / OnChestOpen (pemeriksaan jangkauan) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "Bouncer / OnChestOpen (Pemeriksaan Wilayah) ditolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "Penolakan / OnFishOutNPC ditolak karena tidak ditemukan proyektil bobber aktif! - Dari {0}" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "Penolakan / OnFishOutNPC ditolak karena tidak menggunakan sebuah pancingan! - Dari {0}" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "Penolakan / OnFishOutNPC ditolak karena NPC tidak berada dalam daftar NPC yang bisa dipancing! - Dari {0}" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "Penolakan / OnFishOutNPC menolak pemeriksaan jangkauan! - Dari {0}" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "Penolakan / OnFishOutNPC menolak izin pembangkitan boss dari {0}" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "Penolakan / OnFoodPlatterTryPlacing menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "Penolakan / OnFoodPlatterTryPlacing menolak item tidak diletakkan oleh tangan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "Penolakan / OnFoodPlatterTryPlacing menolak izin dari {0}" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "Penolakan / OnFoodPlatterTryPlacing menolak pemeriksaan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "Penolakan / OnFoodPlatterTryPlacing menolak peletakkan tile valid dari {0}" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "Penolakan / OnGemLockToggle penempatan tidak valid/deadmod dari {0}" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "Penolakan / OnGemLockToggle menolak pemeriksaan batas dari {0}" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "Penolakan / OnGemLockToggle penolakan disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "Penolakan / OnGemLockToggle menolak pemeriksaan izin dari {0}" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "Penolakan / OnGetSection menolak nama pemain kosong." -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "Penolakan / OnGetSection menolak paket GetSection dari {0}" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "Penolakan / OnHealOtherPlayer pemeriksaan 0.2 dari {0}" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "Bouncer / OnHealOtherPlayer menolak disabled/throttled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "Penolakan / OnHealOtherPlayer menolak batas heal other dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "Penolakan / OnHealOtherPlayer penolakan pemeriksaan null" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "Penolakan / OnItemDrop menolak percobaan crash dari {0}" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "Penolakan / OnItemDrop menolak dari disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "Penolakan / OnItemDrop menolak dari pemeriksaan item ban/pemeriksaan max stack/pemeriksaan min stack dari {0}" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "Penolakan / OnItemDrop menolak dari pemeriksaan jangkauan dupe dari {0}" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "Penolakan / OnItemDrop menolak dari penurunan/pengambilan item dari {0}" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "Penolakan / OnItemDrop menolak dari pemeriksaan prefix dari {0}" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "Penolakan / OnItemDrop menolak pemeriksaan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "Penolakan / OnItemDrop menolak dari sneaky(menyelinap) dari {0}" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "Penolakan / OnKillMe menolak panjang teks kematian yang buruk dari {0}" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "Penolakan / OnKillMe menolak pesan kematian kostum dari {0}" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "Penolakan / OnKillMe menolak damage tinggi dari {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "Penolakan / OnKillMe menolak pemeriksaan index dari {0}" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "Penolakan / OnLiquidSet menolak izin pembangunan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "Penolakan / OnLiquidSet menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "Penolakan / OnLiquidSet menolak liquid threshold dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "Bouncer / OnLiquidSet ditolak pengecekan tidak cocok dari {0}" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" -msgstr "" +msgstr "Bouncer / OnLiquidSet menolak tipe cairan {0} dari {1} yang sedang memegang {2}" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "Penolakan / OnLiquidSet menolak pemeriksaan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "Penolakan / OnLiquidSet menolak throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "Penolakan / OnMassWireOperation menolak izin pembangunan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "Penolakan / OnMassWireOperation menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "Penolakan / OnMassWireOperation menolak penempatan yang valid dari {0}" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "Penolakan / OnNewProjectile Mohon laporkan kepada tshock tentang ini! biasanya ini penolakan dari {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "Penolakan / OnNewProjectile Mohon laporkan kepada tshock tentang ini! biasanya ini penolakan dari {0} {1} (golf)" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "Penolakan / OnNewProjectile menolak diatas projectile limit dari {0}" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "Penolakan / OnNewProjectile menolak diatas memodifikasi AI dari {0}." -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "Penolakan / OnNewProjectile menolak diatas memodifikasi Proyektil Zenith dari {0}." -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "Penolakan / OnNewProjectile menolak diatas throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "Penolakan / OnProjectileKill menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "Penolakan / OnNewProjectile menolak batas lawan Proyektil dari {0}" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "Bouncer / OnNewProjectile menolak atas pengecekan perizinan dari {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile menolak atas batas kerusakan proyektil dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "Bouncer / OnNewProjectile menolak atas batu nisan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "Bouncer / OnNewProjectile menolak atas pengecekan keanehan dari {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "Bouncer / OnNPCAddBuff menolak atas buff tidak normal ({0}, terakhir pada {4}) ditambahkan kedalam {1} ({2}) dari {3}." -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "Bouncer / OnNPCAddBuff menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "Bouncer / OnNPCAddBuff menolak null npc dari {0}" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "Bouncer / OnNPCAddBuff menolak atas pembaruan NPC di luar batas dari {0}" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "Bouncer / OnNPCStrike menolak atas bouncer throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "Bouncer / OnNPCStrike menolak atas batasan kerusakan dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "Bouncer / OnNPCStrike menolak atas disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "Bouncer / OnNPCStrike menolak atas jarak pengecekan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "Bouncer / OnPlaceChest menolak atas gaya taruh salah dari {0}" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "Bouncer / OnPlaceChest menolak atas disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "Bouncer / OnPlaceChest menolak atas pengecekan salah dari {0}" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "Bouncer / OnPlaceChest menolak atas kesalahan permission dari {0}" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "Bouncer / OnPlaceChest menolak atas pengecekan jarak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "Bouncer / OnPlaceChest menolak atas pengecekan keanehan dari {0}" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "Bouncer / OnPlaceChest menolak atas pengecekan keanehan penempatan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "Bouncer / OnPlaceItemFrame menolak atas disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "Bouncer / OnPlaceItemFrame menolak atas pengecekan-pengecekan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "Bouncer / OnPlaceItemFrame menolak pengecekan jangkaukan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceItemFrame menolak atas penempatan tile yang benar dari {0}" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "Bouncer / OnPlaceObject menolak atas awkward memilih/membuat dari {0}" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "Bouncer / OnPlaceObject menolak Axe of Regrowth hanya menempatkan anakan {0}" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "Bouncer / OnPlaceObject menolak atas pemblokiran tile dari {0}" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "Bouncer / OnPlaceObject menolak atas orang mati tidak melakukan sesuatu dari {0}" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "Bouncer / OnPlaceObject menolak atas disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "Bouncer / OnPlaceObject menolak wadah palsu dari {0}" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "Bouncer / OnPlaceObject menolak atas putaran tidak masuk akal dari {0}" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "Bouncer / OnPlaceObject menolak atas data tile null dari {0}" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "Bouncer / OnPlaceObject menolak tile di luar batas dari {0}" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "Bouncer / OnPlaceObject menolak tile di luar batas x dari {0}" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "Bouncer / OnPlaceObject menolak tile di luar batas y dari {0}" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "Bouncer / OnPlaceObject menolak pemeriksaan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "Bouncer / OnPlaceObject menolak pembuat puing Saya tidak percaya itu bukan puing-puing! dari {0}" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "Bouncer / OnPlaceObject menolak dari batas penempatan tile dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "Bouncer / OnPlaceObject menolak penempatan yang benar dari {0}" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "Bouncer / OnPlaceTileEntity menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "Bouncer / OnPlaceTileEntity menolak Perizinan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "Bouncer / OnPlaceTileEntity menolak pengecekan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceTileEntity menolak penempatan tile yang benar dari {0}" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "Bouncer / OnPlayerAnimation menolak atas disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "Penolakan / OnPlayerAnimation menolak throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "Penolakan / OnPlayerDamage menolak pesan mati kostum dari {0}" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "Penolakan / OnPlayerDamage menolak batas damage dari {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "Penolakan / OnPlayerDamage menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "Penolakan / OnPlayerDamage menolak hostile dari {0}" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "Penolakan / OnPlayerDamage menolak pemeriksaan null" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "Penolakan / OnPlayerDamage menolak pemeriksaan jangkauan dari {0}" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "Penolakan / OnPlayerDamage menolak throttled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "Penolakan/ OnPlayerPortalTeleport menolak disabled/throttled dari {0}" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "Penolakan/ OnPlayerPortalTeleport menolak teleportasi diluar batas dari {0}" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "Penolakan/ OnPlayerPortalTeleport menolak teleportasi yang tidak dapat ditargetkan dari {0}" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "Penolakan / OnPlayerUpdate *akan menolak* dari (posisi terakhir network nol) {0}" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "Penolakan / OnPlayerUpdate menendang paksa (mencoba untuk menyetel kecepatan(velocity) +/- 50000) dari {0}" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "Penolakan / OnPlayerUpdate menendang paksa (mencoba untuk menyetel kecepatan(velocity) ke tak terbatas) dari {0}" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "Penolakan / OnPlayerUpdate menendang paksa (mencoba untuk menyetel kecepata(velocity) ke NaN) dari {0}" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "Penolakan / OnPlayerUpdate menolak dari (??) {0}" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "Penolakan / OnPlayerUpdate menolak dari (bawah ??) {0}" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "Penolakan / OnPlayerUpdate menolak dari (mayat tidak bergerak) {0}" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "Penolakan / OnPlayerUpdate menolak dari (panjang inventaris) {0}" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "Penolakan / OnPlayerUpdate menolak dari (pemeriksaan posisi) {0}" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "Penolakan / OnPlayerZone menolak dari {0}" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "Penolakan / OnProjectileKill menolak dari penolakan throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "Penolakan / OnProjectileKill menolak disabled dari {0}" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "Penolakan / OnProjectileKill menolak dari index proyektil negatif dari {0}" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "Penolakan / OnReleaseNPC menolak pelepasan npc dari {0}" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "Penolakan / OnReleaseNPC menolak diluar batas dari {0}" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "Penolakan / OnReleaseNPC menolak throttle dari {0}" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "Penolakan / OnReleaseNPC pelepasan critter berbeda dari {0}" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (axe) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (chestcap) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (hammer) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (hammer2) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "Penolakan / OnTileEdit menolak dari (gulungan tali yang tak terbayangkan) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (ms1) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (pdm) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (pick) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "Penolakan / OnTileEdit menolak dari (placesytle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (tb) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari (penempatan tile valid) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "Penolakan / OnTileEdit menolak dari actuator/presserator dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas membangun dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas disable dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas batas luar editData {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas explosives/fuses dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas ice/build dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas peletakan kabel dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas potongan sts allow dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas throttled dari {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit menolak atas tile kill threshold dari {0}, (isi: {1})" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit menolak atas tile place threshold dari {0}, (isi : {1})" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "Bouncer / OnTileEdit menolak atas peletakan tile tidak mencocokan pada item yang dipilih oleh createTile {0} {1} {2} selecteditemID: {3} createTile:{4}" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas penggunaan ice rod tetapi tidak meletakkan blok ice {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "Bouncer / OnTileEdit menolak atas peletakan dinding tidak cocok dengan item yang dipilih createWall {0} {1} {2} SelectedItemID: {3} createWall: {4}" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "Bouncer / OnTileEdit menolak atas kontrol aliran membingungkan yang aneh dari {0}" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "Bouncer / OnTileEdit menolak atas pemotong kabel dati {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "Bouncer / OnTileEdit sangat menerima dari (blok ice) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "Bouncer / OnUpdateNPCHome menolak Perizinan membangun rumah npc dari {0}" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "Bouncer / OnUpdateNPCHome menolak pengecekan jarak dari {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "Bouncer / SendTileRect menerima sisi klien ubah dunia {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" -msgstr "Bouncer / SendTileRect memproses pembaruan tile -[{0}] -> [{1}]" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "Bouncer / SendTileRect mengimplementasikan ulang atas carbonara dari {0}" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "Bouncer / SendTileRect menolak atas tile blokiran" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "Bouncer / SendTileRect menolak atas menjadi disabled dari {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" -msgstr "Bouncer / SendTileRect menolak atas bukan Perizinan untuk bentuk tile dari {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" -msgstr "Bouncer / SendTileRect menolak atas non-vanilla tilemod dari {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "Bouncer / SendTileRect menolak atas throttle dari {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "Bouncer / SendTileRectHandler - menolak bentuk tile karena bentuk dimensi jatuh keluar kotak tile (kelebihan ukuran}" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2532,27 +2552,27 @@ msgstr "Siaran: {0}" msgid "Broadcast: {0}: {1}" msgstr "Siaran: {0}: {1}" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "Siaran-siaran pesan untuk semuanya yang ada di peladen." -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "Sintaks buff dan Contoh" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "Sintaks penjagal dan Contoh" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "Akunmu telah diperbolehkan untuk mengabaikan SSC. Data SSC tidak akan dimuat ataupun disimpan." -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "Kaktus" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "Tidak dapat mengatur ke true SqlColumn.DefaultCurrentTimestamp ketika MySqlDbType bukan DateTime" @@ -2561,79 +2581,79 @@ msgstr "Tidak dapat mengatur ke true SqlColumn.DefaultCurrentTimestamp ketika My msgid "Cannot load module {0} as it does not derive from {1}" msgstr "Tidak dapat memuat modul {0} karena tidak berasal dari {1}" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "Proyektil tertentu untuk pendeteksi kecurangan telah diabaikan." -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "Maksimal pemanggilan telah diubah ke {0}." -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "Maksimal pemanggilan telah diubah ke 5." -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "Tingkat pemanggilan teah diubah ke {0}." -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "Tingkat pemanggilan telah diubah ke 600." -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "Mengubah kata sandi peladen." -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "Mengubah kecepatan angin." -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "Mengubah mode dunia." -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "Mengubah kata sandi akun anda." -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "Warna obrolan untuk \"{0}\" adalah \"{1}\"." -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "Warna obrolan untuk grup \"{0}\" diatur ke \"{1}\"." -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "Memeriksa pembaruan Tshock." -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "clear - membersihkan titik-titik wilayah sementara." -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "Clear Sintaks" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "Semua pengguna telah dibersihan dari daftar penyelesaian pekerjaan angler untuk hari ini." -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "Proyektil-Proyektil atau membersihkan item yang berjatuhan." -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color - mengubah warna obrolan grup." -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "Perintah sama lainnya: {0}, {1}, {2}" @@ -2642,20 +2662,20 @@ msgstr "Perintah sama lainnya: {0}, {1}, {2}" msgid "Command failed, check logs for more details." msgstr "Perintah telah gagal, periksa catatan untuk detail lebih lanjut." -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "Perintah-perintah ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "Perintah-perintah: add, del, hide, list, send, [warpname]." -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "Jalur konfigurasi telah di tetapkan menjadi {0}" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "Memuat ulang konfigurasi, perizinan, dan wilayah telah selesai. Beberapa perubahan mungkin memerlukan memuat ulang peladen." @@ -2663,20 +2683,20 @@ msgstr "Memuat ulang konfigurasi, perizinan, dan wilayah telah selesai. Beberapa msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "Koneksi dengan proxy tidak diperbolehkan." -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "Pengguna cocok: {0}overridessc|{0}ossc " -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "Corruption Palm" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2687,78 +2707,78 @@ msgstr "Tidak bisa menggunakan jalur konfigurasi / format log, nilai default aka msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "Pustaka basis data (mungkin Sqlite3.dll) tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "Penghapusan nama warp {0} tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "Nama pemain \"{0}\" apapun itu, tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "Nama pemain \"{0}\" apapun itu, tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "Nama pemain-pemain \"{0}\" apapun itu, tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "Grup {0} tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "Pemain {0} tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "Wilayah yang ditentukan, tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "Warp yang ditentukan, tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "Wilayah {0} tidak dapat ditemukan." -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "Target yang ditentukan tidak dapat ditemukan. Periksa apakah ejaanmu benar." -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "Tidak dapat mengubah nama {0}!" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "Percobaan crash melalui paket chat panjang." -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "Membuat tabel-tabel referensi untuk tipe data Terraria dan didalam folder peladen terdapat sistem perizinan Tshock." -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "Buatkan: dengan kata sandi dari bagian grup pemilik." @@ -2771,26 +2791,26 @@ msgstr "Telah diterima perizinan permintaan pemeriksaan CreativePowerHandler unt msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "Telah diterima permintaan CreativeUnlocksHandler tidak terkunci non-vanilla. Nilai bidang acak: {0} tapi harus 0 dari {1}" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "Crimson Palm" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "Maksimal memanggil saat ini: {0}." -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "Tingkat memanggil saat ini: {0}." -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "Upaya Pemanfaatan Kematian: Kerusakan {0}" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "Penyebab kematian di luar batas normal." @@ -2803,87 +2823,90 @@ msgstr "Kematian yang menyebabkan pemblokiran" msgid "Death results in a kick" msgstr "Kematian yang menyebabkan penendangan" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "define - Wilayah ini ditetapkan dengan member nama." -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "del - Menghapus sebuah grup." -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "del - Menghapus sebuah item yang diblokir." -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "del - Menghapus sebuah proyektil yang diblokir." -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "del - menghapus tile yang diblokir." -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "delete - Menghapus wilayah yang diberikan." -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "Wilayah \"{0}\" telah dihapus." -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "delperm - Menghapus perizinan dari grup." -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "Desert Palm" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "destroytokens - semua token REST saat ini dihancurkan." -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "DOOM terdeteksi atur keposisi NYALA." -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "Diamond Gemtree" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "Mode halloween dimatikan." -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "Mode xmas dinonaktifkan." -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "Nonaktifkan. Untuk memuat data yang tersimpan kamu butuh {0} untuk login." -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "Dinonaktifkan. kamu pergi terlalu jauh dengan armor yang diblokir." -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "Dinonaktifkan. kamu pergi terlalu jauh dengan tumpukan item yang diretas." -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "disallow - Melarang grup untuk menggunakan sebuah item." -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "disallow - Melarang grup untuk menggunakan sebuah proyektil." -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "disallow - Melarang grup untuk dari peletakan sebuah tile." @@ -2892,157 +2915,157 @@ msgstr "disallow - Melarang grup untuk dari peletakan sebuah ti msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "Duke Fishron" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "Ebonwood Tree" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "Emerald Gemtree" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "Mode Halloween diaktifkan." -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "Mode xmas diaktifkan." -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "Memulai dan menghentikan berbagai peristiwa dunia diaktifkan." -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "Kesalahan grup-grup dalam memuat ulang: {0}" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "Kesalahan: kedua nama tersebut sama." -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "Everscream" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "Contoh penggunaan: {0}" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "Contoh penggunaan: {0} \"{1}\" \"{2}\"" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "Contoh penggunaan: {0} \"{1}\" {2}" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "Contoh penggunaan: {0} {1}" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "Contoh penggunaan: {0} {1} {2}" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "Contoh penggunaan: {0} {1} {2} {3}" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "Contoh penggunaan: {0} {1} {2} {3} {4}" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "Contoh penggunaan: {0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "Example: /sudo /ban add prefiks 2d Kecurangan." -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "Contoh: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "Perintah dieksekusi sebagai admin super." -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "Percobaan Exploit terdeteksi!" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "Gagal menambah pemblokiran untuk tanda pengenal: {0}" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "Gagal menambah pemblokiran. {0}" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "Gagal menambah grup {0}." -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "Gagal menghapus grup {0}." -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "Gagal dalam menemukan pengguna apapun dengan daftar pada nama tersebut." -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "Gagal mencopot pemblokiran." -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "Gagal menamai ulang grup {0}." -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "Gagal menamai ulang wilayah ini." -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "Gagal besarnya normal shade polygon." -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "Gagal dalam memperbarui grup \"{0}\"." -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "Gagal dalam mengunggah data karakter anda kedalam peladen. Apakah akun anda telah dimasukkan?" @@ -3050,440 +3073,450 @@ msgstr "Gagal dalam mengunggah data karakter anda kedalam peladen. Apakah akun a msgid "Fatal Startup Exception" msgstr "Dikecualikan Fatal Permulaan" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "Pengecualian inisialisasi TShock yang fatal:gagal menghubungkan basis data MySQL. Lihat dalam pengecualian untuk rinciannya." -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "FetchHashedPasswordAndGroup SQL mengembalikan kesalahan: {0}" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "Sintaks Kembang Api" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "Contohnya, 1d dan 10h-30m+2m semua itu adalah uraian waktu yang valid, tapi bukan untuk 2" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "Info lebihnya, gunakan {0}{1} atau {2}{3}" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "Semua cairan-cairan dipaksakan diperbaharui seketika." -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "Telah Memberi {0} {1} {2}." -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "Telah memberi {0} {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "GetDataHandlers / HandleSyncLoadout menolak sinkronisasi indeks loadout {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "GetDataHandlers / HandleSyncLoadout menolak diluar batas sinkronisasi indeks {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "GetUser SQL mengembalikan kesalahan {0}" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "Give Buff Sintaks dan Contohnya" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Memberikan sebuah buff atau debuff pemain lainnya untuk beberapa waktu. Menempatkan -1 untuk waktu akan di atur di 415 hari." -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "Berikan pemain lainnya sebuah item." -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Memberikan sebuah buff atau debuff diri anda sendiri untuk beberapa waktu. Menempatkan -1 untuk waktu akan di atur di 415 hari." -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "Memberikan diri anda sendiri sebuah item." -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "Glowing Mushroom Tree" @@ -3492,163 +3525,163 @@ msgstr "Glowing Mushroom Tree" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "GolfPacketHandler: Pemain tidak membuat proyektil klub golf dalam 5 detik terakhir! - Dari {0}" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "Grup \"{0}\" tidak membuatnya induk." -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "Grup \"{0}\" tidak mempunyai prefiks." -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "Grup \"{0}\" tidak mempunyai sufiks." -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "Grup\"{0}\" acuan grup induk {1} sudah menjadi bagian acuan rantai induk. acuan induk telah dicopot." -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "Grup \"superadmin\" ditetapkan dalam database meskipun itu adalah nama grup yang dicadangkan." -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "Grup {0} sudah tersedia" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "Grup {0} telah berhasil dibuat." -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "Grup {0} telah berhasil dihapus." -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "Grup {0} tidak ada" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "Grup {0} tidak ada." -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "Grup {0} tidak ada" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "Grup {0} tidak ada." -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "Grup {0} sudah berhasil dihapus." -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "Grup {0} sudah dinamai ulang dengan {1}" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "Grup {0} acuan pada grup induk yang tidak ada {1}, acuan induk telah dihapus." -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "Grup {0} mereferensikan dirinya sebagai grup induk; acuan induk telah dihapus." -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "Grup {0} tidak ditemukan." -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "Grup {0} berhasil diperbaharui." -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "Grup {0} telah berhasil ditambahkan." -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "Grup Sub-Perintah ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "Grup ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "Menumbuhkan tanaman di lokasi anda." -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "Hallow Palm" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "Hardmode telah dimatikan didalam berkas konfigurasi peladen." -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "Sekarang Hardmode mati." -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "Sekarang Hardmode menyala." -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "Heal Sintaks dan Contohnya" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "Percobaan kecurangan HealOtherPlayer !" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "HealOtherPlayer {0} terlampaui ambang batas." -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "Menyembuhkan Pemain pada HP dan MP." -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "Herb" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "Pukul blok agar dapat menamakan wilayah ini." -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "Pukul sebuah blok agar mengatur titik {0}." @@ -3659,68 +3692,72 @@ msgstr "Pukul sebuah blok agar mengatur titik {0}." msgid "holding banned item: {0}" msgstr "memegang item yang diblokir: {0}" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "Jika yang ditentukan tidak ada, itu akan memberikan kesembuhan maksimal HP berdasar milik pemain tersebut." -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "Jika pemain ini tidak melaukan peretasan, dimohon laporkan letak kerusakan mereka \n" "dapat nonaktifkan ke TShock sehingga kami dapat meningkatkan ini!" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "jika player ini tidak melakukan kecurangan, mohon laporkan HealOtherPlayer threshold mereka akan mematikan ini untuk TShock sehingga kami dapat meningkatkan ini!" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "jika player ini tidak melakukan kecurangan, mohon laporkan ambang tile kill mereka akan mematikan ini untuk TShock sehingga kami dapat meningkatkan ini!" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "jika player ini tidak melakukan kecurangan, harap laporkan ambang cairan tile mereka akan mematikan ini untuk TShock sehingga kami dapat meningkatkan ini!" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "jika player ini tidak melakukan kecurangan, harap laporkan ambang peletakan tile mereka akan mematikan ini untuk TShock sehingga kami dapat meningkatkan ini!" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "Jika ini tidak terkait dengan skeletron prime, harap laporkan ke Tshock apa yang terjadi." -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "Jika anda terkunci dari semua akun-akun admin, tanya bantuan di https://tshock.co/" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "Jika anda tidak menentukan radius, itu akan menggunakan radius bawaaan dari {0} disekitar karakter anda." -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "Jika anda tidak menentukan jangka waktu, itu akan mengatur bawaan dalam {0} detik." -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "Jika kata sandi anda telah lupa, hubungi orang administrasi untuk bantuan." -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "Jika anda menaruh {0} sebagai jangka waktu, itu mungkin akan menggunakan waktu dari 415 hari." -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "Jika kamu mengerti, dimohon sekarang {0}login , dan kemudian ketik {0}setup" @@ -3733,15 +3770,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "Jika anda melihat pesan ini dan kamu tau apa yang dilakukan pemain, dimohon laporkan tersebut ke TShock untuk pemeriksaan lebih lanjut." -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "Pecahan diabaikan setiap konfigurasi.." -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "Nama ilegal: awalan tsi: dan tsn: dilarang." @@ -3750,38 +3787,38 @@ msgstr "Nama ilegal: awalan tsi: dan tsn: dilarang." msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "IllegalPerSe: Paket Emoji ditolak karena pemalsuan ID. Diharapkan {0}, diterima {1} dari {2}." -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "Sekarang teleportasi mendatang telah dibolehkan." -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "Sekarang teleportasi mendatang telah dimatikan." -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "Kode pengaturan salah. kejadian ini telah dicatat." -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "Perindukan Grup ({0}) tanpa batas" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "info [-d] - Menampilkan beberapa petunjuk tentang wilayah yang diberikan." -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "Petunjuk tentang Wilayah \"{0}\" ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "Petunjuk tentang berjalannya dunia saat ini." -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "Gagal memasukkan pemblokiran ke dalam basis data." @@ -3789,165 +3826,165 @@ msgstr "Gagal memasukkan pemblokiran ke dalam basis data." msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "Kesalahan peladen dari dalam." -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaks Ban Add salah. Sesuai {0} untuk perincian dalam bagaimana menggunakan perintah ini {1}" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaks Ban Del salah. Sesuai {0} untuk perincian dalam bagaimana menggunakan perintah ini {1}" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaks Ban Details salah. Sesuai {0} untuk perincian dalam bagaimana menggunakan perintah ini {1}" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaks Ban List salah. Sesuai {0} untuk perincian dalam bagaimana menggunakan perintah ini {1}" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "BCrypt work factor salah dalam berkas konfigurasi! Membuat hash baru membuat work factor bawaan." -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "Jumlah bos salah." -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "Tipe bos salah." -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "ID buff salah!" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Perintah yang dimasukkan salah. ketik {0} untuk daftar perintah yang benar." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "Perintah salah." -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "NPC tujuan salah." -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "Pemain tujuan salah." -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "Tipe pertujukan salah. tipe-tipe pertujukan yang benar: {0}." -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "Gelombang pada pertunjukan bulan pembekuan salah." -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "Grup salah." -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "Tipe penyerbuan salah. Tipe penyerbuan yang benar: {0}." -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "Tipe item salah!" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "Item salah." -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "Maksimal pemanggilan salah. Rentang yang dapat diterima ialah {0} sampai {1}." -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "Tipe mob salah!" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "Tipe mob salah." -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "Mode mode dunia salah, Mode yang benar: {0}" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "Angka halaman salah. Angka halaman harus numerik." -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "Grup induk {0} untuk grup {1} salah" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "Grup induk {0} untuk grup {1} salah." -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "Kata sandi salah." -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "Pemain salah!" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "Pemain salah." -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "ID Proyektil salah!" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "ID Proyektil salah." -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "Gelombang pada pertunjukan bulan labu salah." -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "Wilayah \"{0}\" salah." @@ -3963,461 +4000,461 @@ msgstr "Konfigurasi REST tidak benar: \n" "Harap sesuaikan konfigurasi Anda dan mulai ulang peladen. \n" "Tekan sembarang tombol untuk keluar." -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "Kata sandi server salah." -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "Sub-perintah salah! ketik {0}group untuk petunjuk bantuan pada perintah yang benar." -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "Sub-perintah salah! ketik {0}itemban untuk petunjuk bantuan pada perintah yang benar." -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "Sub-perintah salah! ketik {0}projban untuk petunjuk bantuan pada perintah yang benar." -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "Sub-perintah salah! ketik {0}tileban untuk petunjuk bantuan pada perintah yang benar." -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "Sintaks untuk warna salah. diharapkan \"rrr,ggg,bbb\"." -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "Sintaks salah." -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}worldevent invasion [tipe penyerbuan] [gelombang penyerbuan]." -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "Sintaks salah. Sintak yang sesuai: {0}accountinfo ." -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "Sintaks salah. Sintaks yang sesuai: {0}aliases " -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group add [perizinan]." -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group addperm [perizinan...]." -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group color [warna baru(000,000,000)]." -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group del ." -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group delperm [perizinan...]." -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group listperm [halaman]." -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group parent [nama induk grup baru]." -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group prefix [prefiks baru]." -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group rename ." -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}group suffix [sufiks baru]." -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "Sintaks salah. Sintaks yang sesuai: {0}help " -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "Sintaks salah. Sintaks yang sesuai: {0}item [jumlah item] [id/nama prefiks]" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}itemban add ." -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}itemban allow ." -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}itemban del ." -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}itemban disallow ." -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}kick [alasan]." -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "Sintaks salah. Sintaks yang sesuai: {0}me " -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "Sintaks salah. Sintaks yang sesuai: {0}p " -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "Sintaks salah. Sintaks yang sesuai: {0}projban add " -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}projban allow " -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}projban del ." -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}projban disallow ." -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region allow " -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region allowg ." -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region define ." -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region delete ." -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region info [-d] [halaman]." -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region protect ." -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region remove ." -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region removeg ." -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "Sintaks salah. Sintaks yang sesuai: {0}region rename ." -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "Sintaks salah. Sintaks yang sesuai: {0}region resize ." -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}region tp ." -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "Sintaks salah. Sintaks yang sesuai: {0}region z <#>" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}register ." -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "Sintaks salah. Sintaks yang sesuai: {0}renameNPC " -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "Sintaks salah. Sintaks yang sesuai: {0}serverpassword \"\"." -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}slap [kerusakan]." -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}spawnboss [jumlah]." -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}spawnmob [jumlah]." -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tileban add ." -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tileban allow ." -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tileban del ." -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tileban disallow ." -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tp [pemain 2]." -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tp ." -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tpnpc ." -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}tppos ." -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}userinfo ." -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp [perintah] [argumen-argumen]." -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp [nama] atau {0}warp list ." -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp add [nama]." -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp del [nama]." -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp hide [nama] ." -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "Sintaks salah. Sintaks yang sesuai: {0}warp send [pemain] [warp nama]." -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." -msgstr "Sintaks salah. Sintaks yang sesuai: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." +msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}worldevent ." -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "Sintaks salah. Sintaks yang sesuai: {0}worldmode ." -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "Sintaks salah. Sintaks yang sesuai: /region protect ." -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "Sintaks salah. Sintaks yang sesuai: /region set <1/2>." -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "Pemain target salah." -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "Nomor Karcis salah. lihat {0} untuk cara penggunaan perintah {1} yang jelas" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "ID tile salah." -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "Deretan waktu salah! bentuk yang sesuai: _d_h_m_s, setidaknya 1 penunjuk waktu." -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "Deretan waktu salah. bentuk yang sesuai: hh:mm dalam bentuk waktu 24 jam." -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "Tipe salah: '{0}'" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "Sintaks pengguna salah. Coba {0}user help" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "Nama warp salah. nama-namanya 'list', 'hide', 'del' dan 'add' dicadangkan sebagai perintah-perintah." -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." -msgstr "Kecepatan angin salah." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." +msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "Mode dunia salah. Mode dunia yang benar: {0}" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "Alamat IP: {0}." -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Perintah Item Ban {{0}}/{{1}}:" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "Item yang diblokir ({{0}}/{{1}}):" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "Dikeluarkan {0} karena : '{1}'" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "Dikeluarkan melalui web" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "Dikeluarkan: {0}" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "Sintaks Bunuh dan contohnya" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "Bunuh pemain lainnya." -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "Membunuh NPC-NPC yang berseteru atau NPC-NPC dari tipe tertentu." @@ -4446,108 +4483,108 @@ msgstr "LandGolfBallInCupHandler: Tile pada posisi paket X:{0} Y:{1} itu bukan l msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "LandGolfBallInCupHandler: Posisi X dan Y diluar batas dunia! - dari {0}" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "Sekarang berturunnya Lentera-lentera." -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "Sekarang naiknya Lentera-lentera." -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "Cairan-cairan sudah mengendap." -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "list - daftar semua wilayah-wilayah." -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "list [halaman] - daftar semua item yang diblokir." -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "list [halaman] - daftar semua proyektil yang diblokir." -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "list [halaman] - daftar semua tile yang diblokir." -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "list [halaman] - daftar semua grup." -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "Daftar Sintaks Pemain-Pemain Daring" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "IP {0} didengarkan." -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "Port {0} didengarkan." -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "listperm [halaman] - daftar perizinan sebuah grup." -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "Daftar-daftar Perintah atau memberikan bantuan pada mereka." -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "listusers - semua daftar-daftar para pengguna REST dan token-token milik mereka saat ini." -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "Memuat berkas konfigurasi khusus: {0}" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "Lokasi dari {0} yaitu ( {1},{2})." -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "Tampilan catatan yang dinonaktifkan." -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "Tampilan catatan yang diaktifkan." -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "Jalur log telah ditetapkan menjadi {0}" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "Gagal upaya masuk - lihat pesan di atas." -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "Masuk menggunakan UUID diaktifkan. Pengguna secara otomatis masuk melalui UUID." -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "Catatan-catatan anda dalam akun." -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "Catatan-catatan anda diluar dari akun anda saat ini." -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "Nama mesin: {0}" @@ -4556,7 +4593,7 @@ msgstr "Nama mesin: {0}" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "Upaya pintu gerbang yang berbahaya." @@ -4564,102 +4601,102 @@ msgstr "Upaya pintu gerbang yang berbahaya." msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "Pengelolaan grup-grup." -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "Pengelolaan item yang diblokir." -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "Pengelolaan pemain yang diblokir." -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "Pengelolaan proyektil yang diblokir." -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "Pengeloaan wilayah-wilayah." -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "Pengelolaan REST API." -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "Pengelolaan daftar putih peladen." -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "Pengelolaan tile yang diblokir." -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "Pengelolaan akun-akun pengguna." -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "Wilayah telah ditandai {0} sebagai terlindung." -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "Wilayah telah ditandai {0} sebagai tidak terlindung." -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "Penggunaan memori: {0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "Pesan: {0}: {1}: {2}" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "Meteor telah dipanggil." -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "Berkelakuan buruk." -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "Nama/id item tidak ada." -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "Parameter {0} tidak ada atau kosong" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "Parameter {0} tidak ada atau salah" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "Nama pemain tidak ada." -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "Mode: {0}" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "Kecocokan ditemukan lebih dari satu - tidak dapat memutuskan mana yang benar: " -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "Mourning Wood" @@ -4667,24 +4704,24 @@ msgstr "Mourning Wood" msgid "Msg ID not implemented" msgstr "ID pesan tidak diterapkan" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "Beberapa para pengguna akun ditemukan selama {0} '{1}'" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "Sintaks Pembisuan" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "Kosong" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "nama [-u][-z][-p] - Menunjukkan nama dari wilayah pada titik tertentu." -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "Nama: {0}" @@ -4694,33 +4731,33 @@ msgstr "Nama: {0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "NetModuleHandler menerima upaya untuk membuka kunci pengorbanan saat tidak dalam mode journey dari {0}" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "Tidak pernah." -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "Nama baru tersebut terlalu panjang!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "Dunia baru akan dibuat ulang dengan tipe seram {0}!" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "Tidak ada perintah terkait." -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "Dengan nomor karcis yang disedia tidak ditemukannya kecocokan pemblokiran." -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "Bukan perintah atau alias perintah yang cocok dengan \"{0}\" ditemukan." -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "Tidak ada deskripsi tersedia." @@ -4728,43 +4765,43 @@ msgstr "Tidak ada deskripsi tersedia." msgid "No help available." msgstr "Bantuan tidak tersedia." -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "Tidak ditemukan pemblokiran." -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "Tidak ditemukan kecocokan pemain '{0}'." -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "Tidak ada pemain yang cocok dengan \"{0}\"." -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "Tidak ada prefiks yang cocok dengan {0}\"." -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "Tidak ada alasan terperinci." -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "Tidak diperlukan izin khusus untuk rute ini." -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "Tidak ada grup seperti \"{0}\"." -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "Tidak ada nilai yang diberikan" @@ -4776,9 +4813,9 @@ msgstr "Tidak diinzinkan. Token yang disediakan menjadi tidak valid karena perub msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "Tidak diizinkan. API endpoint yang ditentukan memerlukan sebuah token, tapi token yang disediakan tidak valid." +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "Tidak diizinkan. API endpoint yang ditentukan membutuhkan sebuah token." @@ -4787,41 +4824,46 @@ msgstr "Tidak diizinkan. API endpoint yang ditentukan membutuhkan sebuah token." msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "Tidak diizinkan. Pengguna \"{0}\" tidak memiliki akses untuk menggunakan API endpoint yang ditentukan." -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "Belum masuk atau sintaks tidak valid. Sintaks yang benar: {0}password ." -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "Tidak memutakhirkan faktor kerja karena hash bcrypt dalam format yang tidak benar." -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "Kerusakan NPC terlampaui {0}." #: ../../TShockPluginManager/NugetCLI.cs:103 msgid "One moment..." -msgstr "" +msgstr "Tunggu sebentar..." -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "Salah satu UserID Anda bukan bilangan bulat yang dapat digunakan: {0}" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "Pemain Daring ({0}/{1})" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "Sistem operasi: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "Mengganti karakter sisi server untuk pemain, sementara saja." @@ -4829,177 +4871,177 @@ msgstr "Mengganti karakter sisi server untuk pemain, sementara saja." msgid "Page {{0}} of {{1}}" msgstr "Halaman {{0}} dari {{1}} halaman" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "parent - Merubah grup induk suatu grup." -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "Induk dari \"{0}\" ialah \"{1}\"." -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "Grup induk \"{0}\" dijadikan ke \"{1}\"." -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "Grup perindukan {0} hingga {1} akan menyebabkan loop dalam rantai induk." -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "Upaya perubahan kata sandi untuk {0} gagal karena alasan yang tidak diketahui. Periksa konsol peladen untuk lebih jelasnya." -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "Perubahan kata sandi berhasil untuk {0}." -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "Kata sandi minimal {0} karakter." -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "Kata sandi harus lebih besar dari atau sama dengan {0} karakter." -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "PasswordUser mengembalikan sebuah kesalahan: {0}." -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "Jalur: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "Pearlwood Tree" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "Perizinan kepada {0} ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "Plantera" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "Pemain \"{0}\" harus melakukan upaya /login terlebih dahulu." -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "Pemain \"{0}\" harus menghubungkan ulang terlebih dahulu, karena sampah mereka perlu dihapus." -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "Pemain \"{0}\" sudah masuk." -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "Pemain {0} telah dinonaktifkan dalam {1}." -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "Pemain {0} telah dibisukan" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "Pemain {0} sudah tidak dibisukan." -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "Player {0} sejajar dengan {1} pemain." -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "Pemain {0} tidak ditemukan." -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "Pemain {0} telah mencoba menyelinapkan {1} kedalam peladen!" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "Pemain {0} telah terbunuh" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "Player {0} tidak ditemukan" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "Melampaui kerusakan pemain {0}." -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "Pemain tidak dapat mempunyai slot kosong!" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "Pemain tidak mempunyai izin untuk membuat {0} proyektil." -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "Pemain tidak ditemukan. tidak dapat mengeluarkan pemain tersebut." -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "Silahkan {0}register atau {0}login untuk dapat bermain!" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "Harap tutup jendela NPC sebelum keluar." -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "Harap masukkan nama atau jenis perintah yang tepat." -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "Harap mencoba dengan nama pengguna lain." -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "Setelah proses ini harap gunakan {0}login ." -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "Harap ikuti petunjuk untuk membuat akun anda menjadi permanen." -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "Port ditimpa oleh argumen startup. Ditetapkan ke {0}" @@ -5009,54 +5051,54 @@ msgstr "Port ditimpa oleh argumen startup. Ditetapkan ke {0}" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "Mungkin ada masalah dengan basis data anda - apakah ada Sqlite3.dll?" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "prefix - Merubah sebuah prefiks suatu grup." -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "Prefiks dari \"{0}\" yakni \"{1}\"." -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "Prefiks dari grup \"{0}\" diatur menjadi \"{1}\"." -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "Mencegah pemain berbicara." -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "Terhitung proc: {0}" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "Proyektil {0} tidak diblokir." -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Perintah dari Projectile Ban ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "Pemblokiran proyektil ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." -msgstr "" +msgstr "Pembuatan projectile telah melewati ambang batas {0}." -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "Kerusakan proyektil lebih tinggi dari {0}." -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "/protect - mengatur apakah ubin-ubin tersebut di dalam wilayah yang dilindungi atau bukan." @@ -5064,65 +5106,65 @@ msgstr "/protect - mengatur apakah ubin-ubin tersebut di dal msgid "Protected regions at this point: " msgstr "Wilayah yang dilindungi pada saat titik ini: " -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "Yang dilindungi: {0}." -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "Penggunaan cepat: {0} {1} \"Penghancuran\"" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "Pengecekan jarak gagal selama {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" -msgstr "" +msgstr "Telah mencapai ambang batas dari HealOtherPlayer" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "Mencapai ambang batas HealOtherPlayer." -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" -msgstr "" +msgstr "Telah mencapai ambang batas dari paint." -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "Mencapai ambang TileKill." -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "Mencapai ambang TileLiquid {0}." -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "Mencapai ambang TileLiquid." -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "Mencapai ambang batas TilePlace." @@ -5130,62 +5172,62 @@ msgstr "Mencapai ambang batas TilePlace." msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "Alasan: {0}." -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "Jenis yang diterima '{0}', namun kolom '{1}' mengharapkan jenis '{2}'" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "Wilayah \"{0}\" sudah ada." -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "Wilayah \"{0}\" tidak ada." -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "Wilayah {0} sudah ada." -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "Wilayah ini tidak dibagikan dengan grup manapun." -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "Wilayah ini tidak dibagikan dengan penguna manapun." -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "Pemilik Wilayah ini : {0}." -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "Titik-titik wilayah perlu ditentukan terlebih dahulu. gunakan /region set 1 dan /region set 2." -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "Berhasil menamai ulang wilayah!" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "Berhasil mengubah ukuran wilayah!" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "Wilayah z kini {0}" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "Wilayah ({{0}}/{{1}}):" @@ -5193,62 +5235,62 @@ msgstr "Wilayah ({{0}}/{{1}}):" msgid "Regions at this point: " msgstr "Wilayah titik ini: " -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "Mendaftarkan anda sebuah akun." -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "RegisterUser mengembalikan sebuah kesalahan: {0}." -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "Makhluk yang dirilis bukan dari itemnya." -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "Memuat ulang berkas konfigurasi peladen." -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "remove - Menghapus pengguna dari wilayah tersebut." -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "Pengguna {0} telah dibersihan dari daftar penyelesaian pekerjaan angler untuk hari ini." -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "Grup {0} dihapus dari {1}" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "Induk dari grup \"{0}\" dicopot." -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "Prefiks dari grup \"{0}\" dicopot." -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "Sufiks dari grup \"{0}\" dicopot." -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "Pengguna {0} dihapus dari {1}." -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "removeg - grup pengguna dihapus dari wilayah tersebut." -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "Pemain dihapus dari dalam peladen." @@ -5256,19 +5298,19 @@ msgstr "Pemain dihapus dari dalam peladen." msgid "RemoveUser SQL returned an error" msgstr "RemoveUser SQL mengembalikan kesalahan" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "rename - Mengganti sebuah nama grup." -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "rename - Mengganti nama grup yang diberikan." -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "Mengganti nama NPC." -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "Membalas PM yang dikirimkan kepada Anda." @@ -5281,7 +5323,7 @@ msgstr "Token yang diminta berhasil dilenyapkan." msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "RequestTileEntityInteractionHandler: Paket ditolak karena kurangnya izin bangunan! - Dari {0} | Posisi X:{1} Y:{2}, Jenis TileEntity: {3}, Jenis tile: {4}" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "Pengguna-pengguna dari daftar ini yang telah selesai dari pekerjaan angler hari itu akan diatur ulang." @@ -5290,11 +5332,11 @@ msgstr "Pengguna-pengguna dari daftar ini yang telah selesai dari pekerjaan angl msgid "resetTime {0}, direct {1}" msgstr "resetTime {0}, berjalan {1}" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "resize - mengukur ulang sebuah wilayah." -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "Hidupkan kembali diri anda atau pemain lain." @@ -5302,43 +5344,43 @@ msgstr "Hidupkan kembali diri anda atau pemain lain." msgid "Retrying in 5 minutes." msgstr "Mencoba lagi dalam 5 menit." -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "Mengembalikan posisi pengguna atau pengguna tertentu saat ini." -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "Rich Mahogany" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "Sintaks Roket" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "Roket pemain ke atas. Membutuhkan SSC." -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "Ruby Gemtree" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "Sakura Tree" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "Santa-NK1" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "Sapphire Gemtree" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "Menyimpan semua karakter di sisi peladen." -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "Menyimpan berkas dunia ini." @@ -5346,36 +5388,36 @@ msgstr "Menyimpan berkas dunia ini." msgid "Saving world..." msgstr "Sedang menyimpan dunia..." -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "Benih: {0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "Mengirim sebuah pesan untuk semua orang yang ada dalam tim anda." -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "Mengirim sebuah pesan ke seorang pemain." -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "Mengirim semua tile dari peladen ke pemain untuk menyinkronkan ulang klien dengan keadaan dunia yang sebenarnya." -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "Mengirim sebuah pesan aksi ke semua orang." -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "Mengirim anda ke titik dihidupkannya dunia ini." -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "Mengirim anda ke titik dihidupkannya diri anda." -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "Konsol server terputus!" @@ -5387,7 +5429,7 @@ msgstr "Server penuh" msgid "Server is full. No reserved slots open." msgstr "Server penuh. Tidak ada slot cadangan yang terbuka." -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "Server dimatikan..." @@ -5395,47 +5437,47 @@ msgstr "Server dimatikan..." msgid "Server map saving..." msgstr "Sedang menyimpan peta peladen..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "Kata sandi peladen telah diubah menjadi: {0}." -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "Peladen sedang dalam dimatikan: " -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "Peladen sedang dalam dimatikan!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "Peladen sedang dalam dimatikan." -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "Karakter dalam peladen diaktifkan. anda harus masuk untuk bermain." -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "Karakter khusus server diaktifkan! Silahkan {0}register atau {0}login untuk bermain!" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "Data karakter \"{0}\" dari sisi server telah digantikan oleh data lokal mereka saat ini." -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "Karakter dari sisi server dimatikan." -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "set <1/2> - Mengatur titik wilayah sementara." -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "Atur wilayah {0}." @@ -5445,31 +5487,32 @@ msgstr "Atur wilayah {0}." msgid "Set temp point {0}." msgstr "Sementara titik diatur {0}." -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "Atur posisi dungeon ini ke lokasi anda." -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "Menetapkan jumlah maksimum NPC." -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "Menetapkan tingkat NPC yang muncul." -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "Menetapkan waktu dunia ini." -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "Menetapkan titik muncul dunia ini ke lokasi anda." -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "Cairan pengendapan." -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "SetUserGroup SQL mengembalikan kesalahan" @@ -5481,256 +5524,256 @@ msgstr "SetUserPassword SQL mengembalikan kesalahan" msgid "SetUserUUID SQL returned an error" msgstr "SetUserUUID SQL mengembalikan kesalahan" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "Shadewood Tree" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "Bagikan peladen anda, berdiskusi dengan para admin, dan santai aja saat di Github & Discord -- https://tshock.co/" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "Dibagikan dengan para grup: " -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "Dibagikan dengan: " -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "Menampilkan perintah lainnya." -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "Menampilkan informasi tentang pemain." -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "Menampilkan informasi tentang pengguna." -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "Menampilkan informasi tentang dunia daat ini." -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "Menampilkan informasi pemain yang terhubung saat ini." -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "Menampilkan pesan hari ini." -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "Menampilkan informasi peladen." -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "Menunjukkan aturan peladen." -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "Menampilkan versi TShock." -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "Mematikan peladen ini dengan menyimpan." -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "Mematikan peladen tanpa menyimpan." -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "Mematikan dengan aman. Untuk mematikan paksa, kirim SIGINT (CTRL + C) lagi." -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "Ukuran: {0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "Skeletron" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "Skeletron Prime" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Mengabaikan penyimpanan SSC untuk {0} (karena menggunakan tshock.ignore.ssc) dalam {0}" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "Menampar pemain, akan menyebabkan kerusakan." -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "Hujan slime tidak tidak ada diaktifkan saat terjadi hujan biasa. Matikan badai hujan bisa dan coba lagi." -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "Maaf, {0} telah dipakai oleh orang lain." -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "Maaf, terjadi kesalahan: {0}." -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "Tempat muncul telah diatur di lokasi anda." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "Tempat muncul telah dibuka." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "Tempat muncul telah diamankan." -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "{0} dimunculkan {1} kali." -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "Telah membangkitkan Wall of Flesh." -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "Memanggil beberapa bos disekitar anda." -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "Memanggil beberapa mob disekitar anda." -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "Memanggil beberapa Kembang Api dekat pemain." -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "Titik akhir API yang ditentukan tidak ada. Lihat dokumentasi untuk daftar titik akhir yang benar." -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "Catatan SQL gagal di: {0}. {1}" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "antrian penyisipan Catatan SQL gagal: {0}" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "Harus mengaktifkan SSC ketika ingin menggunakan perintah ini." -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus armor {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di Defender's Forge {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus dye {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus dye item {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di Loudout ke-1 {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di Loadout ke-2 {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di Loadout ke-3 {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di piggy-bank {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di safe {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di kantong sampah {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "Terindikasi kecurangan penumpukan. menghapus item yang ada di Void Vault {0} ({1}) dan kemudian masuk kembali." -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "Pertunjukan bulan berdarah telah dimulai." -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "Pertunjukan bulan penuh telah dimulai." -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "Gerhana telah dimulai." -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "Parameter startup mengesampingkan nilai konfigurasi slot pemain maksimum." -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." -msgstr "" +msgstr "Parameter startup telah menimpa konfigurasi yang mengaktifkan REST" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." -msgstr "" +msgstr "Parameter startup telah menimpa konfigurasi yang mengatur port REST" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." -msgstr "" +msgstr "Parameter startup telah menimpa konfigurasi yang mengatur token REST" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "Gerhana telah berhenti." -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "Pertunjukan bulan berdarah saat ini telah dihentikan." @@ -5738,21 +5781,21 @@ msgstr "Pertunjukan bulan berdarah saat ini telah dihentikan." msgid "Successful login" msgstr "Berhasil masuk" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "suffix - merubah sebuah sufiks suatu grup." -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "Suffix dari \"{0}\" yakni \"{1}\"" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "Suffiks dari grup \"{0}\" diatur menjadi \"{1}\"." -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "Diselaraskan!" @@ -5761,190 +5804,186 @@ msgstr "Diselaraskan!" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "SyncTilePickingHandler: Posisi X dan Y berada di luar batas dunia! - Dari {0}" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "Menteleportasi {0} ketempat {1} ." -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "Menteleportasi {0} ke diri anda." -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "Menteleportasi semua orang ke {0}." -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "Menteleportasi semua orang ke diri anda." -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "Menteleportasi ke {0}, {1}." -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "Menteleportasi ke {0}." -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "Menteleportasi ke {0}'." -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "Menteleportasi ke tempat titik muncul pada peta." -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "Menteleportasi ke titik muncul anda (wisma)." -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "Menteleportasi pemain ke pemain lainnya." -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "Menteleportasi pemain ke diri anda." -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "Menteleportasi anda ke titik warp atau pengelolaan warp." -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "Menteleportasi anda ke seorang npc." -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "Menteleportasi kamu ke titik koordinat tile." -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "Mengangkat anda menjadi Super Admin untuk sementara waktu." -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "Menetapkan grup sementara untuk pemain lain." -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "Titik pengaturan wilayah sementara telah dihapus." -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "Anda telah diberikan mengakses sistem untuk sementara, sehingga anda dapat menjalankan satu perintah." -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "Terimakasih telah menggunakan TShock untuk Terraria!" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "Grup itu tidak tersedia." -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "Pemblokiran tidak benar karena blokiran saat ini untuk pengidentifikasi ini sudah ada." -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "Pemblokiran tidak benar karena alasan yang tidak diketahui." -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "si Brain of Cthulhu" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "Saat ini pukul {0}:{1:D2}." -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "Bawaan grup-pengguna tidak dapat ditemukan." -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "Grup pengguna bawaan tidak dapat ditemukan. Ini mungkin menunjukkan kesalahan ketik dalam file konfigurasi, atau grup itu telah diubah namanya atau dihapus." -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "Koordinat tujuan yang ada tidak menunjukkan angka yang benar." -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "Warp yang dituju, {0}, tidak ditemukan." -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "the Destroyer" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "The Dungeon Guardian telah mengembalikan anda ke tempat titik muncul." - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "Letak posisi The Dungeon telah di atur ke tempat anda berada." -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "sang Eater of Worlds" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "sang Empress of Light" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "sang Eye of Cthulhu" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "sang Flying Dutchman" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "sang Golem" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "Grup {0} muncul lebih dari sekali. jaga pengaturan grup saat ini." -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "Grupnya tamu tidak dapat ditemukan." -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "Grup tamu tidak dapat ditemukan. Ini mungkin menunjukkan kesalahan ketik dalam file konfigurasi, atau grup itu telah diubah namanya atau dihapus." -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "sang Ice Queen" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "Sistem pengaturan awal dinonaktifkan. Kejadian ini telah dicatat." -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "Item yang tipenya {0} salah." -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "sang King Slime" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "sang Lunatic Cultist" @@ -5956,31 +5995,31 @@ msgstr "Metode yang disarankan oleh LineFormatter telah membalikkan pengecualian msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "Metode yang disarankan oleh termFormatter telah membalikkan pengecualian. Lihat pengecualian lebih rincinya." -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "sang Moon Lord" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "perizinan telah ditambahkan ke semua grup ke dalam sistem." -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "perizinan telah dihapus dari semua grup dari dalam sistem." -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "Data karakter pemain berhasil diunggah dari koneksi awal mereka." -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "sang Pumpking" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "sang Queen Bee" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "sang Queen Slime" @@ -5992,7 +6031,7 @@ msgstr "Token autentikasi REST." msgid "The server is out of date. Latest version: " msgstr "Peladen sudah kadaluarsa. Versi terbaru: " -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "Tingkat memunculkan yang anda berikan di luar jangkauan atau mungkin bukan angka." @@ -6000,19 +6039,19 @@ msgstr "Tingkat memunculkan yang anda berikan di luar jangkauan atau mungkin buk msgid "The specified token queued for destruction failed to be deleted." msgstr "Token tertentu yang diantrekan untuk dihancurkan gagal dihapus." -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "Target pemain belum masuk." -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "Pengguna yang ditargetkan tidak dapat diunggah datanya, karena mereka bukan pemain." -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "sang Twins" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "Pengguna {0} tidak ada! Oleh karena itu, akun tidak dihapus." @@ -6027,54 +6066,54 @@ msgstr "Nilainya harus lebih besar dari nol." #: ../../TShockPluginManager/NugetCLI.cs:127 msgid "The versions of plugins you requested aren't compatible with eachother." -msgstr "" +msgstr "Versi plugin yang anda request tidak compatible antara satu dengan yang lain" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "sang Wall of Flesh" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "Batas peti dunia telah tercapai - tidak dapat menaruh lebih banyak." -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "Saat ini tidak ada pemblokiran yang aktif." -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "Tidak ada pengguna REST yang aktif saat ini." -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "Saat ini tidak ada pengidentifikasi yang tersedia." -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "Saat ini tidak ada item yang diblokir." -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "Saat ini tidak ada proyektil yang diblokir." -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "Saat ini tidak ada tile yang diblokir." -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "Saat ini tidak memiliki izin untuk {0}." -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "Saat ini tidak ada pemain daring." -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "Saat ini tidak ada wilayah yang ditentukan." -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "Saat ini tidak ada warp yang ditentukan." @@ -6086,17 +6125,17 @@ msgstr "Tidak ada wilayah dititik ini, atau mereka tidak dilindungi." msgid "There are no regions at this point." msgstr "Tidak ada wilayah yang terdaftar saat ini." -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "Sudah ada Wall of Flesh." -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "Terjadi kesalahan saat memproses permintaan terkait proses masuk atau autentikasi Anda." #: ../../TShockPluginManager/NugetCLI.cs:121 msgid "There was an issue figuring out what to download." -msgstr "" +msgstr "Terdapat masalah dalam menentukan apa yang perlu di download" #: ../../TShockPluginManager/NugetCLI.cs:90 msgid "There was an issue reading the packages.json." @@ -6108,265 +6147,265 @@ msgid "This is the plugin you requested to install." msgid_plural "These are the plugins you requested to install" msgstr[0] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "Token ini akan ditampilkan hingga dinonaktifkan oleh verifikasi. ({0}setup)" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "Tile {0} tidak diblokir." -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-Perintah Tile Ban {{0}}/{{1}}:" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "Pemblokiran Tile ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "Batas Tile kill melewati {0}." -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "Batas Tile place melewati {0}." -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "Untuk memberi buff pemain tanpa mereka sadari, gunakan {0} daripada {1}" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "Untuk menjalankan perintah ini secara diam-diam. gunakan {0} daripada {1}" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "Untuk menyingkirkan NPC tanpa membuatnya menjatuhkan item, gunakan perintah {0} sebagai gantinya." -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "Untuk membisukan pemain tanpa menyiarkan ke dalam obrolan, gunakan perintah dengan {0} daripada {1}" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "Untuk mengatur pelanden. masuk kedalam permainan dan ketik {0}setup {1}" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "Tuas perlindungan bangunan." -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "Tuas mode natal (kemunculan saat ini, santa, dll)." -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "Tuas mode dewa untuk pemain." -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "Tuas mode halloween (goodie bag, labu, dll)." -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "Tuas perlindungan kemunculan." -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "Tuas status hardmode dunia." -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "Tuas untuk mengabaikan atau menerima bisikan dari pemain lain." -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "Tuas apakah orang lain dapat menteleportasi anda." -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "tuas apakah Anda menerima catatan server." -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Terlalu banyak percobaan masuk yang gagal." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "Topaz Gemtree" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "Total waktu prosesor: {0}" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "tp - Menteleportasi anda ke pusat yang ada di wilayah yang diberikan." -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "Tipe-tipe Trees dan lain lain tersedia untuk digunakan. ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "Mencoba menumbuhkan sebuah {0}." -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "TShock {0} ({1}) sekarang berjalan." -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "Bantuan TShock Ban" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "Tshock hadir tanpa jaminan & merupakan perangkat lunak gratis." -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "TShock mengalami masalah yang tidak dapat dipulihkan. Pesan berikut dapat membantu mendiagnosis masalah." -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "Pemberitahuan TShock : masih ada setup-code.txt, dan tempat kode di dalam berkas itu akan digunakan." -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "Tshock dimatikan dengan tidak benar. Lain kali silakan gunakan perintah keluar untuk mencegah hal ini." -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "TShock sekarang akan menonaktifkan sistem pengaturan awal dan menghapus setup-code.txt karena tidak dibutuhkan kembali." -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "TShock: {0} {1}." -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "Ketik {0}ban help identifiers {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "Ketik {0}ban list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "Ketik {0}group help {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "Ketik {0}group list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "Ketik {0}group listperm {1} {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "Ketik {0}grow help {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "Ketik {0}help {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "Ketik {0}itemban help {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "Ketik {0}itemban list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "Ketik {0}login \"{1} {2} untuk masuk kedalam akun anda," -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "Ketik {0}login {1} untuk masuk kedalam akun anda." -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "Ketik {0}login untuk masuk kedalam akun anda menggunakan UUID anda." -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "Ketik {0}projban help {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "Ketik {0}projban list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "Ketik {0}region {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "Ketik {0}region info {1} {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "Ketik {0}region list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "Ketik {0}rest listusers {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "Ketik {0}tileban help {{0}} untuk informasi sub-perintah lainnya." -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "Ketik {0}tileban list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "Ketik {0}warp list {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "Ketik {0}who {1} untuk informasi lebih lanjut." @@ -6375,82 +6414,95 @@ msgstr "Ketik {0}who {1} untuk informasi lebih lanjut." msgid "Type / {{0}} for more." msgstr "Ketik / {{0}} untuk informasi lebih lanjut." -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "Tidak dapat menemukan buff bernama \"{0}\"" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "Tidak dapat menemukan buff-buff bernama \"{0}\"" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "Tidak dapat menemukan pemain bernama \"{0}\"" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "Tidak dapat menemukan pemain-pemain bernama \"{0}\"" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "tidak dapat meluncur {0} karena dia tidak lagi masuk." -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "tidak dapat meluncur {0} karena dia tidak lagi masuk." -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "Tidak dapat mengurai perintah '{0}' dari pemain {1}." -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "Tidak dapat mengurai perintah. Silakan hubungi administrasi untuk mendapatkan bantuan." -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "Tidak dapat membangkitkan Wall of Flesh berdasarkan statusnya saat ini atau lokasi Anda saat ini." -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "Tidak dapat memverifikasi hash kata sandi untuk pengguna {0} ({1})" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "membatalkan blokir {0}." -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "Proyektil tidak diblokir {0}." -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "Tile tidak diblokir {0}." -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "Perintah pemblokiran tidak dikenali. Coba {0} {1}, {2}, {3}, {4}, {5}, atau {6}." -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "tanaman tidak dikenali!" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "Penghubung pemain tidak dikenal." -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "Sampai masalah teratasi, TShock tidak akan dapat dijalankan (dan akan macet saat memulai)." @@ -6459,7 +6511,7 @@ msgstr "Sampai masalah teratasi, TShock tidak akan dapat dijalankan (dan akan ma msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "UpdateLogin SQL mengembalikan sebuah kesalahan" @@ -6469,78 +6521,78 @@ msgstr "UpdateLogin SQL mengembalikan sebuah kesalahan" msgid "UpdateManager warning: {0}" msgstr "Peringatan UpdateManager: {0}" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "Unggah informasi akun saat anda sudah bergabung dengan peladen sebagai data Karakter Sisi Peladen anda." -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "gunakan: {0}tempgroup [waktu]" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "Gunakan: /sudo [command]." -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "Gunakan: /uploadssc [playername]." -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "Gunakan \"{0}worldevent rain slime\" untuk memulai hujan slime!" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "Gunakan \"my query\" untuk item dengan spasi." -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "Gunakan tsi:[number] atau tsn:[username] untuk membedakan antara ID pengguna dan nama pengguna." -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "Digunakan untuk mengautentikasi sebagai superadmin saat pertama kali menyiapkan TShock." -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "Pengguna {0} '{1}' tidak ada" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "Pengguna {0} sudah ada." -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "Pengguna {0} tidak dapat ditambahkan, cek console untuk rincinya." -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "Pengguna {0} tidak dapat ditambahkan. Cek console untuk rincinya." -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "User {0} tidak ada." -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "Akun pengguna {0} sudah ada" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "Akun Pengguna {0} tidak ada." -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "Bantuan perintah manajemen pengguna:" @@ -6550,130 +6602,130 @@ msgstr "Bantuan perintah manajemen pengguna:" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "Nama pengguna atau kata sandi mungkin salah atau akun ini mungkin tidak memiliki keunggulan yang cukup." -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "Menggunakan {0} untuk implementasi tile" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "Menggunakan honey bucket yang diblokir tanpa perizinan." -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "Menggunakan lava bucket yang diblokir tanpa perizinan." -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "Menggunakan water bucket yang diblokir tanpa perizinan." -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "UUID tidak cocok dengan karakter ini." -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "Tipe-tipe peristiwa yang benar: {0}" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "Tipe-tipe penyerbuan jika memunculkan semua penyerbuan: {0}." -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "Tipe-tipe penyerbuan yang benar: {0}." -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "Mode-mode dunia yang benar: {0}" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "Warp {0} sudah ada." -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "sekarang warp {0} pribadi." -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "Sekarang warp {0} publik." -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "Warp telah ditembakkan: {0}." -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "Warp telah dihapus: {0}" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "Warp kedalam {0}." -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "Warp-warp ({{0}}/{{1}}):" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "Selamat datang di Tshock untuk Terraria!" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "Sintaks Bisikan" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "Willow Tree" @@ -6690,17 +6742,17 @@ msgstr "Dunia dicadangkan{0})." msgid "World backed up." msgstr "Dunia telah dicadangkan." -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "Mode dunia diatur menjadi {0}." -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "Nama dunia akan ditimpa oleh: {0}" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "Jalur dunia telah dtetapkan ke {0}" @@ -6714,48 +6766,48 @@ msgstr "Dunia telah disimpan di ({0})" msgid "World saved." msgstr "Dunia telah disimpan." -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "Anda sudah mati!" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "Anda sudah masuk, tidak perlu masuk lagi." -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "Anda telah mati. Pemain yang mati tidak dapat pulang ke rumah." -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "Anda telah dibisukan!" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "Anda telah dibisukan!" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "Anda sudah lama tidak dalam mode dewa." -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "Anda belum mati!" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "Anda tidak berada didalam sebuah tim!" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "Anda belum masuk. Oleh karena itu, anda tidak dapat keluar." @@ -6763,153 +6815,157 @@ msgstr "Anda belum masuk. Oleh karena itu, anda tidak dapat keluar." msgid "You are not on the whitelist." msgstr "Anda tidak termasuk dalam daftar putih." -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "Anda sekarang dibuat kesal." -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "Anda sekarang berada dalam mode dewa." -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "Anda memberi buff ke diri anda sendiri dengan {0} ({1}) dalam {2} detik." -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "Anda telah membunuh {0} NPC" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "Anda dapat memodifikasi dan mendistribusikannya di bawah ketentuan GNU GPLv3." -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "anda bisa gunakan '{0}sudo {0}{1}' untuk mengesampingkan pemeriksaan ini." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "anda bisa gunakan {0} daripada {1} untuk mengganggu pemain secara diam-diam." -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "anda bisa gunakan {0} daripada {1} untuk menjalankan perintah ini secara diam-diam." -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "anda bisa gunakan {0} daripada {1} untuk meluncurkan kembang api secara diam-diam." -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "anda bisa gunakan {0} daripada {1} untuk meroket pemain secara diam-diam." -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "anda dapat gunakan {0}{1} untuk mengatur pengaturan ini." -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "Anda dapat menggunakan{0}{1} untuk membisikan kepada para pemain lainnya." -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "Anda tidak dapat membuat yang bukan pemain dalam mode dewa!" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "Anda tidak dapat menyembuhkan pemain yang sudah mati!" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "Anda tidak dapat mengeluarkan admin lain." -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "Anda tidak dapat menghapus grup tamu bawaan." -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "Anda tidak dapat memunculkan si konsol peladen!" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "Anda tidak dapat masuk saat dikendalikan oleh kerumunan." -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "Anda tidak dapat masuk selagi masih mati." -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "Anda tidak dapat masuk selagi menggunakan sebuah item." -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "Anda tidak dapat memunculkan item-item yang diblokir." -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "Anda tidak dapat menggunakan Enchanted Sundial karena waktu telah dihentikan." -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "Anda tidak dapat membisikan diri anda sendiri." -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "Anda telah menghapus item {0} dalam jangkauan dari {1}." -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "Anda telah menghapus NPC {0} dalam jangkauan dari {1}." -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "Anda telah menghapus proyektil {0} dalam jangkauan dari {1}." -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "Anda tidak memasukkan nama pemain." -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "Kamu mati! Biasanya, kamu akan diblokir." -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "Anda tidak memiliki izin akses pada perintah ini." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "Anda tidak memiliki izin untuk membangun di dalam titik muncul." -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "Anda tidak memiliki izin untuk membangun di dalam wilayah ini." -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "Anda tidak memiliki izin untuk membangun didalam peladen ini." @@ -6917,7 +6973,7 @@ msgstr "Anda tidak memiliki izin untuk membangun didalam peladen ini." msgid "You do not have permission to contribute research." msgstr "Anda tidak memiliki izin untuk untuk berkontribusi penelitian." -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "Anda tidak memiliki izin untuk membuat proyektil tersebut." @@ -6937,15 +6993,15 @@ msgstr "Anda tidak memiliki izin untuk memdiamkan waktu dari peladen ini." msgid "You do not have permission to freeze the wind strength of the server." msgstr "Anda tidak memiliki izin untuk mendiamkan kekuatan angin dari peladen ini." -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "Anda tidak memiliki izin untuk membuat mode dewa pada pemain lainnya." -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "Anda tidak memiliki izin untuk menumbuhan tipe pohon" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "Anda tidak memiliki izin untuk menyakiti NPC Alun-alun." @@ -6990,12 +7046,12 @@ msgstr "Anda tidak memiliki izin untuk memodifikasi kekuatan angin dari server i msgid "You do not have permission to modify the world difficulty of the server." msgstr "Anda tidak memiliki izin untuk memodifikasi tingkat kesulitan dari server ini." -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "Anda tidak memiliki izin untuk membisukan {0}" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "Anda tidak memiliki izin untuk melakukan tindakan ini." @@ -7003,24 +7059,24 @@ msgstr "Anda tidak memiliki izin untuk melakukan tindakan ini." msgid "You do not have permission to place actuators." msgstr "Anda tidak memiliki izin untuk menaruh aktuator." -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "Anda tidak memiliki izin untuk menaruh logic Sensor." -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "Anda tidak memiliki izin untuk menaruh tile ini." -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "Anda tidak memiliki izin untuk mengatur lokasi ulang NPC Alun-alun." -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "Anda tidak memiliki izin menghidupkan kembali pemain lainnya." -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "Anda tidak memiliki izin untuk melihat ID pemain." @@ -7028,57 +7084,61 @@ msgstr "Anda tidak memiliki izin untuk melihat ID pemain." msgid "You do not have permission to send emotes!" msgstr "Anda tidak memiliki izin untuk mengirim emoji!" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "Anda tidak memiliki izin untuk memunculkan peliharaan." -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "Anda tidak memiliki izin untuk memulai pesta." -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "Anda tidak memiliki izin untuk memulai peristiwa." -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "Anda tidak memiliki izin untuk memulai peristiwa {0}." -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "Anda tidak diizinkan untuk memulai Old One's Army." -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "Anda tidak memiliki izin untuk memanggil boss." -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "Anda tidak memiliki izin untuk memanggil sang Empress of Light." -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "Anda tidak memiliki izin untuk memanggil sang Lunatic Cultist!" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "Anda tidak memiliki izin untuk teleportasi semua pemain lainya." -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "Anda tidak memiliki izin untuk telportasi semua para pemain." -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "Anda tidak memiliki izin untuk teleportasi pemain lainnya." -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "Anda tidak memiliki izin untuk teleportasi menggunakan {0}." -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "Anda tidak memiliki izin untuk teleportasi menggunakan item." @@ -7086,11 +7146,11 @@ msgstr "Anda tidak memiliki izin untuk teleportasi menggunakan item." msgid "You do not have permission to teleport using pylons." msgstr "Anda tidak memiliki izin untuk teleportasi menggunakan pylon." -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "Anda tidak memiliki izin untuk teleportasi menggunakan Wormhole Potion." -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "Anda tidak memiliki izin untuk teleportasi." @@ -7098,202 +7158,218 @@ msgstr "Anda tidak memiliki izin untuk teleportasi." msgid "You do not have permission to toggle godmode." msgstr "Anda tidak memiliki izin untuk aktifkan/nonaktifkan mode dewa." -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "Anda tidak memiliki izin untuk mengunggah karakter pemain lain yang menggabung data karakter sisi peladen." -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "Anda tidak memiliki izin untuk menggunakan Enchanted Sundial." -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "Anda telah gagal dalam mengganti kata sandi anda." -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "Anda telah dikendali dibisukan." -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "Anda telah dikendali tidak dibisukan." -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "Anda telah berhasil dalam mengeluarkan akun anda." -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "Anda di buff {0} dengan {1} ({2}) dalam {3} detik!" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "Anda telah mengganti grup {0} ke {1}" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "Anda telah mengganti grup {0} ke {1} dalam {2}" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "Anda telah gugur di mode hardcore, dan item anda akan hilang selamanya." -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "Anda telah melempar {0} keluar angkasa." -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "Anda telah melempar diri anda sendiri keluar angkasa." -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "Anda telah dibisukan {0} dalam {1}" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "Anda telah memanggil ulang {0}" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "Anda telah memanggil ulang diri anda sendiri." -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "Anda telah berhasil mengubah kata sandiri anda." -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "Anda telah tidak membisukan {0}." -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "Anda belum pernah menerima bisikan apa pun sebelumnya." -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "Anda menyembuhkan {0} dengan HP {1}." -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "Anda telah menyembuhkan diri sendiri dengan HP {0}." -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "Anda telah membunuh {0}!" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "Anda telah membunuh diri anda sendiri!." -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "Anda telah meluncurkan kembang api mengenai {0}." -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "Anda telah meluncurkan kembang api mengenai diri anda sendiri." -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "Anda masuk dari lokasi lain." -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "Anda masuk dari IP yang sama." -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "Anda sekarang dapat menerima bisikan dari pemain lain." -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "Anda mungkin ingin mempertimbangkan untuk menghapus izin tshock.ignore.ssc atau meniadakannya untuk pemain ini." -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "Anda harus masuk untuk memanfaatkan wilayah yang dilindungi." -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "Anda harus memberikan kode penyiapan!" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "anda harus mengatur ForceTime ke bentuk normal dengan konfigurasi untuk menggunakan Enchanted Sundial." -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "Anda harus membangkitkan sang Wall of Flesh di neraka." -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Anda harus di dalam permain untuk menggunakan perintah ini." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "Anda harus bergabung dengan karakter hardcore." -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "Anda harus bergabung dengan karakter mediumcore atau lebih tinggi." -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." -msgstr "" +msgstr "Anda harus join menggunakan karakter softcore." -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "Anda harus bergabung kembali untuk memastikan tempat sampah Anda dibersihkan!" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "Anda memunculkan {0} {1} kali" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "Anda memberi warp {0} kepada {1}." -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "Anda diteleportasi ke {0}." -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "Anda akan diteleportasikan ke tempat lokasi terakhir anda yang diketahui..." -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "Anda tidak akan lagi menerima bisikan dari pemain lain." -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "Anda tidak diizinkan untuk mengubah tile di sini!" @@ -7301,91 +7377,95 @@ msgstr "Anda tidak diizinkan untuk mengubah tile di sini!" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "Akun Anda telah ditingkatkan menjadi superadmin selama 10 menit." -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "Akun anda, \"{0}\", sudah terdaftar." -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "Grup akun Anda tidak dapat dimuat. Silakan hubungi administrasi peladen tentang hal ini." -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "Klien Anda mengirim nama karakter kosong." -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "Basis data Anda berisi UserID yang tidak benar (harus berupa bilangan bulat)." -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "Grup anda telah diubah menjadi {0} dalam {1}" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "Grup Anda sementara telah diubah menjadi {0}" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "Ruang penyimpanan anda terlihat penuh." -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "Data karakter lokal anda, dari koneksi awal anda, telah diunggah ke dalam peladen." -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "Akun baru anda telah terverifikasi, dan sistem {0}setup telah dimatikan." -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "Kata sandi anda tidak cocok dengan kata sandi karakter ini." -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "Kata sandi anda adalah {0}." -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "Pengaturan izin anda sebelumnya telah dipulihkan." -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "Dump referensi Anda telah dibuat di berkas pelden." -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "Karakter sisi peladen anda telah disimpan." -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "Akses grup sementara anda telah berakhir." -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "z <#> - mengatur urutan-z wilayah." -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." -msgstr "" +msgstr "Anda telah dikick dikarenakan salah password." #: ../../TShockAPI/TSServerPlayer.cs:34 msgctxt "The account name of server console." msgid "ServerConsole" -msgstr "" +msgstr "ServerConsole" diff --git a/i18n/it_IT/TShockAPI.po b/i18n/it_IT/TShockAPI.po index 2c837d58..b08afe48 100644 --- a/i18n/it_IT/TShockAPI.po +++ b/i18n/it_IT/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, 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} - Sei stato bannato: {1} ({2} rimanenti)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" -msgstr "" +msgstr "#{0} - Sei bannato: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." -msgstr "" +msgstr " Se non viene fornita alcuna durata, il ban sarà permanente." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "Palme" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" non è un NPC valido." @@ -191,19 +191,19 @@ msgstr "\"{0}\" non è un NPC valido." #: ../../TShockAPI/PaginationTools.cs:283 #, csharp-format msgid "\"{0}\" is not a valid page number." -msgstr "" +msgstr "\"{0}\" non è un numero di pagina valido." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." -msgstr "" +msgstr "\"{0}\" non è un raggio valido." #: ../../TShockAPI/Rest/SecureRest.cs:213 #, csharp-format msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,513 +211,513 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) si è unito." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} ({2} fa)" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} ha aggiunto l'account {1} al gruppo {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "{0} ha bannato {1} per {2}" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} ha provocato una pioggia di slime." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} ha cambiato il massimo numero di spawns a {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} ha cambiato il massimo numero di spawns a 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} ha cambiato la password per l'account {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} ha cambiato la velocità di spawn a {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} ha cambiato la velocità di spawn a 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} ha cambiato la velocità del vento in {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} ha disabilitato la modalità natalizia." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} ha abilitato la modalità halloween." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} ha abilitato la modalità natalizia." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} ha fatto smettere di piovere." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} ha fermato la pioggia di slime." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "{0} ti ha dato {1} {2}." msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} si è unito." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -725,423 +725,423 @@ msgstr "" #: ../../TShockAPI/ItemBans.cs:234 #, csharp-format msgid "{0} is banned! Remove it!" -msgstr "" +msgstr "{0} è vietato! Rimuovilo!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." -msgstr "" +msgstr "{0} non è più in modalità dio." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" -msgstr "" +msgstr "{0} è stato espulso per '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." -msgstr "" +msgstr "{0} è stato teletrasportato da te." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " -msgstr "" +msgstr "{0}{1} aiuto: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" -msgstr "" +msgstr "* **Comandi**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" -msgstr "" +msgstr "* **Predefinito**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" -msgstr "" +msgstr "* **Permessi**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1166,53 +1166,53 @@ msgstr "" #, csharp-format msgid "=== Dependency ===" msgid_plural "=== Dependencies ===" -msgstr[0] "" +msgstr[0] "=== Dipendenze ===" msgstr[1] "" #: ../../TShockPluginManager/NugetCLI.cs:133 #, csharp-format msgid "=== Requested Plugin ===" msgid_plural "=== Requested Plugins ===" -msgstr[0] "" +msgstr[0] "=== Plugin Richiesto ===" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/ja_JP/TShockAPI.po b/i18n/ja_JP/TShockAPI.po index 21c22233..9e74da2b 100644 --- a/i18n/ja_JP/TShockAPI.po +++ b/i18n/ja_JP/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ 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/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - あなたがBANされた:{1} (残り時間:{2})" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - あなたはBANされました: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -msgstr "" +msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." -msgstr "" +msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -msgstr "" +msgstr " 'palm', 'corruptpalm', 'crimspalm', 'hallowpalm'" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -msgstr "" +msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" -msgstr "" +msgstr " {0}{1} \"{2}\" (現在オフライン中の相手に関連付けられているIPアドレスを探知します)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" -msgstr "" +msgstr " {0}{1} \"{2}{3}\" {4} {5} (このアカウントを永久BANします。)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" -msgstr "" +msgstr " {0}{1} {2} (ターゲットにしたプレイヤーインデックスを探します。)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" -msgstr "" +msgstr " {0}{1} {2}{3} {4} {5} (オンラインプレイヤーのUUID、IPアドレス、アカウントを永久BANします。)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" -msgstr "" +msgstr " {0}{1} \"{2}{3}\" {4} {5} (このIPアドレスを永久BANします。)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." -msgstr "" +msgstr " 例えば、 {0} の値は10日、30分、0秒を表します。" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." -msgstr "" +msgstr " {0} が指定されていない場合、コマンドはデフォルトで {1} を使用します。" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." -msgstr "" +msgstr " 期間が指定されていない場合、BANは自動的に永久的になります。" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" -msgstr "" +msgstr " {0} がコマンドで指定されない限り、 {1} はプレイヤーまたはプレイヤーのインデックスであるとみなされます" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." -msgstr "" +msgstr " ->グループ{1}の{0}としてログインしました。" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." -msgstr "" +msgstr "- {0} はBANを追加するときに表示され、 {1} コマンドでも表示できます。" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." -msgstr "" +msgstr "- {0} はBANを追加するときに表示され、 {1} コマンドで表示できます。" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" -msgstr "" +msgstr "- {0}: -a (アカウント名), -u (UUID), -n (キャラクター名), -ip (IPアドレス), -e (正確には, {1} は識別子として扱われます)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." -msgstr "" +msgstr "- {0}: {1} 形式を使用してBAN期間の長さを決定します。" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" -msgstr "" +msgstr "- 現在オフラインのプレイヤーをアカウント名でBANします。" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" -msgstr "" +msgstr "- IPアドレスで現在オフラインのプレイヤーをBANします" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" -msgstr "" +msgstr "- オンラインプレイヤーをインデックスでBANします(名前を入力するのが難しい場合に便利です)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" -msgstr "" +msgstr "- デフォルトの木:" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" -msgstr "" +msgstr "- 宝石の木:" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" -msgstr "" +msgstr "- BAN中のプレイヤーを一覧表示します。BAN期間が短いほど、緑色で表示されます。" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" -msgstr "" +msgstr "-その他:" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "「{0}」は無効な数値です。" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,507 +211,507 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) はアカウント {2} のパスワードを変更しました。" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) はアカウント {2} のパスワード変更に失敗しました。" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) には {2} 以上の無効なログイン試行があり、自動的にキックされました。" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." -msgstr "" +msgstr "{0} ({1}) が参加しました。" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} はアカウント {1} の登録を試みましたが、既に使用されています。" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} はユーザーとして正常に認証されました: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} がアカウント {1} をグループ {2} に変更しました。" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} がアカウント {1} のパスワードを変更しました" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} があなたのグループを {1} に変更しました。" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -721,419 +721,419 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} があなたを殺した!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0} NPCが殺される。" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} がアカウントを登録しました: \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} は {1}{2} の実行を試みました。" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1148,8 +1148,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1166,43 +1166,43 @@ msgid "=== Requested Plugin ===" msgid_plural "=== Requested Plugins ===" msgstr[0] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1211,87 +1211,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1300,16 +1300,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1317,162 +1317,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "自動保存は停止されています" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "自動保存はすでにオンになっています" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1489,1039 +1489,1059 @@ msgstr "バックアップに失敗!" msgid "Backup Thread" msgstr "バックアップスレッド" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "禁止を解く" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "「Blood Moon」 が {0} に設定されました。" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2532,27 +2552,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2561,79 +2581,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "サーバーのパスワードを変更する。" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "風速を変更する。" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "世界のモードを変更する。" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "アカウントのパスワードを変更する。" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "TShockのアップデートをチェックします。" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "ドロップや投射物をクリアします。" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2642,20 +2662,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "コマンドが失敗しました。詳細はログで確認してください。" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2663,20 +2683,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2687,78 +2707,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "データベースのライブラリが見つかりませんでした (おそらくSqlite3.dll)" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "ゲームデータと権限システムの参考表をサーバーフォルダに作成します。" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2771,26 +2791,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2803,87 +2823,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2892,157 +2915,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3050,440 +3073,450 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3492,163 +3525,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3659,67 +3692,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3732,15 +3769,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3749,38 +3786,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3788,165 +3825,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3959,461 +3996,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4442,108 +4479,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4552,7 +4589,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4560,102 +4597,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4663,24 +4700,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4690,33 +4727,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4724,43 +4761,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4772,9 +4809,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4783,17 +4820,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4802,22 +4839,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4825,177 +4867,177 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5005,54 +5047,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5060,65 +5102,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5126,62 +5168,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5189,62 +5231,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5252,19 +5294,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5277,7 +5319,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5286,11 +5328,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5298,43 +5340,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5342,36 +5384,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5383,7 +5425,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5391,47 +5433,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5441,31 +5483,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5477,256 +5520,256 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5734,21 +5777,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5757,190 +5800,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5952,31 +5991,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -5988,7 +6027,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -5996,19 +6035,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6025,52 +6064,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6082,11 +6121,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6104,265 +6143,265 @@ msgid "This is the plugin you requested to install." msgid_plural "These are the plugins you requested to install" msgstr[0] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6371,82 +6410,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6455,7 +6507,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6465,78 +6517,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6546,130 +6598,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6686,17 +6738,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6710,48 +6762,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6759,153 +6811,157 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6913,7 +6969,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6933,15 +6989,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -6986,12 +7042,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -6999,24 +7055,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7024,57 +7080,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7082,11 +7142,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7094,202 +7154,218 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7297,85 +7373,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/pl_PL/TShockAPI.po b/i18n/pl_PL/TShockAPI.po index d375479c..8ce4b0ee 100644 --- a/i18n/pl_PL/TShockAPI.po +++ b/i18n/pl_PL/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -24,366 +24,366 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Pomijam zapisywanie SSC (ze względu na tshock.ignore.ssc) dla {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Zostałeś zbanowany: {1} (pozostało {2})" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Jesteś zbanowany: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (Znajdź adres IP powiązany z kontem offline)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Na stałe banuje tę nazwę konta)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Znajdź indeks gracza dla danego konta)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Na stałe banuje gracza online na konto, UUID oraz adres IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Na stałe banuje ten adres IP)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Np. wartość {0} reprezentuje 10 dni, 30 minut, 0 sekund." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " Jeśli nie podano {0}, polecenie domyślnie używa {1}." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Jeśli nie zostanie podany czas trwania, ban będzie permanentny." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " Jeśli {0} nie zostanie przekazany do polecenia, {1} jest uznawany za gracza lub indeks gracza" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> Zalogowano jako: {0}; w grupie {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} są podane po dodaniu bana i mogą być również wyświetlone za pomocą polecenia {1}." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} są podane po dodaniu bana i można je znaleźć za pomocą polecenia {1}." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" -msgstr "" +msgstr "- {0}: -a (nazwa konta), -u (UUID), -n (nazwa postaci), -ip (adres IP), -e (dokładny, {1} zostanie użyty jako identyfikator)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." -msgstr "" +msgstr "- {0}: używa formatu {1} do określenia długości bana." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" -msgstr "" +msgstr "- Zbanuj offline gracza używając nazwy konta" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" -msgstr "" +msgstr "- Zbanuj offline gracza używająć adresu IP" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" -msgstr "" +msgstr "- Zbanuj online gracza używając indeksu (Użyteczne dla ciężkich do napisania nazw)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" -msgstr "" +msgstr "- Domyślne drzewa :" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" -msgstr "" +msgstr "- Drzewa klejnotowe :" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" -msgstr "" +msgstr "- Listuje aktywne bany. Kolor zielenieje, gdy ban zbliża się do wygaśnięcia" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" -msgstr "" +msgstr "- Różne :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" -msgstr "" +msgstr "- Drzewa palmowe:" + +#: ../../TShockAPI/TShock.cs:969 +msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." +msgstr "!!! > Ustaw DisableLoginBeforeJoin na true w pliku konfiguracyjnym i użyj /reload jeżeli to jest problemem." #: ../../TShockAPI/TShock.cs:963 -msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." -msgstr "" +msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." +msgstr "!!! > Ustaw DisableUUIDLogin na true w pliku konfiguracyjnym i użyj /reload jeżeli to jest problemem." + +#: ../../TShockAPI/TShock.cs:968 +msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." +msgstr "!!! Login przed dołączeniem jest włączony. Istniejące konta mogą się zalogować i hasło serwera zostanie pominięte." #: ../../TShockAPI/TShock.cs:957 -msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." -msgstr "" +msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." +msgstr "!!! Hasło serwera w config.json zostało nadpisane przez interaktywny monit i zostanie zignorowane" #: ../../TShockAPI/TShock.cs:962 -msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." -msgstr "" - -#: ../../TShockAPI/TShock.cs:951 -msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." -msgstr "" - -#: ../../TShockAPI/TShock.cs:956 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." -msgstr "" +msgstr "!!! Login za pomocą UUID jest włączony. Jeżeli UUID użytkownika pasuje do konta, hasło serwera zostanie pominięte." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" -msgstr "" +msgstr "\"{0}\" nie jest poprawnym ID wzmocnienia!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." -msgstr "" +msgstr "\"{0}\" nie jest prawidłową opcją wyczyszczenia." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." -msgstr "" +msgstr "\"{0}\" nie jest prawidłowym NPC" #: ../../TShockAPI/PaginationTools.cs:283 #, csharp-format msgid "\"{0}\" is not a valid page number." -msgstr "" +msgstr "\"{0}\" nie jest prawidłowym numerem strony." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." -msgstr "" +msgstr "\"{0}\" nie jest prawidłowym promieniem." #: ../../TShockAPI/Rest/SecureRest.cs:213 #, csharp-format msgid "\"{0}\" requested REST endpoint: {1}" -msgstr "" +msgstr "\"{0}\" zażądało punkt końcowy REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " -msgstr "" +msgstr "(Ogłoszenie Serwerowe) " #: ../../TShockAPI/Configuration/TShockConfig.cs:496 msgid "(Super Admin) " -msgstr "" +msgstr "(Super Admin) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" -msgstr "" +msgstr "{0} - Numer Zgłoszenia: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" -msgstr "" - -#: ../../TShockAPI/Commands.cs:976 -#, csharp-format -msgid "{0} ({1}) changed the password for account {2}." -msgstr "" +msgstr "{0} ({1} tokenów)" #: ../../TShockAPI/Commands.cs:986 #, csharp-format -msgid "{0} ({1}) failed to change the password for account {2}." -msgstr "" +msgid "{0} ({1}) changed the password for account {2}." +msgstr "{0} ({1}) zmienił hasło dla konta {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/Commands.cs:996 +#, csharp-format +msgid "{0} ({1}) failed to change the password for account {2}." +msgstr "{0}({1}) nie udało się zmienić hasła dla konta {2}." + +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" -msgstr "" +msgstr "{0} ({1}) z grupy '{2}' z '{3}' dołączył. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" -msgstr "" +msgstr "{0} ({1}) z grupy '{2}' dołączył. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." -msgstr "" +msgstr "{0} ({1}) miał {2} lub więcej niepoprawnych prób zalogowania się i został wyrzucony automatycznie." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." -msgstr "" +msgstr "{0} ({1}) dołączył." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" -msgstr "" +msgstr "{0} (Indeks: {1}, ID Konta: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" -msgstr "" +msgstr "{0} (Indeks: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" -msgstr "" +msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" -msgstr "" +msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" -msgstr "" - -#: ../../TShockAPI/Commands.cs:1467 -#, csharp-format -msgid "{0} {1} ({2} ago)" -msgstr "" +msgstr "{0} {1}" #: ../../TShockAPI/Commands.cs:1481 #, csharp-format -msgid "{0} {1} ({2})" -msgstr "" +msgid "{0} {1} ({2} ago)" +msgstr "{0} {1} ({2} temu)" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:1495 +#, csharp-format +msgid "{0} {1} ({2})" +msgstr "{0} {1} ({2})" + +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" -msgstr "" +msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" -msgstr "" +msgstr "{0} {1} na {2} ({3} temu)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" -msgstr "" +msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" -msgstr "" +msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" -msgstr "" +msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" -msgstr "" +msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" -msgstr "" +msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" -msgstr "" +msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" -msgstr "" +msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" -msgstr "" +msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." -msgstr "" +msgstr "{0} dodał konto {1} do grupy {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." -msgstr "" +msgstr "{0} zbanował {1} na '{2}'." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." @@ -392,255 +392,255 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." -msgstr "" +msgstr "{0} spowodował deszcz." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." -msgstr "" +msgstr "{0} dodał konto {1} do grupy {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." -msgstr "" +msgstr "{0} zmienił maksymalną liczbę spawnów na {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." -msgstr "" +msgstr "{0} zmienił maksymalną liczbę spawnów na 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" -msgstr "" +msgstr "{0} zmienił hasło dla konta {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." -msgstr "" +msgstr "{0} zmienił częstotliwość spawnów na {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." -msgstr "" +msgstr "{0} zmienił częstotliwość spawnów na 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{0} usunął {1} przedmiot w promieniu {2}." +msgstr[1] "{0} usunął {1} przedmiotów w promieniu {2}." msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{0} usunął {1} NPC w promieniu {2}." +msgstr[1] "{0} usunął {1} NPC w promieniu {2}." msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{0} usunął {1} pocisk w promieniu {2}." +msgstr[1] "{0} usunął {1} pocisków w promieniu {2}." +msgstr[2] "{0} usunął {1} pocisków w promieniu {2}." msgstr[3] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." -msgstr "" +msgstr "{0} wyłączył tryb halloween." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." -msgstr "" +msgstr "{0} wyłączył tryb świąteczny." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." -msgstr "" +msgstr "{0} się rozłączył." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." -msgstr "" +msgstr "{0} włączył tryb halloween." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." -msgstr "" +msgstr "{0} włączył tryb świąteczny." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." -msgstr "" +msgstr "{0} zakończył deszcz." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." -msgstr[0] "" +msgstr[0] "{0} dał Ci {1} {2}." msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." -msgstr "" +msgstr "{0} wystrzelił się w kosmos." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." -msgstr "" +msgstr "{0} wyszedł." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." -msgstr "" +msgstr "{0} wyciszył {1} na {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." @@ -649,87 +649,87 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." -msgstr "" +msgstr "{0} przywołał Ścianę mięsa." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." -msgstr "" +msgstr "{0} cofnął wyciszenie {1}." -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0} uleczyła się o {1} HP." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." -msgstr "" +msgstr "{0} uleczył się za {1} HP." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} już ma pozwolenie na umieszczenie bloku {1}." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." -msgstr "" +msgstr "{0} jest już uprawniony do używania {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -739,110 +739,110 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." -msgstr "" +msgstr "{0} nie akceptuje szeptania." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." -msgstr "" +msgstr "{0} nie jest zbanowany." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" -msgstr "" +msgstr "{0} nie jest martwy!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." -msgstr "" +msgstr "{0} jest teraz w trybie Boga." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." -msgstr "" +msgstr "{0} jest offline i nie może otrzymać Twojej odpowiedzi." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" -msgstr "" +msgstr "{0} właśnie Cię zabił!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" -msgstr "" +msgstr "{0} wyrzucił {1} za '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." -msgstr "" +msgstr "{0} wystrzelił fajerwerki na Ciebie." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." -msgstr[0] "" +msgstr[0] "{0} NPC został zabity." msgstr[1] "" msgstr[2] "" -msgstr[3] "" +msgstr[3] "{0} NPCs zostały zabite." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." -msgstr "" +msgstr "{0} zarejestrował konto: \"{1}\"" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." -msgstr "" +msgstr "{0} pozostało" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." -msgstr "" +msgstr "{0} zmienił nazwę {1}." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." -msgstr "" +msgstr "{0} ustawił czas na {1}:{2:D2}." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." -msgstr "" +msgstr "{0} ustawił czas na 00:00." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." -msgstr "" +msgstr "{0} ustawił czas na 04:30." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." -msgstr "" +msgstr "{0} ustawił czas na 12:00." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." -msgstr "" +msgstr "{0} ustawił czas na 19:30." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." -msgstr "" +msgstr "{0} uderzył {1} za obrażenia {2}." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." @@ -851,313 +851,313 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1172,8 +1172,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1196,43 +1196,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1241,87 +1241,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1330,16 +1330,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1347,162 +1347,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1519,1039 +1519,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2562,27 +2582,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2591,79 +2611,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2672,20 +2692,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2693,20 +2713,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2717,78 +2737,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2801,26 +2821,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2833,87 +2853,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2922,157 +2945,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3080,33 +3103,33 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." @@ -3115,7 +3138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." @@ -3124,402 +3147,412 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3528,163 +3561,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3695,67 +3728,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3768,15 +3805,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3785,38 +3822,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3824,165 +3861,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3995,461 +4032,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4478,108 +4515,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4588,7 +4625,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4596,102 +4633,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4699,24 +4736,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4726,33 +4763,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4760,43 +4797,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4808,9 +4845,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4819,17 +4856,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4838,22 +4875,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4861,105 +4903,105 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" @@ -4968,73 +5010,73 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5044,54 +5086,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5099,65 +5141,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5165,62 +5207,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5228,62 +5270,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5291,19 +5333,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5316,7 +5358,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5325,11 +5367,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5337,43 +5379,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5381,36 +5423,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5422,7 +5464,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5430,47 +5472,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5480,31 +5522,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5516,120 +5559,120 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." @@ -5638,137 +5681,137 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5776,21 +5819,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5799,190 +5842,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5994,31 +6033,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6030,7 +6069,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6038,19 +6077,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6067,52 +6106,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6124,11 +6163,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6149,265 +6188,265 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6416,82 +6455,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6500,7 +6552,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6510,78 +6562,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6591,130 +6643,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6731,17 +6783,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6755,48 +6807,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6804,22 +6856,22 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." @@ -6828,93 +6880,97 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." @@ -6923,7 +6979,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." @@ -6932,7 +6988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." @@ -6941,28 +6997,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6970,7 +7026,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6990,15 +7046,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7043,12 +7099,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7056,24 +7112,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7081,57 +7137,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7139,11 +7199,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7151,175 +7211,191 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." @@ -7328,28 +7404,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7357,85 +7433,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/pt_BR/TShockAPI.po b/i18n/pt_BR/TShockAPI.po index 5b4899b3..c21a0f4f 100644 --- a/i18n/pt_BR/TShockAPI.po +++ b/i18n/pt_BR/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-30 01:02\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Ignorando o salvamento do SSC (devido a tshock.ignore.ssc) para {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Você está banido: {1} ({2} restante(s))" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Você está banido: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}(Encontre o IP associado a uma conta offline)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Bane permanentemente pelo nome da conta)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Encontra o índice do jogador que deseja banir)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Bane permanentemente um jogador online por conta, UUID e IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5} (Bane permanentemente este endereço IP)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Por exemplo, um valor de {0} representaria 10 dias, 30 minutos, 0 segundos." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " Se nenhum {0} for especificado, o comando usará {1} por padrão." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Se não for informada uma duração, o banimento será permanente." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " A menos que {0} seja passado para o comando, assume-se que {1} é um jogador ou um índice do jogador" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> Conectado como: {0}; no grupo {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} são fornecidos quando você adiciona um ban, e também pode ser visualizado através do comando {1}." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} são fornecidos quando você adiciona um ban, e podem ser encontrados com o comando {1}." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (nome da conta), -u (UUID), -n (nome do personagem), -ip (endereço de IP), -e (exato, {1} será tratado como identificador)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: usa o formato {1} para determinar o tempo do banimento." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Bane um jogador offline pelo nome da conta" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Bane um jogador offline pelo endereço IP" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- Bane um jogador online por índice (útil para nomes difíceis de digitar)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Árvores padrão:" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Árvores de jóias:" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- Lista de banimentos ativos. Tendências de cores conforme o fim do tempo de banimento" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- Outros :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Palmeiras :" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "!!! > Defina DisableLoginBeforeJoin como true (verdadeiro) no arquivo de configuração e use /reload se isso for um problema" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "!!! > Defina DisableUUIDLogin como true (verdadeiro) no arquivo de configuração e /reload se isso for um problema." -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "!!! Login depois de entrar está ativado. As contas existentes podem entrar e a senha do servidor será ignorada." -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "!!! A senha do servidor no config.json foi sobrescrita pelo prompt interativo e será ignorada." -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "!!! O login UUID está ativado. Se a UUID de um utilizador corresponder a uma conta, a palavra-passe do servidor será ignorada." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" não é um ID de buff válido!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "`{0}` não é uma opção válida." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" não é um NPC válido." @@ -193,7 +193,7 @@ msgstr "\"{0}\" não é um NPC válido." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" não é um número de página válido." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" não é uma distância de área válida." @@ -203,7 +203,7 @@ msgstr "\"{0}\" não é uma distância de área válida." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" executou uma requisição REST através da entrada: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Anúncio Global) " @@ -211,513 +211,513 @@ msgstr "(Anúncio Global) " msgid "(Super Admin) " msgstr "(Super Administrador) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - Número de Ticket: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} tokens)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) alterou a senha da conta {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) falhou ao alterar a senha da conta {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "{0} ({1}) de '{2}' do grupo '{3}' conectou. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "{0} ({1}) do grupo '{2}' conectou. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) teve {2} ou mais tentativas de login inválidas e por isso foi expulso automaticamente." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) conectou-se." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "{0} (Índice: {1}, ID da conta: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "{0} (Índice: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} ({2} atrás)" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{0} {1} em {2} ({3} atrás)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} adicionou conta {1} ao grupo {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "{0} ativou técnicas avançadas de combate volume 2!" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "{0} aplicou técnicas avançadas de combate!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "{0} aplicou mochila de mercador ambulante!" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} tentou registrar uma conta {1} mas esse nome já foi utilizado." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "{0} autenticou {1} com sucesso." -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} autenticado com sucesso como usuário: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "{0} baniu {1} por '{2}'." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "{0} assassinou {1} NPC." msgstr[1] "{0} assassinou {1} NPCs." -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} fez chover o slime." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} causou a chuva." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} mudou a conta {1} para o grupo {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} mudou o máximo de surgimentos para {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} mudou máximo de surgimento para 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} alterou a senha da conta {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} mudou a taxa de surgimento para {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} mudou a taxa de surgimento para 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} mudou a velocidade do vento para {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "{0} removeu {1} item dentro de uma distância de {2}." msgstr[1] "{0} removeu {1} itens dentro de uma distância de {2}." -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "{0} removeu {1} NPC dentro de uma distância de {2}." msgstr[1] "{0} removeu {1} NPCs dentro de uma distância de {2}." -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "{0} removeu {1} projétil dentro de uma distância de {2}." msgstr[1] "{0} removeu {1} projéteis dentro de uma distância de {2}." -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0} desativou o evento de halloween." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} desativou o evento de natal" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "{0} desconectado." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} ativou o evento de halloween." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} ativou o evento de natal." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} acabou com a chuva." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} acabou com a chuva de slime." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "{0} executado (args omitidos): {1}{2}." -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} executado: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} falhou ao autenticar como usuário: {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "{0} deu a você {1} {2}." msgstr[1] "{0} deu a você {1} {2}s." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "{0} tem permissão para colocar o bloco {1}." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "{0} tem permissão para usar {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "{0} tem permissão para usar o projétil {1}." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "{0} foi proibido de colocar o bloco {1}." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "{0} foi proibido de usar o projétil {1}." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "{0} foi proibido de usar {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "{0} te deu um buff com {1} ({2}) por {3} segundos!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} alterou seu grupo para {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} desabilitou os teleportes de entrada." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} encerrou o evento de invasão atual." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} encerrou o evento do Exército Antigo." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} conectou-se." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} conectou-se. IP: {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0} lançou {1} para o espaço." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0} lançou ela mesmo para o espaço." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0} lançou ele mesmo para o espaço." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "{0} saiu." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0} foi silenciado {1} por {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "{0} renasceu você." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "{0} enviou uma solicitação para o serviço de entrega de coelho!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "{0} enviou um pedido para o serviço de entrega de gatos!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "{0} enviou um pedido para o serviço de entrega de cães!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "{0} enviou um pedido para o serviço de entrega de slime." -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "{0} invocou {1} {2} vez." msgstr[1] "{0} invocou {1} {2} vezes." -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} invocou o Parede de Carne." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "{0} tem dados do SSC na banco de dados, mas tem a permissão tshock.ignore.ssc. Isto significa que os seus dados SSC estão sendo ignorados." -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} iniciou uma invasão do exército da armada dos goblins." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} iniciou uma invasão marciana." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} iniciou uma invasão de piratas." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} iniciou uma invasão da legião de neve." -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "{0} removeu o silêncio de {1}." -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "{0} curou {1} para {2} de vida." -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0} curou ela mesma por {1} de vida." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "{0} curou ele mesmo por {1} de vida." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} já está autorizado a colocar o bloco {1}." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} já está autorizado a usar {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "{0} já está autorizado a usar projétil {1}." -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "{0} já está morto!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} já está proibido de usar {1}." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "{0} já está impedido de colocar bloco {1}." -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "{0} já está impedido de usar projétil {1}." @@ -727,421 +727,421 @@ msgstr "{0} já está impedido de usar projétil {1}." msgid "{0} is banned! Remove it!" msgstr "{0} está banido! Remova isso!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "{0} não está mais no modo Deus." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "{0} não está aceitando sussurros." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} não está banido." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "{0} não está morto!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "{0} está agora no modo Deus." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "{0} está offline e não pode receber a sua resposta." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} acabou de te matar!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{0} expulsou {1} por '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "{0} lançou fogos de artifício em você." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0} NPC foi morto." msgstr[1] "{0} NPCs foram mortos." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} registrou uma conta: \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "{0} restantes." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0} renomeou o {1}." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0} definiu o tempo para {1}:{2:D2}." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "{0} definiu o tempo para 00:00." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "{0} definiu o horário para 04:30." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "{0} definiu o horário para 12:00." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "{0} definiu o horário para 19h30." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "{0} deu um tapa em {1} com {2} de dano." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "{0} invocou {1} {2} vez." msgstr[1] "{0} invocou {1} {2} vezes." -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} iniciou o evento da lua de sangue." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} iniciou o evento de lua cheia." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} iniciou uma noite de lanterna." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} iniciou o evento de tempestade de areia." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} iniciou um eclipse." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "{0} começou a lua gélida na rodada {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "{0} iniciou o evento do Exército Velho!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "{0} iniciou a lua da abóbora na rodada {1}!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} parou um eclipse." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} parou a lua de sangue em andamento." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} parou a tempestade de areia em andamento." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} parou a noite da lanterna." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} removeu com sucesso a conta: {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "{0} invocou uma Lua de Sangue!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "{0} invocou uma lua gélida!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "{0} invocou uma invasão de Goblin!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "{0} invocou uma invasão marciana!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "{0} invocou um Mechdusa!" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "{0} invocou o Senhor da Lua!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "{0} invocou a lua de abóbora!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "{0} invocou um eclipse!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "{0} invocou o {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "{0} invocou a Imperatriz da Luz!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "{0} invocou os Piratas!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "{0} invocou a Legião da Neve!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} teleportou {1} para você." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} se teletransportou até você." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} teleportou você para {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0} tentou executar (args omitidos) {1}{2}." -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} tentou executar {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} disparou um meteoro." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} teleportou você para {1}." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "{0} foi banido por '{1}'." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "{0} foi expulso por '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} foi teletransportado até você." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "{0}'s está no grupo {1}." -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "{0}'s tem o último IP conhecido como {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "{0}'s logou pela última vez em {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "{0}'s foi registrado em {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "{0}{1} não possui atalhos." -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "{0}{1} help: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "{0}{1}/{2} em {3} @ {4}:{5} (TShock para Terraria v{6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - Autentifica você usando seu UUID e nome de personagem." -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login - Autentifica você usando sua senha e nome de personagem." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login - Autentifica você usando seu nome de usuário e senha." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add dono" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add usuário senha grupo -- Adiciona um usuário específico" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del usuário -- Remove um usuário específico" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group usuário novo-grupo -- Altera o grupo de um usuário" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user senha usuário nova-senha -- Altera a senha de um usuário" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "* **Comandos**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "* **Padrão**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "* **Tipo de campo**: `{0}`" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "* **Permissões**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "**Exemplo de uso**: `{0}?{1}`" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "**Substantivos**:" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "**Verbos**:" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - Você está banido: {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "De {0} a {1}" @@ -1154,10 +1154,10 @@ msgstr "{0} de {1} [{2}]" #: ../../TShockPluginManager/NugetCLI.cs:178 #, csharp-format msgid "{0} from {1} [{2}]" -msgstr "" +msgstr "{0} de {1} [{2}]" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "=== Plugin exigido ===" msgstr[1] "=== Plugins exigidos ===" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "um Deerclops" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "Um grupo com o mesmo nome já existe." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "Muitas coisas irão falhar por causa disso. Você deve apagar e recriar o campo permitido." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "Um servidor malicioso pode facilmente roubar a UUID de um utilizador. Considere desligar esta opção se executar em um servidor público." -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "uma Nave Marciana" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "Um meteoro foi disparado." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "um Pilar de Nebula" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "Uma senha para este servidor foi definida em config.json e está sendo utilizada." -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "É necessário informar o nome do jogador que deseja expulsar. Por favor, forneça um." -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "Um plugin neste servidor impediu seu login." @@ -1221,87 +1221,87 @@ msgstr "Um plugin neste servidor impediu seu login." msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "Um login REST de {0} foi bloqueado, pois atualmente tem {1} tokens de limite de taxa e está no limite de RESTMaximumRequestsPerInterval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "um Pilar Solar" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "um Pilar de Pó das Estrelas" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "Uma conta de usuário com esse nome não existe." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "um Pilar de Vortex" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "A conta {0} não existe! Portanto, a senha não pode ser alterada." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "A conta {0} foi adicionada ao grupo {1}." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "A conta {0} foi alterada para o grupo {1}." -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "Conta necessária! Por favor, use {0}register ou entre com {0}login para jogar!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Conta removida com sucesso." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "Usuários REST ativos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - Bane o item especificado." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "add - Adiciona um novo grupo." -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "add - Bane o projétil especificado." -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "add - Bane o bloco especificado." -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "{0} foi adicionado à whitelist." -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "Adicionado buff em {0} NPC de modo anormal." -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "Adicionado o grupo {0} para {1}." -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "Adicionado o usuário {0} para {1}." -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "addperm - Adiciona permissões a um grupo." @@ -1310,16 +1310,16 @@ msgstr "addperm - Adiciona permissões a um grupo." msgid "AddUser SQL returned an error ({0})" msgstr "O SQL para AddUser retornou um erro ({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "Atalhos de {0}{1}: {0}{2}" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "Todos os NPCs vivos (excluindo NPCs da cidade) no servidor serão assassinados se você não inserir um nome ou ID." -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "todos os chefes" @@ -1327,162 +1327,162 @@ msgstr "todos os chefes" msgid "All done! :)" msgstr "Concluído!" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "Todos os tokens REST foram destruídos." -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "Memória alocada: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Permite que um grupo use um item." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - Permite que um grupo use um projétil." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow - Permite que um grupo coloque um bloco." -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "allow - Permite o usuário a uma região." -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "allowg - Permite um grupo de usuários a uma região." -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "Árvore de âmbar" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "Árvore de ametista" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "Uma conta foi detectada no banco de dados do usuário, mas setup-code.txt ainda está presente." -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Ocorreu uma exceção durante a recuperação do banco de dados: {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Ocorreu uma exceção durante a transação do banco de dados: {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "Ocorreu uma exceção ao executar um comando." -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Um identificador para um nome de personagem." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "Um identificador para um nome de usuário TShock" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "Um identificador para um UUID." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "Um identificador para um endereço IP no formato octet. Ex: '{0}'." -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Uma verificação de atualização foi colocada na fila. Se uma atualização estiver disponível, você será notificado em breve." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "Sintaxe Inconveniente" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "Irritando {0} por {1} segundos." -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Irrita um jogador por um período de tempo." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "Ponto REST solicitado anonimamente: {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "O anti-construção foi desativado." -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "O anti-construção foi ativado." -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "Argumentos: add [nome do warp], del [nome do warp], lista [page]." -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "Argumentos: send [player] [nome do warp], hide [nome do warp] [Enable(true/false)]." -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "Autenticado como {0} com sucesso." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "AutoSave Desativado" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "AutoSave Ativado" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Salvamento automático foi desativado" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Salvamento automático foi ativado" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "O salvamento automático está desativado no momento" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Salvamento automático está ativado no momento" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "Comandos de banimento disponíveis:" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "Identificadores disponíveis ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "Subcomandos de Região disponíveis ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "Subcomandos REST disponíveis:" @@ -1499,1039 +1499,1059 @@ msgstr "Falha ao fazer a cópia de segurança!" msgid "Backup Thread" msgstr "Tópico de Recuperação" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "Backups Desativados" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "Backups Ativados" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Tentativa de login inválida." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "banir {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "banir {0} " -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "ban {0} [Flags]" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "Banimento {0} foi revogado por {1}." -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "Banimento {0} acaba de ser marcado como expirado." -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "Ban Add Sintaxe" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "Banimento adicionado. Número de Bilhete {0} foi criado para o identificador {1}." -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Banimento adicionado. Número de Bilhete: {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "Ban Del Sintaxe" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "Ban Details Sintaxe" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "Ban List Sintaxe" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Banimento removido." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Ban Usage Examples" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "{0} foi banido." -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "Projétil banido {0}." -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "Bloco banido {0}." -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "Banido: {0}" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "Banido." -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "Banimentos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "Árvora comum" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "Betsy" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "A Lua Sangrenta foi definida para {0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "A Lua Sangrenta está: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "Árvore boreal" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "Bouncer / HandleNpcTalk rejeitado por bouncer fora dos limites de {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "Bouncer / HandleNpcTalk rejeitado por aceleração bouncer de {0}" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "Bouncer / OnChestItemChange rejeitado por incompatibilidade de baú de {0}" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "Bouncer / OnChestItemChange rejeitado por desativação de {0}" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "Bouncer / OnChestItemChange rejeitado por verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "Bouncer / OnChestItemChange rejeitado por proteção de região? de {0}" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "Bouncer / OnChestOpen rejeitado por desativação de {0}" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "Bouncer / OnChestOpen rejeitado por verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "Bouncer / OnChestOpen rejeitado por verificação de região de {0}" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "Bouncer / OnFishOutNPC rejeitado por não encontrar projéteis de boia ativos! - De {0}" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "Bouncer / OnFishOutNPC rejeitado por não usar uma vara de pesca! - De {0}" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "Bouncer / OnFishOutNPC rejeitado pelo NPC não estar na lista de NPCs pescáveis! - De {0}" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "Bouncer / OnFishOutNPC rejeitado por verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "Bouncer / OnFishOutNPC rejeitou permissões de invocação de chefes de {0}" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing rejeitou a desativação de {0}" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing rejeitou item não colocado à mão de {0}" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing rejeitou permissões de {0}" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing rejeitou a verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing rejeitou posicionamento de bloco válido de {0}" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "Bouncer / OnGemLockToggle posicionamento inválido/deadmod de {0}" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "Bouncer / OnGemLockToggle rejeitou a verificação de limites de {0}" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "Bouncer / OnGemLockToggle rejeitou a desativação de {0}" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "Bouncer / OnGemLockToggle rejeitou a verificação de permissões de {0}" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "Bouncer / OnGetSection rejeitou o nome de jogador vazio." -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "Bouncer / OnGetSection rejeitou o pacote GetSection de {0}" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "Bouncer / OnHealOtherPlayer 0.2 verificados de {0}" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "Bouncer / OnHealOtherPlayer rejected desativado/suprimido de {0}" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "Bouncer / OnHealOtherPlayer rejeitado de curar outro limite de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "Bouncer / OnHealOtherPlayer rejeitou verificações nulas" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "Bouncer / OnItemDrop rejeitado por tentativa de derrubada de {0}" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "Bouncer / OnItemDrop rejeitado por desativação de {0}" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "Bouncer / OnItemDrop rejeitado por verificação de item banido derrubado / verificação de pilha máxima / verificação de pilha mínima de {0}" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "Bouncer / OnItemDrop rejeitado por verificação de alcance duplicado de {0}" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "Bouncer / OnItemDrop rejeitado por verificação de derrubar item/pegar item de {0}" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "Bouncer / OnItemDrop rejeitado por verificação de prefixo de {0}" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "Bouncer / OnItemDrop rejeitado por verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "Bouncer / OnItemDrop rejeitado por furtividade de {0}" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "Bouncer / OnKillMe rejeitou o texto de morte de comprimento inválido de {0}" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "Bouncer / OnKillMe rejeitou a mensagem de morte personalizada de {0}" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "Bouncer / OnKillMe rejeitou o dano alto de {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "Bouncer / OnKillMe rejeitou a verificação de índice de {0}" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "Bouncer / OnLiquidSet rejeitou a permissão de construção de {0}" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "Bouncer / OnLiquidSet rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "Bouncer / OnLiquidSet rejeitado por limite de líquido de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "Bouncer / OnLiquidSet rejeitou a verificação inválida de {0}" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "Segurador / OnLiquidSet rejeitou o tipo líquido {0} de {1} segurando {2}" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "Bouncer / OnLiquidSet rejeitou a verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "Bouncer / OnLiquidSet rejeitou o acelerador de {0}" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "Bouncer / OnMassWireOperation rejeitou permissões de construção de {0}" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "Bouncer / OnMassWireOperation rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "Bouncer / OnMassWireOperation rejeitou o posicionamento válido de {0}" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "Bouncer / OnNewProjectile por favor relate ao tshock sobre isso! normalmente isto é uma rejeição de {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "Bouncer / OnNewProjectile por favor relate ao tshock sobre isso! normalmente isto é uma rejeição de {0} {1} (golf)" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "Bouncer / OnNewProjectile rejeitado por acima do limite de projéteis de {0}" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "Bouncer / OnNewProjectile reitado por IA de bouncer modificada de {0}." -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "Bouncer / OnNewProjectile rejeitado por bouncer de projétil Zenith modificado de {0}." -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "Bouncer / OnNewProjectile rejeitado por aceleração de bouncer de {0}" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "Bouncer / OnNewProjectile rejeitado por desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "Bouncer / OnNewProjectile rejeitado por projétil hostil de {0}" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "Bouncer / OnNewProjectile rejeitado por verificação de permissão de {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile rejeitado por limite de criação de projétil de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile rejeitado por limite de dano de projétil de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "Bouncer / OnNewProjectile rejeitado por lápides de {0}" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "Bouncer / OnNewProjectile rejeitado por verificação estranha de {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "Bouncer / OnNPCAddBuff rejeitou buff anormalf ({0}, dura por {4}) adicionado a {1} ({2}) de {3}." -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "Bouncer / OnNPCAddBuff rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "Bouncer / OnNPCAddBuff rejeitado npc nulo de {0}" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "Bouncer / OnNPCAddBuff rejeitou a atualização de NPC fora dos limites de {0}" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "Bouncer / OnNPCStrike rejeitado por aeleração bouncer de {0}" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "Bouncer / OnNPCStrike rejeitado por limite de dano de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "Bouncer / OnNPCStrike rejeitado por desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "Bouncer / OnNPCStrike rejeitado por verificações de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "Bouncer / OnPlaceChest / rejeitado por estilo de local inválido de {0}" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por verificação inválida de {0}" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por permissão inválida de {0}" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por verificação de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por verificação estranha de {0}" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "Bouncer / OnPlaceChest rejeitado por verificação de colocação estranha de {0}" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "Bouncer / OnPlaceItemFrame rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "Bouncer / OnPlaceItemFrame rejeitou permissões de {0}" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "Bouncer / OnPlaceItemFrame rejeitou verificações de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceItemFrame rejeitou posicionamento de bloco válido de {0}" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "Bouncer / OnPlaceObject rejeitou criação/seleção de bloco estranha de {0}" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "Bouncer / OnPlaceObject rejeitou Cajado do Renascimento de apenas colocar mudas {0}" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "Bouncer / OnPlaceObject rejeitou blocos banidos de {0}" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "Bouncer / OnPlaceObject rejeitou pessoas mortas não fazem coisas de {0}" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "Bouncer / OnPlaceObject rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "Bouncer / OnPlaceObject rejeitou contêineres falsos de {0}" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "Bouncer / OnPlaceObject rejeitou um loop louco de {0}" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "Bouncer / OnPlaceObject rejeitou dados de bloco nulos de {0}" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "Bouncer / OnPlaceObject rejeitou o posicionamento de objeto com estilo inválido {1} (esperado {2}) de {0}" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "Bouncer / OnPlaceObject rejeitou bloco fora dos limites de {0}" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "Bouncer / OnPlaceObject rejeitou bloco fora dos limites x de {0}" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "Bouncer / OnPlaceObject rejeitou bloco fora dos limites y de {0}" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "Bouncer / OnPlaceObject rejeitou verificações de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "Bouncer / OnPlaceObject rejeitou criador de borracha eu não acredito que não é borracha! de {0}" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "Bouncer / OnPlaceObject rejeitou limite de posicionamento de bloco de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "Bouncer / OnPlaceObject rejeitou posicionamentos válidos de {0}" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "Bouncer / OnPlaceTileEntity rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "Bouncer / OnPlaceTileEntity rejeitou permissões de {0}" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "Bouncer / OnPlaceTileEntity rejeitou verificações de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceTileEntity rejeitou posicionamento de bloco válido de {0}" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "Bouncer / OnPlayerAnimation rejeitado por verificado de {0}" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "Bouncer / OnPlayerAnimation rejeitado por aceleração de {0}" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: o buff não pode ser aplicado por tanto tempo" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: buff não pode ser aplicado a não-remetentes" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: buff não pode ser aplicado sem pvp ativado" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: buff não está na lista branca" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: tipo de buff inválido" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: o remetente está desativado" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: remetente está sendo acelerado" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: remetente não está na faixa de destino" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: ID de destino fora dos limites" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "Bouncer / OnPlayerBuff rejeitou {0} ({1}) aplicar buff {2} a {3} por {4} ticks: o alvo é nulo" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "Bouncer / OnPlayerDamage rejeitou mensagem de morte personalizada de {0}" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "Bouncer / OnPlayerDamage rejeitou limite de dano de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "Bouncer / OnPlayerDamage rejeitou limite de dano2 de {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "Bouncer / OnPlayerDamage rejected desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "Bouncer / OnPlayerDamage rejeitou hostil de {0}" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "Bouncer / OnPlayerDamage rejeitou verificação nula" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "Bouncer / OnPlayerDamage rejeitou verificações de alcance de {0}" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "Bouncer / OnPlayerDamage rejeitou aceleração de {0}" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "Bouncer / OnPlayerPortalTeleport rejeitou desativado/aceleração de {0}" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "Bouncer / OnPlayerPortalTeleport rejeitou teleporte fora dos limites de {0}" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "Bouncer / OnPlayerPortalTeleport rejeitou teleporte inacessível de {0}" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "Bouncer / OnPlayerUpdate *teria sido rejeitado* de (ultima posição de rede zero) {0}" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "Bouncer / OnPlayerUpdate force kicked (tentativa de definir a velocidade para +/- 50000) de {0}" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "Bouncer / OnPlayerUpdate force kicked (tentativa de definir a velocidade para infinita) de {0}" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "Bouncer / OnPlayerUpdate force kicked (tentativa de definir a velocidade para NaN) de {0}" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "Bouncer / OnPlayerUpdate rejeitado por (??) {0}" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "Bouncer / OnPlayerUpdate rejeitado por (abaixo ??) {0}" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "Bouncer / OnPlayerUpdate rejeitado por (cadáveres não se movem) {0}" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "Bouncer / OnPlayerUpdate rejeitado por (comprimento do inventário) {0}" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "Bouncer / OnPlayerUpdate rejeitado por (verificação de posicionamento) {0}" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "Bouncer / OnPlayerZone rejeitado por {0}" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "Bouncer / OnProjectileKill rejeitado por aceleração de bouncer de {0}" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "Bouncer / OnProjectileKill rejeitado por desativado de {0}" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "Bouncer / OnProjectileKill rejeitado por índice de projéteis negativo de {0}" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "Bouncer / OnReleaseNPC rejeitou liberação de npc de {0}" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "Bouncer / OnReleaseNPC rejeitou fora dos limites de {0}" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "Bouncer / OnReleaseNPC rejeitou aceleração de {0}" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "Bouncer / OnReleaseNPC liberou uma criatura diferente de {0}" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (eixo) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (limite de baú) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (martelo) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (martelo2) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "Bouncer / OnTileEdit rejeitado por (bobina de corda inconcebível) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (ms1) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (pdm) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (picareta) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "Bouncer / OnTileEdit rejeitado por (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (tb) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por (posicionamento de bloco válido) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por atuador/presserator {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por construção de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por desativado de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por editData fora dos limites {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por explosivos/fusíveis de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por gelo/construção de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por lugar do fio de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por permissão de corte sts de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por acelerador de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit rejeitado por limite de morte de bloco de {0}, (valor: {1})" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit rejeitado por limite de posicionamento de bloco de {0}, (valor: {1})" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "Bouncer / OnTileEdit rejeitado por posicionamento de bloco não correspondente ao item selecionado createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por usar vara de gelo mas não colocar bloco de gelo {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "Bouncer / OnTileEdit rejeitado por posicionamento de parede não correspondente ao item selecionado createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "Bouncer / OnTileEdit rejeitado por controle de fluxo estranho de {0}" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "Bouncer / OnTileEdit rejeitado por cortador de fio de {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "Bouncer / OnTileEdit super aceito por (bloco de gelo) {0} {1} {2}" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "Bouncer / OnUpdateNPCHome rejeitou permissão de construção de casa para npc de {0}" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "Bouncer / OnUpdateNPCHome rejeitou verificações de alcance de {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "Bouncer / SendTileRect aceitou edição de mundo clientside de {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" -msgstr "Bouncer / SendTileRect processando uma atualização de conversão de bloco - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "Bouncer / SendTileRect processando uma atualização de conversão de parede - [{0}] -> [{1}]" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "Bouncer / SendTileRect reimplementado por carbonara de {0}" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "Bouncer / SendTileRect rejeitado por bloco banido" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "Bouncer / SendTileRect rejeitado por ser desativado de {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" -msgstr "Bouncer / SendTileRect rejeitado por não ter permissão para objeto de bloco de {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" -msgstr "Bouncer / SendTileRect rejeitado por tilemod não-vanilla de {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "Bouncer / SendTileRect rejeitado por aceleração de {0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "Bouncer / SendTileRectHandler - rejeitado objeto de bloco porque as dimensões do objeto estão fora do retrato do bloco (tamanho excessivo)" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "Transmissão: {0}" msgid "Broadcast: {0}: {1}" msgstr "Transmissão: {0}: {1}" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "Transmite uma mensagem para todos no servidor." -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "Sintaxe de Buff e Exemplo" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "Sintaxe de Açougueiro e Exemplo" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "Ignorar SSC está habilitado para a sua conta. Os dados SSC não serão carregados ou salvos." -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "Cacto" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "Não é possível definir como verdadeiro SqlColumn.DefaultCurrentTimestamp quando o MySqlDbType não é DataTime" @@ -2571,79 +2591,79 @@ msgstr "Não é possível definir como verdadeiro SqlColumn.DefaultCurrentTimest msgid "Cannot load module {0} as it does not derive from {1}" msgstr "Não foi possível carregar o módulo {0} , pois não deriva de {1}" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "Alguns projéteis foram ignorados para detecção de trapaças." -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "Mudou o máximo de surgimentos para {0} ." -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "Mudou o máximo de surgimentos para 5." -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "Mudou a taxa de surgimento para {0}." -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "Mudou a taxa de surgimento para 600." -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "Altera a senha do servidor." -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "Altera a velocidade do vento." -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "Altera o modo do mundo." -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "Altera a senha da sua conta." -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "Cor do chat para \"{0}\" é \"{1}\"." -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "Cor do chat para o grupo \"{0}\" definido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "Verifica atualizações do TShock" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "clear - Limpa os pontos de uma região temporária." -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "Limpar Sintaxe" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "Todos os usuários foram removidos da lista de conclusão de missões do pescador para hoje." -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "Limpa itens caídos ou projéteis." -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color - Altera a cor do chat de um grupo." -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "Atalhos de comando: {0}, {1}, {2}" @@ -2652,20 +2672,20 @@ msgstr "Atalhos de comando: {0}, {1}, {2}" msgid "Command failed, check logs for more details." msgstr "O comando falhou, verifique os logs para mais detalhes." -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "Comandos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "Comandos: add, del, hide, list, send, [warpname]." -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "Caminho de configuração deinido para {0}" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "Configuração, permissões e regiões recarregadas completamente. Algumas alterações podem exigir uma reinicialização do servidor." @@ -2673,20 +2693,20 @@ msgstr "Configuração, permissões e regiões recarregadas completamente. Algum msgid "Connect to the internet to figure out what to download?" msgstr "Conectar-se à internet para descobrir o que baixar?" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "Conectar via proxy não é permitido." -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "Uso correto: {0}overridessc\\{0}ossc " -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "Palmeira corrompida" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2698,78 +2718,78 @@ msgstr "Não foi possível aplicar o caminho de log / formato de log, os padrõe msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "Não foi possível encontrar uma biblioteca de banco de dados (provavelmente Sqlite3.dll)" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "Não foi possível encontrar um warp chamado {0} para ser excluído." -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "Não foi possível encontrar nenhum jogador chamado \"{0}\"" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "Não foi possível encontrar nenhum jogador chamado \"{0}\"." -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "Não foi possível encontrar nenhum jogador chamado \"{0}\"" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "Não foi possível encontrar o grupo {0}" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "Não foi possível encontrar o jogador {0}." -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "Não foi possível encontrar a região especificada" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "Não foi possível encontrar warp especificado." -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "Não foi possível encontrar a região {0}." -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "Não foi possível encontrar o jogador especificado. Verifique se você está com a ortografia correta." -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "Não foi possível renomear {0}!" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "Tentativa de travamento através de um volume longo de chat" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "Cria uma tabela de referência para os tipos de dados Terraria e o sistema de permissão TShock na pasta do servidor." -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "Cria: com a senha como parte do grupo proprietário." @@ -2782,26 +2802,26 @@ msgstr "CreativePowerHandler recebeu solicitação de verificação de permissã msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "CreativeUnlocksHandler recebeu uma requisição de desbloqueio non-vanilla. Valor do campo aleatório: {0} mas deve ser 0 de {1}" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "Palmeira de carmesim" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "Surgimento máximo atual: {0}." -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "Taxa de surgimento atual: {0}." -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "Tentativa de exploração de falha de pacote da Morte: Dano {0}" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "Motivo da morte fora dos limites normais." @@ -2814,87 +2834,90 @@ msgstr "Morte resulta em banimento" msgid "Death results in a kick" msgstr "Morte resulta em expulsão" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "define - Define uma região com o nome fornecido." -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "del - Exclui um grupo." -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "del - Remove o banimento de um item." -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "del - Remove o banimento de um projétil." -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "del - Remove o banimento de um bloco." -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "delete - Exclui uma região especificada." -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "A região \"{0}\" foi excluída." -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "delperm - Remove permissões de um grupo." -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "Palmeira do deserto" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "destroytokens - Destrói todos os tokens REST atuais." -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "Detectado DOOM definido para ON posição." -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "Árvore de diamante" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "Modo de halloweween desativado." -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "Modo do evento de Natal desativado." -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "Desativado. Você precisa digitar {0}login para carregar seus dados salvos." -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "Desativado. Você demorou muito com uma armadura banida." -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "Desativado. Você demorou muito com pilhas de itens hackeados." -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "disallow - Desautoriza um grupo de usar o item." -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "disallow - Desautoriza um grupo de usar o projétil." -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "disallow - Desautoriza um grupo de usar o bloco." @@ -2903,157 +2926,157 @@ msgstr "disallow - Desautoriza um grupo de usar o bloco." msgid "Download and install the given packages?" msgstr "Baixar e instalar os pacotes indicados?" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "Duque Peixe-dragão" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "Árvore de madeira do ébano" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "Árvore de esmeralda" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "Evento de halloween ativado." -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "Evento de natal ativado." -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "Permite iniciar e interromper vários eventos mundiais." -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "Erro ao recarregar os grupos: {0}" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "Erro: ambos os nomes são iguais." -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "Everscream" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "Exemplo de uso: {0}" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "Exemplo de uso: {0} \"{1}\" \"{2}\"" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "Exemplo de uso: {0} \"{1}\" {2}" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "Exemplo de uso: {0} {1}" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "Exemplo de uso: {0} {1} {2}" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "Exemplo de uso: {0} {1} {2} {3}" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "Exemplo de uso: {0} {1} {2} {3} {4}" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "Exemplo de uso: {0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "Exemplo: /sudo /ban add jogador 2d Hack." -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "Exemplos: {0}warp add [nome do warp], {0}warp hide [nome do warp] true, {0}warp [nome do warp]." -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "Executa um comando como o super admin." -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "Tentativa de exploit detectada!" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "Falha ao adicionar banimento por identificador: {0}." -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "Falha ao adicionar banimento. {0}" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "Falha ao adicionar o grupo {0}." -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "Falha ao excluir o grupo {0}." -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "Falha ao encontrar qualquer usuário por esse nome na lista." -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "Falha ao remover o banimento." -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "Falha ao renomear grupo {0}." -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "Falha ao renomear a região." -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "Falha ao sombrear os padrões de polígono." -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "Falha ao atualizar o grupo \"{0}\"." -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "Falha ao carregar os dados do seu personagem para o servidor. Você está logado em uma conta?" @@ -3061,442 +3084,452 @@ msgstr "Falha ao carregar os dados do seu personagem para o servidor. Você est msgid "Fatal Startup Exception" msgstr "Exceção de inicialização fatal" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "Exceção de inicialização do TShock Fatal: falha ao conectar ao banco de dados MySQL. Veja exceção interna para detalhes." -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "FetchHashedPasswordAndGroup SQL retornou um erro: {0}" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "Sintaxe de Fogos de Artifício" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "Por exemplo, 1d e 10h-30m+2m são ambos strings de tempo válidas, mas 2 não." -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "Para mais informações, use {0} {1} ou {2} {3}" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "Força a atualização imediata de todos os líquidos." -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "Deu {0} {1} {2}." msgstr[1] "Deu {0} {1} {2}s." -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "Deu {0} {1}." msgstr[1] "Deu {0} {1}s." -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "GetDataHandlers / HandleCatchNpc captura zero {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "GetDataHandlers / HandleCatchNpc rejeitou captura de npc {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "GetDataHandlers / HandleChestActive rejeitou a verificação de permissão de construção e região {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "GetDataHandlers / HandleChestItem rejeitou pilhas máximas {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "GetDataHandlers / HandleDoorUse rejeitou a verificação de lacuna de porta {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "GetDataHandlers / HandleDoorUse rejeitou porta fora de alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "GetDataHandlers / HandleDoorUse rejeitou verificação tipo 0 5{0}" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "GetDataHandlers / HandleGetSection rejeitou slot reserva" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "GetDataHandlers / HandleKillPortal rejeitou a verificação de incompatibilidade de dono {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "GetDataHandlers / HandleNpcStrike rejeitou a invocação de Cultista de {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "GetDataHandlers / HandleNpcStrike rejeitou a invocação de Imperatriz da Luz de {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "GetDataHandlers / HandleNpcStrike rejeitou um golpe a npc {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "GetDataHandlers / HandleNpcTalk rejeitou conversar com npc {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "GetDataHandlers / HandleNpcTeleportPortal rejeitou não pensar com portais {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "GetDataHandlers / HandleNpcTeleportPortal rejeitou verificação nula {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted pacote surpresa! Alguém avise a equipe TShock! {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "GetDataHandlers / HandleOldOnesArmy rejeitou permissões {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "GetDataHandlers / HandleOldOnesArmy rejeitou aceleração {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "GetDataHandlers / HandlePaintTile rejeitou a verificação de alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "GetDataHandlers / HandlePaintTTile rejeitou a consistência de seleção {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "GetDataHandlers / HandlePaintTTile rejeitado acelerador/permissão/verificação de alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "GetDataHandlers / HandlePaintWall rejeitou a verificação de alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "GetDataHandlers / HandlePaintWall rejeitou a consistência de seletor {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "GetDataHandlers / HandlePaintWall rejeitou acelerador/permissão/alcance {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "GetDataHandlers / HandlePlayerBuffList tomou conta do evento e enviou os dados {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" -msgstr "GetDataHandlers / HandlePlayerBuffList zerou o buff do jogador devido ao estado abaixo de 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" +msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "GetDataHandlers / HandlePlayerHp rejeitado por estar acima do HP máximo {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "GetDataHandlers / HandlePlayerInfo rejeitado hardcore necessário" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "GetDataHandlers / HandlePlayerInfo rejeitou mediumcore necessário" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "GetDataHandlers / HandlePlayerInfo rejeitou comprimento do nome 0" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "GetDataHandlers / HandlePlayerInfo rejeitou a fase do plugin {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "GetDataHandlers / HandlePlayerInfo rejeitou softcore necessário" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "GetDataHandlers / HandlePlayerKillMeV2 foi expulso com dificuldade {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "GetDataHandlers / HandlePlayerKillMeV2 ssc deletar {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "GetDataHandlers / HandlePlayerMana rejeitou o máximo de mana {0} {1}/{2}" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "GetDataHandlers / HandlePlayerSlot rejeitado ignorar pacotes ssc" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "GetDataHandlers / HandlePlayerTeam rejeitou mudança de time rápida {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "GetDataHandlers / HandlePlayerAtualizar Delta da posição inicial {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "GetDataHandlers / HandlePlayerZone rejeitou verificação nula" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "GetDataHandlers / HandleProjectileKill permitiu uma exceção de Esqueletron Alfa {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "GetDataHandlers / HandleProjectileKill rejeitado projétil banido {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "GetDataHandlers / HandleProjectileKill rejeitou a lápide {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "GetDataHandlers / HandleSign rejeitou a placa na permissão de construção {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "GetDataHandlers / HandleSign rejeitou a verificação de alcance de placa {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "GetDataHandlers / HandleSignRead rejeitou fora dos limites {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "GetDataHandlers / HandleSpawn forçar teleporte 'vanilla spawn' {0}" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" -msgstr "GetDataHandlers / HandleSpawn forçar teleporte fase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" +msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "GetDataHandlers / HandleSpawn forçar teleporte fase 2 {0}" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "GetDataHandlers / HandleSpawn rejeitou o pedido de geração de jogador morto {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss rejeitou o chefe {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "GetDataHandlers / HandleSpawnBoss rejeitou aceleração bouner {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss rejeitou a invasão {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss rejeitou o animal de estimação {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "GetDataHandlers / HandleSpecial rejeitou a permissão de Relógio Solar Encantado (ForceTime) {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "GetDataHandlers / HandleSpecial rejeitou a permissão de Relógio Solar Encantado {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "GetDataHandlers / HandleSpecial rejeitado tipo 1 para {0}" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "GetDataHandlers / HandleSyncExtraValue rejeitou a verificação de modo perito/mestre {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "GetDataHandlers / HandleSyncExtraValue rejeitou a verificação de extensões {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "GetDataHandlers / HandleSyncExtraValue rejeitou o ID de NPC fora dos limites - NPC ID: {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "GetDataHandlers / HandleSyncExtraValue rejeitado npc é nulo - NPC ID: {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "GetDataHandlers / HandleSyncExtraValue rejeitado ordem {0},{1} vs {2},{3} que é {4}" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "GetDataHandlers / HandleSyncLoadout rejeitou índice de sincronização de arsenal {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "GetDataHandlers / HandleSyncLoadout rejeitou índice de sincronização de arsenal fora dos limites {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "GetDataHandlers / HandleTeleport rejeitou teleporte de NPC {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "GetDataHandlers / HandleTeleport rejeitado extensões p2p {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "GetDataHandlers / HandleTeleport rejeitou permissão buraco de minhoca p2p {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "GetDataHandlers / HandleTeleport rejeitado cajado tipo {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "GetDataHandlers / HandleTeleportationPotion rejeitado segurando o item incorreto {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "GetDataHandlers / HandleTeleportationPotion rejeitadas permissões {0} {1}" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "GetDataHandlers / HandleToggleParty rejeitado sem equipe {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "GetDataHandlers / HandleTogglePvp rejeitado mudança rápida {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "GetDataHandlers / HandleTogglePvp rejeitado índice de incompatibilidade {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "GetDataHandlers / OnPlayerUpdate rejeitado por jogador nulo." -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "GetDataHandlers / rejeitando jogador por prefixo de nome começar com tsi: ou tsn:." -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "GetDataHandlers / UpdateNPCHome rejeitou nenhuma permissão {0}" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "O SQL para GetUser retornou um erro ({0}" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "Dar Buff de Sintaxe e Exemplo" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Dá a outro jogador um buff ou debuff por um período de tempo. Colocar -1 para o tempo vai definir como 415 dias." -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "Dá um item a outro jogador." -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Dá um buff ou debuff a si mesmo por um determinado tempo. Colocar -1 para o tempo vai definir como 415 dias." -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "Dá um item a si mesmo." -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "Árvore de cogumelo brilhante" @@ -3505,163 +3538,163 @@ msgstr "Árvore de cogumelo brilhante" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "GolfPacketHandler: O jogador não criou um projétil de taco de golfe nos últimos 5 segundos! - De {0}" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "Grupo \"{0}\" não possui pai." -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "Grupo \"{0}\" não possui prefixo." -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "Grupo \"{0}\" não possui sufixo." -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "Grupo \"{0}\" está referenciando o grupo pai {1} que já faz parte de uma corrente de pai. Referência de pai removida." -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "Grupo \"superadmin\" está definido no banco de dados, mesmo sendo um grupo de nomes reservado." -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "O grupo {0} já existe" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "O grupo {0} foi criado com sucesso" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "O Grupo {0} foi excluído com sucesso" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "O grupo {0} não existe" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "O grupo {0} não existe." -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "O grupo {0} não existe" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "O grupo {0} não existe." -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "O grupo {0} foi excluído com sucesso." -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "O grupo {0} foi renomeado para {1}." -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "Grupo {0} está referenciando um grupo pai não existente {1}, referência pai foi removida." -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "Grupo {0} está referenciando a si mesmo como grupo pai; referência pai foi removida." -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "O grupo {0} foi não encontrado." -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "O grupo {0} foi atualizado com sucesso" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "O grupo {0} foi adicionado com sucesso." -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "Sub-comandos de Grupo ({{0}}/{{1}})" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "Grupos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "Gera plantas na sua localização." -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "Palmeira sagrada" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "HandleSyncCavernMonsterType: Jogador está tentando modificar o NPC cavernMonsterType; este é um pacote criado! - De {0}" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "Modo Hardmode está desativado no arquivo de configuração do servidor." -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "O modo Hardmode foi desativado." -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "O modo Hardmode foi ativado." -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "Ajuda do comando Curar" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "HealOtherPlayer tentativa de trapaça!" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "HealOtherPlayer foi excedido {0}." -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "Cura a vida e mana de um jogador." -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "Erva" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "Bata em um bloco para obter o nome da região." -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "Bata em um bloco para definir o ponto {0}." @@ -3672,67 +3705,71 @@ msgstr "Bata em um bloco para definir o ponto {0}." msgid "holding banned item: {0}" msgstr "segurando item banido: {0}" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "Se nenhuma quantidade for especificada, o padrão será curar o jogador alvo de acordo com sua vida máxima." -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estiver hackeando, por favor, reporte o limite de dano que foi desativado para TShock para que possamos melhorar isso!" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estiver hackeando, por favor, reporte o limite do HealOtherPlayer que eles foram desativados para TShock para que possamos melhorar isso!" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estiver hackeando, por favor, reporte o limite de criação de projéteis que eles foram desativados para TShock para que possamos melhorar isso!" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estava hackeando, por favor, reporte o limite de morte de blocos em que eles foram desativados para o TShock para que nós possamos melhorar isso!" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estava hackeando, por favor, reporte o limite de bloco líquido em que eles foram desativados para o TShock para que possamos melhorar isso!" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "Se este jogador não estava hackeando, por favor, reporte o limite de posição de blocos em que eles foram desativados para o TShock para que possamos melhorar isso!" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "Se isso não foi relacionado com o Esqueletron Alfa, por favor relate ao TShock o que aconteceu." -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "Se você estiver bloqueado de todas as contas de administrador, peça ajuda em https://tshock.co/" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "Se você não especificar um raio, ele usará um raio padrão de {0} ao redor do seu personagem." -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "Se você não especificar a duração, ela será o padrão para {0} segundos." -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "Se você esqueceu sua senha, entre em contato com o administrador para obter ajuda." -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "Se você colocar {0} como duração, ele usará o máximo tempo possível de 415 dias." -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "Se você entendeu, por favor digite {0}login e então digite {0}setup." @@ -3745,15 +3782,15 @@ msgstr "Se você quiser saber quais plugins precisam de quais dependências, pre msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "Se você quiser ver quais plugins precisam de dependências novamente, pressione E." -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "Se você está vendo essa mensagem e sabe o que aquele jogador fez, por favor reporte-o ao TShock para uma investigação maior." -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "Ignorando shrapnel por configuração.." -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "Nome ilegal: prefixos tsi: e tsn: são proibidos." @@ -3762,38 +3799,38 @@ msgstr "Nome ilegal: prefixos tsi: e tsn: são proibidos." msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "IlegalPerSe: Pacote de emoji rejeitado pela falsificação de ID. Esperado {0}, recebido {1} de {2}." -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "Teleportes de entrada agora estão ativados." -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "Teleportes de entrada agora estão desativados." -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "Código de configuração incorreto. Este incidente foi registrado." -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "Grupo pai infinito ({0})" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "info [-d] - Exibe várias informações sobre determinada região." -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "Informação sobre a Região \"{0}\" ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "Informações sobre o mundo atualmente em execução" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "Falha ao inserir o banimento no banco de dados." @@ -3801,165 +3838,165 @@ msgstr "Falha ao inserir o banimento no banco de dados." msgid "Install the plugins as specified in the plugins.json" msgstr "Instalar os plugins conforme especificado no plugins.json" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "Erro interno do servidor." -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxe inválida de adição de banidos. Consulte {0} para obter detalhes sobre como usar o comando {1}" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxe inválida de exclusão de banidos. Consulte {0} para obter detalhes sobre como usar o comando {1}" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxe inválida de detalhes de banidos. Consulte {0} para obter detalhes sobre como usar o comando {1}" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "Sintaxe inválida de lista de banidos. Consulte {0} para obter detalhes sobre como usar o comando {1}" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "O nível de criptografia BCrypt é inválido no arquivo de configuração! Criando um novo hash usando o valor padrão." -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "Quantidade de chefes inválida." -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "Tipo de chefe Inválido." -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "buff ID inválido!" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Comando inválido. Digite {0}help para uma lista de comandos válidos." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "Comando inválido." -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "NPC de destino inválido." -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "Jogador de destino inválido." -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "Evento inválido. Tipos de eventos válidos: {0}." -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "Rodada do evento da lua gélida inválida." -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "Grupo inválido." -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "Invasão inválida. Tipos de invasões válidos: {0}." -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "Tipo de item inválido!" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "Item Invalido." -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "Máximo de surgimento inválido. O intervalo aceitável é de {0} a {1}." -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "Tipo de Mob Inválido." -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "Tipo de Mob Inválido." -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "Modo de modo mundo inválido. Modos válidos: {0}" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "Número de página inválido. O número da página deve ser numérico." -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "Grupo pai inválido {0} para o grupo {1}" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "Grupo pai inválido {0} para o grupo {1}." -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "Senha inválida." -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "Jogador inválido!" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "Jogador inválido." -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "ID do projétil inválido!" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "ID do projétil inválido." -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "Rodada do evento da lua de abóbora inválida." -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "Região inválida \"{0}\"." @@ -3975,461 +4012,461 @@ msgstr "Configuração REST inválida: \n" "Por favor ajuste sua configuração e reinicie o servidor. \n" "Pressione qualquer tecla para sair." -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "Senha do servidor inválida." -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "Subcomando inválido! Digite {0}group help para obter mais informações sobre comandos válidos." -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "Subcomando inválido. Digite {0}itemban help para obter mais informações sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "Subcomando inválido. Digite {0}projban help para obter mais informações sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "Subcomando inválido. Digite {0}tileban help para mais informações sobre subcomandos válidos." -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "Sintaxe para cor inválido, esperado \"rrr,ggg,bbb\"." -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "Sintaxe inválida." -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}worldevent invasion [tipo de invasão] [onda da invasão]." -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}accountinfo ." -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "Sintaxe inválida. Sintaxe adequada: {0}aliases " -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "Sintaxe inválida. Sintaxe adequada:: {0}group add [permissões]." -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group addperm ." -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "Sintaxe inválida. Sintaxe adequada:: {0}group color [cor nova(000,000,000)]." -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group del ." -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group delperm ." -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group listperm [página]." -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group parent [novo nome de grupo pai]." -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group prefix [novo prefixo]." -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group rename ." -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}group suffix [novo sufixo]." -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "Sintaxe inválida. Sintaxe adequada: {0}help " -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "Sintaxe inválida. Sintaxe adequada: {0}item [quantidade] [nome/id prefixo]" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}itemban add ." -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}itemban allow ." -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}itemban del ." -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}itemban disallow ." -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "Sintaxe inválida. Exemplo de uso: {0}kick [motivo]." -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "Sintaxe inválida. Sintaxe adequada: {0}me " -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "Sintaxe inválida. Sintaxe adequada: {0}p " -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "Sintaxe inválida. Sintaxe adequada: {0}projban add " -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}projban allow ." -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}projban del ." -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}projban disallow ." -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region allow ." -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region allowg ." -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region define ." -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region delete ." -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region info [-d] [página]." -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region protect ." -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region remove ." -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region removeg ." -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "Sintaxe inválida. Sintaxe adequada: {0}region rename " -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "Sintaxe inválida. Sintaxe adequada: {0}region resize " -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}region tp ." -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "Sintaxe inválida. Sintaxe adequada: {0}region z <#>" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}register ." -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "Sintaxe inválida. Sintaxe adequada: {0}renameNPC " -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "Sintaxe inválida. Sintaxe adequada: {0}serverpassword \"\"." -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}slap [dano]." -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}spawnboss [quantidade]." -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}spawnmob [quantidade]." -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tileban add ." -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tileban allow ." -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tileban del ." -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tileban disallow ." -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tp [jogador 2]." -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tp ." -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tpnpc ." -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}tppos ." -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}userinfo ." -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp [command] [arguments]." -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp [name] or {0}warp list ." -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp add [name]." -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp del [name]." -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp hide [name] ." -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "Sintaxe inválida. Exemplo de uso: {0}warp send [player] [warpname]." -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." -msgstr "Sintaxe inválida. Sintaxe adequada: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." +msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}worldevent ." -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "Sintaxe inválida. Sintaxe adequada: {0}worldmode ." -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "Sintaxe inválida. Sintaxe adequada: /region protect ." -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "Sintaxe inválida. Sintaxe adequada: /region set <1/2>." -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "Jogador inválido." -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "Número de Ticket inválido. Consulte {0} para detalhes de como usar o comando {1}" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "ID de bloco inválido." -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "Sequência de tempo inválida! Formato adequado: _d_h_m_s, com pelo menos um especificador de tempo." -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "Sequência de tempo inválida. Formato adequado: hh:mm, Em 24 horas." -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "Tipo Inválido: '{0}'" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "Sintaxe de usuário inválida. Tente {0}user help." -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "Nome de warp inválido. Os nomes 'list', 'hide', 'del' e 'add' são reservados para comandos." -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." -msgstr "Velocidade de vento inválida." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." +msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "Modo de mundo inválido. Modos válidos: {0}" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "Endereço IP: {0}." -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Subcomandos de exclusão de itens ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "Itens banidos ({{0}}/{{1}}):" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "Expulsou {0} por : '{1}'" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "Expulso através da web" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "Expulso: {0}" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "Sintaxe de morte e exemplo" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "Mata outro jogador." -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "Elimina NPCs hostis ou NPCs de certo tipo." @@ -4458,108 +4495,108 @@ msgstr "LandGolfBallInCupHandler: Bloco na posição X:{0} Y:{1} não é um bura msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "LandGolfBallInCupHandler: Posição X e Y estão fora dos limites! - De {0}" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "As lanternas caíram." -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "As lanternas subiram." -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "Os líquidos já se instalam." -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "list - Lista de todas as regiões." -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "list [página] - Lista todos os itens banidos." -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "list [página] - Lista todos os projéteis banidos." -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "list [página] - Lista todos os blocos banidos." -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "list [página] - Lista de grupos." -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "Sintaxe de Lista de Jogadores Online" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "Ouvindo no IP {0}." -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "Ouvindo na porta {0}." -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "listperm [página] - Lista as permissões de um grupo." -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "Lista comandos ou ajuda com eles." -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "listusers - Lista todos os usuários REST e seus tokens ativos atuais." -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "Carregando o arquivo de configuração dedicado: {0}" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "A localização de {0} é ({1}, {2})." -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "Exibição de Log desativada." -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "Exibição de Log ativada." -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "O caminho do registro foi definido para {0}" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "Falha ao tentar login - veja a mensagem acima." -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "Conectar-se antes de entrar habilitado. Usuários podem ser solicitados para obter uma senha de uma conta específica invés de uma senha de servidor ao conectar." -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "Conexão usando UUID ativado. Usuários se conectam automaticamente via UUID." -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "Entra em uma conta." -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "Desconecta você da sua conta atual." -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "Nome da máquina: {0}" @@ -4568,7 +4605,7 @@ msgstr "Nome da máquina: {0}" msgid "Make sure that you trust the plugins you're installing." msgstr "Certifique-se de confiar nos plugins que você está instalando." -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "Tentativa de portal malicioso." @@ -4576,102 +4613,102 @@ msgstr "Tentativa de portal malicioso." msgid "Manage plugins and their requirements" msgstr "Gerenciar plugins e suas exigências" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "Gerencia grupos." -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "Gerencia itens banidos." -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "Gerencia jogadores banidos." -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "Gerencia projéteis banidos." -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "Gerencia regiões." -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "Gerencia o API REST." -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "Gerencia a whitelist do servidor." -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "Gerencia blocos banidos." -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "Gerencia contas de usuários." -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "Manipulando tipo de líquido desconhecido" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "Região {0} marcada como protegida." -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "Região {0} marcada como desprotegida." -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "Uso de memória: {0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "Mensagem: {0}: {1}: {2}" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "Um Meteoro foi invocado" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "Falta de comportamento." -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "Nome/ID de item faltando." -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "Parâmetro {0} ausente ou vazio" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "Parâmetro {0} ausente ou inválido" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "Nome de usuário faltando." -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "Modo: {0}" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "Mais de um correspondente encontrado -- Incapaz de decidir qual está correto: " -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "Madeira Assustadora" @@ -4679,24 +4716,24 @@ msgstr "Madeira Assustadora" msgid "Msg ID not implemented" msgstr "ID de Msg não implementada" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "Múltiplas contas de usuário foram encontradas para {0} '{1}'" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "Ajuda do comando Silenciar" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "N/D" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "name [-u][-z][-p] - Mostra o nome da região em determinado ponto." -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "Nome: {0}" @@ -4706,33 +4743,33 @@ msgstr "Nome: {0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "NetModuleHandler recebeu uma tentativa de desbloquear um sacrifício enquanto não estava no modo jornada de {0}" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "Nunca." -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "O novo nome é muito grande!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "Novos mundos serão gerados com o tipo de mal {0}!" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "Nenhum comando associado." -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "Nenhum banimento encontrado com o número do ticket fornecido." -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "Nenhum comando ou alias correspondente a \"{0}\" foi encontrado." -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "Nenhuma descrição disponível" @@ -4740,43 +4777,43 @@ msgstr "Nenhuma descrição disponível" msgid "No help available." msgstr "Nenhuma ajuda disponível." -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "Nenhum banimento correspondente encontrado." -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "Nenhum jogador foi encontrado correspondente a '{0}'." -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "Nenhum jogador correspondente \"{0}\"." -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "Nenhum prefixo correspondente \"{0}\"." -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "Nenhuma razão especificada." -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "Não são necessárias permissões especiais para esta rota." -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "Grupo não encontrado \"{0}\"." -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "Nenhum valor fornecido" @@ -4788,9 +4825,9 @@ msgstr "Não autorizado. O token fornecido tornou-se inválido devido a mudança msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "Não autorizado. O endpoint da API especificado requer um token, mas o token fornecido não era válido." +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "Não autorizado. O endpoint do API especificado requer um token." @@ -4799,17 +4836,17 @@ msgstr "Não autorizado. O endpoint do API especificado requer um token." msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "Não autorizado. Usuário \"{0}\" não tem acesso para usar o endpoint do API especificado." -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "Não está logado ou sintaxe inválida. Sintaxe adequada: {0}password ." -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "Não é possível atualizar o fator de trabalho porque o hash bcrypt está em um formato inválido." -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "Dano do NPC excedeu {0}." @@ -4818,22 +4855,27 @@ msgstr "Dano do NPC excedeu {0}." msgid "One moment..." msgstr "Aguarde..." -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "Um dos seus UserIDs não é utilizável: {0}" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "Jogadores Online ({0}/{1})" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "Sistema operacional: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "Sobrescreve caracteres de servidor para um jogador, temporariamente." @@ -4841,178 +4883,178 @@ msgstr "Sobrescreve caracteres de servidor para um jogador, temporariamente." msgid "Page {{0}} of {{1}}" msgstr "Página {{0}} de {{1}}" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "parent - Altera o grupo pai de um grupo." -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "Pai de \"{0}\" é \"{1}\"." -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "Pai do grupo \"{0}\" definido como \"{1}\"." -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "Pais do grupo {0} a {1} causariam loops na corrente pai." -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "Tentativa de alteração de senha para {0} falhou por um motivo desconhecido. Verifique o console do servidor para mais detalhes." -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "Senha alterada com sucesso para {0}." -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "A senha deve ter pelo menos {0} caracteres." -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "A senha deve ser maior ou igual a {0} caracteres." -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "PasswordUser retornou um erro: {0}." -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "Caminho: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "Árvore de madeira pérola" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "Permissões para {0} ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "Plantera" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "Jogador \"{0}\" deve executar uma tentativa de /login primeiro." -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "Jogador \"{0}\" precisa reconectar primeiro, pois ele precisa deletar seu lixo." -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "Jogador \"{0}\" já está logado." -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "Jogador {0} foi desativado por {1}." -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "O jogador {0} foi silenciado." -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "O jogador {0} teve o silêncio removido." -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "Jogador {0} coincide com {1} jogador" msgstr[1] "Jogador {0} coincide com {1} jogadores" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "Jogador {0} não encontrado." -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "Jogador {0} tentou sorratear {1} para o servidor!" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "Jogador {0} foi morto" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "Jogador {0} não foi encontrado" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "O dano do jogador excedeu {0}." -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "O jogador não tem espaços livres!" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "O jogador não tem permissão para criar projétil {0}." -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "Jogador não encontrado. Não foi possível expulsar o jogador." -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "Por favor {0}registre-se ou faça o login {0}para jogar!" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "Por favor, feche as janelas NPC antes de sair." -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "Por favor, insira um comando ou alias apropriado." -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "Por favor, tente um nome de usuário diferente." -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "Por favor use o {0}login após este processo." -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "Por favor, use os comandos a seguir para criar uma conta permanente." -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "Porta substituída pelo argumento de inicialização. Definir como {0}" @@ -5022,54 +5064,54 @@ msgstr "Porta substituída pelo argumento de inicialização. Definir como {0}" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "Possível problema no seu banco de dados - o Sqlite3.dll está presente?" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "prefix - Altera o prefixo de um grupo." -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "Prefixo de \"{0}\" é \"{1}\"." -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "Prefixo do grupo \"{0}\" definido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "Impede que um jogador fale." -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "Contagem de Proc: {0}" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "Projétil {0} não está banido." -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Subcomandos de projéteis banidos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "Projéteis banidos ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "Limite de criação de projétil excedido {0}." -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "O dano do projétil é maior que {0}." -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "protect - Define se os blocos dentro da região são protegidos ou não." @@ -5077,65 +5119,65 @@ msgstr "protect - Define se os blocos dentro da regiã msgid "Protected regions at this point: " msgstr "Regiões protegidas neste ponto: " -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "Protegido: {0}." -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "Uso rápido: {0} {1} \"Griefing\"" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "Rangecheck falhou para {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "Atingiu o limite HealOtherPlayer" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "Limite do HealOtherPlayer atingido." -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "Limite de tinta alcançada" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "Limite de criação de projétil atingido" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "Limite de projétil atingido" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "Limite de TileKill alcançado." -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "Limite de TileLiquid atingido" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "Limite de TileLiquid alcançado {0}." -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "Limite de TileLiquid atingido." -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "Limite do TilePlace atingido" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "Limite de TilePlace atingido." @@ -5143,62 +5185,62 @@ msgstr "Limite de TilePlace atingido." msgid "Read the message below to find out more." msgstr "Leia a mensagem abaixo para saber mais." -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "Motivo: {0}." -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "Tipo recebido '{0}, porém coluna '{1}' espera tipo '{2}'" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "Região \"{0}\" já existe." -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "Região \"{0}\" não existe" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "Região {0} já existe." -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "A região não está compartilhada com nenhum grupo." -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "A região não está compartilhada com nenhum usuário." -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "Proprietário da Região: {0}." -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "Os pontos de região precisam ser definidos primeiro. Use /region set 1 e /region set 2." -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "Região renomeada com sucesso!" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "Região redimensionada com sucesso!" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "O z da região agora é {0}" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "Regiões ({{0}}/{{1}}):" @@ -5206,62 +5248,62 @@ msgstr "Regiões ({{0}}/{{1}}):" msgid "Regions at this point: " msgstr "Regiões neste ponto: " -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "Registra uma conta para você." -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "RegisterUser retornou um erro: {0}." -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "A criatura liberada não foi a partir de seu item." -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "Recarrega o ficheiro de configuração." -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "remove - Remove um usuário de uma região." -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "Removeu {0} jogadores da lista de conclusão de missões do pescador de hoje." -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "Grupo {0} removido de {1}" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "Pai do grupo \"{0}\" foi removido." -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "Prefixo do grupo \"{0}\". foi removido." -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "Sufixo do grupo \"{0}\" foi removido." -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "Usuário {0} removido de {1}." -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "removeg - Remove um grupo de usuários de uma região." -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "Remove um jogador do servidor." @@ -5269,19 +5311,19 @@ msgstr "Remove um jogador do servidor." msgid "RemoveUser SQL returned an error" msgstr "RemoveUser SQL retornou um erro" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "rename - Altera o nome de um grupo." -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "rename - Renomeia a região selecionada." -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "Renomeia um NPC." -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "Responde a uma mensagem enviada para você" @@ -5294,7 +5336,7 @@ msgstr "O token solicitado foi destruído com sucesso." msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "RequestTileEntityInteractionHandler: Rejeitou um pacote devido à falta de permissões de construção! - De {0} | Posição X:{1} Y:{2}, Tipo de TileEntity: {3}, Tipo de bloco: {4}" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "Redefine a lista de usuários que concluíram uma missão de pescador nesse dia." @@ -5303,11 +5345,11 @@ msgstr "Redefine a lista de usuários que concluíram uma missão de pescador ne msgid "resetTime {0}, direct {1}" msgstr "resetTime {0}, direcionar {1}" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "resize - Redimensiona uma região." -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "Renasce a si mesmo ou a outro jogador." @@ -5315,43 +5357,43 @@ msgstr "Renasce a si mesmo ou a outro jogador." msgid "Retrying in 5 minutes." msgstr "Tentando novamente em 5 minutos." -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "Retorna a posição atual do usuário ou de um usuário especifico." -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "Mogno" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "Sintaxe de Foguete" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "Arremessa um jogador para cima. Requer SSC" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "Árvore de rubi" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "Árvore de cerejeira" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "Papai Noel NK1" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "Árvore de safira" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "Salva todos os personagens do servidor." -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "Salva o arquivo mundo." @@ -5359,36 +5401,36 @@ msgstr "Salva o arquivo mundo." msgid "Saving world..." msgstr "Salvando mundo..." -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "Semente: {0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "Envia uma mensagem para todos da sua equipe." -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "Envia uma mensagem para um jogador." -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "Envia todos os tiles do servidor para o jogador para ressincronizar o cliente com o estado atual do mundo." -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "Envia uma mensagem de ação para todos." -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "Envia você para o ponto de spawn do mundo." -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "Envia você ao seu ponto de spawn." -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "Console do servidor interrompido!" @@ -5400,7 +5442,7 @@ msgstr "O servidor está cheio" msgid "Server is full. No reserved slots open." msgstr "O servidor está cheio. Não há espaços reservados." -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "O servidor está desligando..." @@ -5408,47 +5450,47 @@ msgstr "O servidor está desligando..." msgid "Server map saving..." msgstr "Salvando mapa do servidor..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "Senha do servidor foi alterada para {0}." -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "O servidor está desligando: " -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "O servidor está desligando!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "O servidor está desligando." -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "Os personagens server side estão habilitados. Você precisa estar logado para jogar." -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "Os personagens server-side estão habilitados! Por favor {0}register ou {0}login para jogar!" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "Os dados de personagem server side de \"{0}\" foram substituídos por seus dados locais atuais." -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "Os personagens server side estão desabilitados." -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "set <1/2> - Define os pontos temporários da região." -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "Definir região {0}." @@ -5458,31 +5500,32 @@ msgstr "Definir região {0}." msgid "Set temp point {0}." msgstr "Definir ponto temporário {0}." -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "Define a posição do calabouço para sua localização." -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "Define o número máximo de NPCs." -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "Define a taxa de spawn dos NPCs." -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "Define o horário do mundo." -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "Define o ponto de spawn do mundo para o seu local." -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "Estabelecendo líquidos." -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "SetUserGroup SQL retornou um erro" @@ -5494,257 +5537,257 @@ msgstr "SetUserPassword SQL retornou um erro" msgid "SetUserUUID SQL returned an error" msgstr "SetUserUUID SQL retornou um erro" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "Árvore de madeira sombria" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "Compartilhe seu servidor, converse com os administradores e relaxe no GitHub e Discord. -- https://tshock.co/" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "Compartilhado com grupos: " -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "Compartilhado com: " -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "Mostra os pseudônimos de um comando." -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "Mostra informações sobre um jogador." -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "Mostra informações sobre um usuário." -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "Mostra informações sobre o mundo atual." -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "Mostra os jogadores atualmente conectados." -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "Mostra a mensagem do dia." -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "Mostra as informações do servidor." -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "Mostra as regras do servidor." -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "Mostra a versão do TShock." -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "Desliga o servidor enquanto salva." -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "Desliga o servidor sem salvar." -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "Desligando com segurança. Para forçar o desligamento, envie o SIGINT (CTRL + C) novamente." -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "Tamanho: {0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "Esqueletron" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "Esqueletron Alfa" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Ignorando o salvamento do SSC (devido a tshock.ignore.ssc) para {0}" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "Estapeia um jogador, causando dano." -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "A chuva de slime não pode ser ativada durante a chuva normal. Pare a chuva normal e tente novamente." -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "Desculpe, {0} já foi tomado por outra pessoa." -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "Desculpe, ocorreu um erro: {0}." -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "O Spawn foi definido em seu local." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "O Spawn agora está aberto." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "O Spawn agora está protegido." -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "Invocou {0} de {1} vez." msgstr[1] "Invocou {0} {1} vezes." -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "Invocou uma Parede de Carne." -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "Invoca um número de chefes ao seu redor." -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "Invoca um número de mobs ao seu redor." -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "Invoca fogos de artifício no jogador." -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "O endpoint do API especificado não existe. Consulte a documentação de uma lista de endpoints válidos." -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "Falha no registro SQL em: {0}. {1}" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "Falha ao inserir consulta do Log SQL: {0}" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "SSC deve estar habilitado para usar este comando." -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova a armadura {0} ({1}) e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova a Forja do Defensor {0} ({1}) e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remove a tintura {0} ({1}) e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova a tintura do item {0} ({1}) e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do Arsenal 1 e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do Arsenal 2 e então entre novamente.." -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do Arsenal 3 e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do Porquinho e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do cofre e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) da lixeira e então entre novamente." -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "Stack cheat detectado. Remova o item {0} ({1}) do Cofre do Vázio e então entre novamente." -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "Iniciou o evento da lua de sangue." -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "Iniciou o evento de lua cheia." -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "Iniciou um eclipse." -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "O parâmetro de inicialização ultrapassou o valor máximo de configuração de slot." -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "Parâmetro de inicialização overrode REST ativado." -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "Porta de parâmetro de inicialização overrode REST." -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "Token de parâmetro de inicialização overrode REST." -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "Parou um eclipse." -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "Parou o evento da lua sangue atual." @@ -5752,21 +5795,21 @@ msgstr "Parou o evento da lua sangue atual." msgid "Successful login" msgstr "Login bem-sucedido" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "suffix - Altera o sufixo de um grupo." -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "Sufixo de \"{0}\" é \"{1}\"." -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "Sufixo do grupo \"{0}\" definido como \"{1}\"." -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "Sincronizado!" @@ -5775,190 +5818,186 @@ msgstr "Sincronizado!" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "SyncTilePickingHandler: Posição X e Y estão fora dos limites do mundo! - De {0}" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "Teleportou {0} para {1}." -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "Teleportou {0} para você." -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "Teleportou todo mundo para {0}." -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "Teleportou todos para você." -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "Teleportado para {0}, {1}." -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "Teleportado para {0}." -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "Teleportado para o '{0}'." -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "Teleportado para o ponto de spawn do mapa." -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "Teleportado para o ponto de spawn (casa)." -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "Teleporta um jogador para outro jogador." -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "Teleporta um jogador para você." -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "Teletransporta você para um ponto de teletransporte ou gerencia warps." -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "Teleporta você para um npc." -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "Teleporta você para as coordenadas de bloco." -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "Temporariamente eleva você para Super Admin." -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "Define temporariamente o grupo de outro jogador." -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "Pontos temporários definidos para a região foram removidos." -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "Acesso ao sistema temporariamente concedido, para que você possa executar um comando." -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "Obrigado por usar o TShock para Terraria!" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "Esse grupo não existe." -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "O banimento é inválido porque já existe um banimento atual para este identificador." -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "O banimento não era válido por uma razão desconhecida." -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "O Cérebro de Cthulhu" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "O horário atual é {0}:{1:D2}." -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "O grupo de usuários padrão não pode ser encontrado." -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "O grupo de usuários padrão não pôde ser encontrado. Isso pode indicar um erro de digitação no arquivo de configuração, ou que o grupo foi renomeado ou excluído." -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "As coordenadas de destino fornecidas não se parecem com números válidos." -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "O warp de destino, {0}, não foi encontrado." -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "O Destruidor" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "O Guardião da Masmorra devolveu você ao seu ponto de spawn." - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "A posição do calabouço foi definida no seu local." -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "O Devorador de Mundos" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "A Imperatriz da Luz" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "O Olho de Cthulhu" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "O Holandês Voador" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "O Golem" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "O grupo {0} apareceu mais de uma vez. Mantendo as configurações de grupo atuais." -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "Não foi possível encontrar o grupo convidado." -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "O grupo de visitantes não pôde ser encontrado. Isso pode indicar um erro de digitação no arquivo de configuração, ou que o grupo foi renomeado ou excluído." -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "A Rainha de Gelo" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "O sistema de configuração inicial está desativado. Este incidente foi registrado." -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "O tipo de item {0} é inválido." -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "O Rei Geleia" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "O Cultista Lunático" @@ -5970,31 +6009,31 @@ msgstr "O método referenciado pelo LineFormatter lançou uma exceção. Consult msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "O método representado pela termFormatter lançou uma exceção. Consulte a exceção interna para obter detalhes." -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "O Senhor da Lua" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "As permissões foram adicionadas a todos os grupos do sistema." -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "As permissões foram removidas de todos os grupos do sistema." -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "Dados do personagem do jogador foram carregados com sucesso a partir da sua conexão inicial." -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "O Reibóbora" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "A Abelha Rainha" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "A Rainha Geleia" @@ -6006,7 +6045,7 @@ msgstr "O token de autenticação REST." msgid "The server is out of date. Latest version: " msgstr "O servidor está desatualizado. Última versão: " -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "A taxa de spawn fornecida está fora do alcance ou não é um número." @@ -6014,19 +6053,19 @@ msgstr "A taxa de spawn fornecida está fora do alcance ou não é um número." msgid "The specified token queued for destruction failed to be deleted." msgstr "O token especificado na fila para destruição não pôde ser excluído." -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "O jogador escolhido ainda não se conectou." -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "O usuário não pode ter seus dados carregados, porquê ele não é um jogador." -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "Os Gêmeos" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "O usuário {0} não existe! Portanto, a conta não foi excluída." @@ -6043,52 +6082,52 @@ msgstr "O valor deve ser maior que zero." msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "As versões de plugins que você solicitou não são compatíveis uns com os outros." -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "A Parede de Carne" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "O limite de baús no mundo foi atingido - incapaz de colocar mais." -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "Não há banimentos ativos no momento." -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "Não existem usuários REST ativos no momento." -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "Não existem identificadores disponíveis no momento." -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "Não existem itens banidos no momento." -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "Não existem projéteis banidos no momento." -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "Não há blocos banidos no momento." -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "Não há permissões para {0} no momento." -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "Não há jogadores online no momento." -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "Não há regiões definidas no momento." -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "Atualmente, não há warps definidos." @@ -6100,11 +6139,11 @@ msgstr "Não há regiões neste momento, ou não estão protegidas" msgid "There are no regions at this point." msgstr "Não há regiões neste momento." -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "Já existe uma Parede de Carne." -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "Ocorreu um erro ao processar seu login ou solicitação relacionada à autenticação." @@ -6121,267 +6160,267 @@ msgstr "Houve um problema ao ler packages.json." msgid "This is the plugin you requested to install." msgid_plural "These are the plugins you requested to install" msgstr[0] "Este é o plugin que você solicitou para instalar." -msgstr[1] "" +msgstr[1] "Estes são os plugins que você solicitou para instalar" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "Este token será exibido até ser desativado pela verificação. ({0}setup)" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "O bloco {0} não está banido." -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "Subcomandos de banimento de blocos ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "Banimentos de bloco ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "Limite de abates em blocos excedido {0}." -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "Limite de espaço de blocos excedido {0}." -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "Para buffar um jogador sem ele saber, use {0} ao invés de {1}" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "Para executar este comando silenciosamente, use {0} ao invés de {1}" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "Para se livrar de NPCs sem fazê-los derrubarem itens, use o comando {0}." -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "Para silenciar um jogador sem enviar anúncio global, use o comando com {0} ao invés de {1}" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "Para configurar o servidor, entre no jogo e digite {0}setup {1}" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "Habilita a proteção de construção." -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "Habilita o modo Natal (presentes, papai noel, etc.)." -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "Habilia o Modo Deus em um jogador." -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "Habilita o modo halloween (sacos de guloseimas, abóboras, etc.)." -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "Habilita a proteção do spawn." -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "Habilita o status hardmode do mundo." -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "Alterna quando receber ou ignorar sussurros de outros jogadores." -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "Alterna quando outras pessoas podem teleportar você" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "Alterna se você recebe logs do servidor." -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Muitas tentativas de login inválidas." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "Árvore de topázio" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "Tempo total do processador: {0}" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "tp - Teleporta você para o centro da região selecionada." -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "Tipos de árvores e outros disponíveis para uso. ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "Tentou crescer um {0}." -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "TShock {0} ({1}) em execução." -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "TShock Ban Help" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "TShock vem sem garantia e é um software gratuito." -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "TShock encontrou um problema do qual não consegue se recuperar. A seguinte mensagem pode ajudar a diagnosticar o problema." -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "Aviso do TShock: setup-code.txt ainda está presente, e o código localizado nesse arquivo será usado." -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "TShock foi encerrado incorretamente. Por favor, use o comando de saída no futuro para evitar isso." -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "O TShock irá desativar o sistema de configuração inicial e remover setup-code.txt já que não é mais necessário." -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "TShock: {0} {1}." -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "Digite {0}ban help identifiers {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "Digite {0}ban list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "Digite {0}group help {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "Digite {0}group list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "Digite {0}group listperm {1} {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "Digite {0}grow help {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "Digite {0}help {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "Digite {0}itemban help {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "Digite {0}itemban list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "Digite {0}login \"{1}\" {2} para entrar na sua conta." -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "Digite {0}login {1} para entrar na sua conta." -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "Digite {0}login para acessar sua conta usando seu UUID." -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "Digite {0}projban help {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "Digite {0}projban list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "Digite {0}region {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "Digite {0}region info {1} {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "Digite {0}region list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "Digite {0}rest listusers {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "Digite {0}tileban help {{0}} para mais subcomandos." -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "Digite {0}tileban list {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "Digite {0}warp list {{0}} para mais." -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "Digite {0}who {1} para mais informações." @@ -6390,82 +6429,95 @@ msgstr "Digite {0}who {1} para mais informações." msgid "Type / {{0}} for more." msgstr "Digite / {{0}} para mais informações." -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "Não foi possível encontrar nenhum buff chamado \"{0}\"" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "Não foi possível encontrar buffs chamados \"{0}\"" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "Não foi possível encontrar nenhum jogador chamado \"{0}\"" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "Não foi possível encontrar jogadores chamados \"{0}\"" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "Não foi possível iniciar {0} porque ele não está logado." -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "Não foi possível iniciar {0} porque ela não está logada." -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "Não foi possível analisar o comando '{0}' do jogador {1}." -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "Não foi possível analisar o comando. Por favor contate um administrador para assistência." -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "Não foi possível gerar uma Parede de Carne baseado no seu estado atual ou na sua localização atual." -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "Não foi possível verificar a senha hash para o usuário {0} ({1})" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "Desbanido {0}." -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "Projétil desbanido {0}." -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "Bloco desbanido {0}." -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "Comando de banimento desconhecido. Tente {0} {1}, {2}, {3}, {4}, {5}, ou {6}." -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "Planta desconhecida!" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "Direção do jogador não reconhecida" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "Até que o problema seja resolvido, o TShock não será capaz de começar (e irá falhar na inicialização)." @@ -6474,7 +6526,7 @@ msgstr "Até que o problema seja resolvido, o TShock não será capaz de começa msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "O servidor de atualização não respondeu com um OK. Mensagem do servidor: [erro {0}] {1}" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "UpdateLogin SQL retornou um erro" @@ -6484,78 +6536,78 @@ msgstr "UpdateLogin SQL retornou um erro" msgid "UpdateManager warning: {0}" msgstr "Alerta de UpdateManager: {0}" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "Envie as informações da conta quando você entrou no servidor com o os dados do personagem server side." -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "Uso: {0}tempgroup [tempo]" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "Uso: /sudo [comando]." -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "Uso: /uploadssc [nome de jogador]." -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "Use \"{0}worldevent rain slime\" para começar uma chuva de geleia!" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "Usar \"my query\" para os itens com espaços." -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "Use tsi:[número] ou tsn:[usuário] para distinguir entre IDs de usuário e nomes de usuário." -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "Usado para autentificar como Super Admin quando configurar o TShock pela primeira vez." -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "O usuário {0} '{1}' não existe" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "O usuário {0} já existe." -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "O usuário {0} não pode ser adicionado, verifique o console para mais detalhes." -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "Usuário {0} não pode ser adicionado. Verifique o console para mais detalhes." -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "O usuário {0} não existe." -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "A conta de usuário {0} já existe" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "A conta de usuário {0} não existe" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "Ajuda com comando de gerenciamento de usuário:" @@ -6565,130 +6617,130 @@ msgstr "Ajuda com comando de gerenciamento de usuário:" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "Nome de usuário ou senha podem estar incorretos ou essa conta pode não ter privilégios suficientes." -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "Usando {0} para implementação de bloco" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "Usando {0} em não-mel" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "Usando {0} em não-lava" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "Usando {0} em não-cintilante" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "Usando {0} em não-água" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "Usando {0} em não-água ou cintilante" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "Usando {0} para manipular líquido desconhecido {1}" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "Uso banido {0} para manipular líquido" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "Usando balde de mel banido sem permissões" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "Usando balde de lava banido sem permissões" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "Usando balde de água cintilante banido sem permissões" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "Usando balde de água banido sem permissões" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "O UUID não corresponde a este personagem." -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "Tipos de eventos válidos: {0}." -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "Tipos de invasão válidas quando invocar uma invasão: {0}." -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "Tipos de invasão válidas: {0}." -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "Modos de mundo válidos: {0}" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "O warp {0} já existe." -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "O warp {0} agora é privado." -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "O warp {0} agora é público." -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "Warp adicionado: {0}." -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "Warp excluído: {0}" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "Transportado para {0}." -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "Warps ({{0}}/{{1}}):" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "Bem-vindo ao TShock para Terraria!" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "Sintaxe de Sussurro" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "Árvore de salgueiro" @@ -6705,17 +6757,17 @@ msgstr "Mundo salvo ({0})." msgid "World backed up." msgstr "Mundo salvo." -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "Modo de mundo definido para {0}." -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "O nome do mundo será substituído por: {0}" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "O caminho do mundo foi definido para {0}" @@ -6729,48 +6781,48 @@ msgstr "Mundo salvo em ({0})" msgid "World saved." msgstr "Mundo salvo." -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "Você já está morto!" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "Você já está logado, e não pode entrar novamente." -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "Você está morto. Jogadores mortos não podem ir para casa." -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "Você foi silenciado!" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "Você foi silenciado." -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "Você não está mais no Modo Deus." -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "Você não está morto!" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "Você não está em uma equipe!" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "Você não está conectado. Portanto, você não pode sair." @@ -6778,157 +6830,161 @@ msgstr "Você não está conectado. Portanto, você não pode sair." msgid "You are not on the whitelist." msgstr "Você não está na whitelist." -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "Você está sendo irritado." -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "Você está agora no Modo Deus." -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "Você se buffou com {0} ({1}) por {2} segundos." -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "Você abateu {0} NPC." msgstr[1] "Você abateu {0} NPCs." -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "Você pode modificá-lo e distribuí-lo nos termos da GNU GPLv3." -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "Você pode usar '{0}sudo {0}{1}' para substituir esta verificação." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "Você pode usar {0} ao invés de {1} para incomodar um jogador silenciosamente." -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "Você pode usar {0} ao invés de {1} para executar este comando silenciosamente." -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "Você pode usar {0} ao invés de {1} para lançar um fogo de artifício silenciosamente." -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "Você pode usar {0} ao invés de {1} para lançar um jogador silenciosamente." -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "Você pode usar {0}{1} para alternar esta configuração." -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "Você pode usar {0}{1} para sussurrar para outros jogadores." -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "Você não pode usar o Modo Deus para um não jogador!" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "Você não pode curar um jogador morto!" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "Você não pode expulsar outro administrador." -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "Você não pode remover o grupo de convidados padrão." -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "Você não pode renascer o console do servidor!" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "Você não pode fazer login enquanto está sendo controlado." -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "Você não pode logar enquanto morto." -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "Você não pode fazer o login enquanto estiver usando um item." -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "Você não pode gerar itens banidos." -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "Você não pode usar o Relógio Solar Encantado porquê o tempo foi parado." -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "Você não pode sussurrar para si mesmo." -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "Você excluiu {0} item em um raio de {1}." msgstr[1] "Você excluiu {0} itens em um raio de {1}." -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "Você excluiu {0} NPC em um raio de {1}." msgstr[1] "Você excluiu {0} NPCs em um raio de {1}." -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "Você excluiu {0} projétil em um raio de {1}." msgstr[1] "Você excluiu {0} projéteis em um raio de {1}." -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "Você não colocou um nome de jogador." -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "Você morreu! Normalmente, você seria banido." -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "Você não tem acesso a este comando." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "Você não tem permissão para construir no ponto de spawn." -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "Você não tem permissão para construir nesta região." -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "Você não tem permissão para construir neste servidor." @@ -6936,7 +6992,7 @@ msgstr "Você não tem permissão para construir neste servidor." msgid "You do not have permission to contribute research." msgstr "Você não tem permissão para contribuir com a pesquisa." -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "Você não tem permissão para criar esse projétil." @@ -6956,15 +7012,15 @@ msgstr "Você não tem permissão para congelar o tempo do servidor." msgid "You do not have permission to freeze the wind strength of the server." msgstr "Você não tem permissão para congelar a força do vento do servidor." -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "Você não tem permissão para usar o Modo Deus em outro jogador." -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "Você não tem permissão para crescer este tipo de árvore" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "Você não tem permissão para machucar NPCs da Cidade." @@ -7009,12 +7065,12 @@ msgstr "Você não tem permissão para modificar a força do vento do servidor." msgid "You do not have permission to modify the world difficulty of the server." msgstr "Você não tem permissão para modificar a dificuldade do servidor." -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "Você não tem permissão para silenciar {0}" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "Você não possui permissão para executar esta ação." @@ -7022,24 +7078,24 @@ msgstr "Você não possui permissão para executar esta ação." msgid "You do not have permission to place actuators." msgstr "Você não tem permissão para colocar actuadores." -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "Você não tem permissão para colocar Sensores Lógicos." -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "Você não tem permissão para colocar este bloco." -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "Você não tem permissão para realocar NPCs da Cidade" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "Você não tem permissão para respawnar outro jogador." -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "Você não tem permissão para ver os IDs dos jogadores." @@ -7047,57 +7103,61 @@ msgstr "Você não tem permissão para ver os IDs dos jogadores." msgid "You do not have permission to send emotes!" msgstr "Você não tem permissão para enviar emotes!" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "Você não tem permissão para invocar mascotes." -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "Você não tem permissão para iniciar uma festa." -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "Você não tem permissão para começar invasões." -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "Você não tem permissão para iniciar o evento {0}." -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "Você não tem permissão para iniciar o Exército Antigo." -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "Você não tem permissão para invocar Chefões." -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "Você não tem permissão para invocar a Imperatriz da Luz." -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "Você não tem permissão para invocar o Cultista Lunático!" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "Você não tem permissão para teleportar todos os outros jogadores." -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "Você não tem permissão para teleportar todos os ogadores." -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "Você não tem permissão para teleportar outros jogadores." -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "Você não tem permissão para teleportar usando {0}." -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "Você não tem permissão para teleportar usando itens." @@ -7105,11 +7165,11 @@ msgstr "Você não tem permissão para teleportar usando itens." msgid "You do not have permission to teleport using pylons." msgstr "Você não tem permissão para teletransportar usando pilões." -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "Você não tem permissão para teletransportar usando Poções de Minhoca." -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "Você não tem permissão para teleportar." @@ -7117,203 +7177,219 @@ msgstr "Você não tem permissão para teleportar." msgid "You do not have permission to toggle godmode." msgstr "Você não tem permissão para habilitar o Modo Deus." -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "Você não tem permissão para enviar dados de personagem join-state server side de outro jogador" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "Você não tem permissão para usar o Relógio Solar Encantado." -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "Você inseriu um espaço após {0} ao invés de um comando. Digite {0}help para obter uma lista de comandos válidos." -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "Você não conseguiu alterar sua senha." -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "Você foi repreendido." -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "Você foi silenciado remotamente" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "Você teve o silêncio removido remotamente" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "Você foi desconectado da sua conta com sucesso." -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "Você buffou {0} com {1} ({2}) por {3} segundos!" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "Você alterou o grupo de {0}para {1}" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "Você alterou o grupo de {0}para {1} por {2}" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "Você perdeu no modo hardcore e seus itens foram perdidos para sempre." -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "Você arremessou {0} para o espaço." -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "Você se arremessou para o espaço." -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "Você silenciou {0} por {1}" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "Você respawnou {0}" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "Você se respawnou." -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "Sua senha foi alterada com sucesso." -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "Você removeu o silêncio de {0}." -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "Você não recebeu nenhum sussurro anteriormente." -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "Você curou {0} para {1} de vida." -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "Você se curou para {0} de vida." -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "Você acabou de matar {0}!" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "Você acabou de se matar!" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "Você lançou fogos de artifício em {0}." -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "Você lançou fogos de artifício em si mesmo." -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "Você se conectou de outro local." -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "Você se conectou no mesmo IP." -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "Agora você pode receber sussurros de outros jogadores." -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "Você pode considerar a remoção da permissão tshock.ignore.ssc ou negar para este jogador." -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "Você deve estar logado para ter vantagens de regiões protegidas." -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "Você deve fornecer um código de configuração!" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "Você deve configurar o ForceTime para normal via config para usar o Relógio Solar Encantado." -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "Você deve invocar a Parede da Carne no inferno." -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Você deve usar este comando dentro do jogo." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "Você precisa se conectar com um personagem hardcore." -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "Você precisa se conectar com um personagem mediumcore ou superior." -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "Você precisa se conectar com um personagem softcore." -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "Você precisa se reconectar para ter certeza que seu lixo foi limpo!" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "Você invocou {0} {1} vez." msgstr[1] "Você gerou {0} {1} vezes." -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "Você teletransportou {0} para {1}." -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "Você foi teleportado para {0}." -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "Você será teleportado para seu último local conhecido..." -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "Você não receberá mais sussurros de outros jogadores." -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "Não é permitido alterar blocos aqui!" @@ -7321,85 +7397,89 @@ msgstr "Não é permitido alterar blocos aqui!" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "Você está tentando sincronizar, mas não tem um arquivo packages.json." -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "Sua conta foi elevada a Super Admin por 10 minutos." -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "Sua conta, \"{0}\", foi registrada." -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "O grupo da sua conta não pôde ser carregado. Por favor, entre em contato com os administradores do servidor." -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "Seu cliente enviou um nome de personagem em branco." -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "Seu cliente enviou um UUID em branco. Configure-o para enviar um ou usar um cliente diferente." -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "Seu banco de dados contém IDs de usuário inválidos (eles devem ser inteiros)." -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "Seu grupo foi alterado para {0} por {1}" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "Seu grupo foi alterado temporariamente para {0}" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "Seu inventário parece cheio." -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "Seus dados de personagem local, desde sua conexão inicial, foram enviados para o servidor." -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "Sua nova conta foi verificada e a configuração do sistema {0}foi desativada." -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "Sua senha não coincide com a senha deste personagem." -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "Sua senha é \"{0}\"." -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "Seu conjunto de permissões anterior foi restaurado." -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "Suas dumps de referência foram criadas na pasta do servidor." -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "Os dados do personagem server side foram salvos." -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "Seu acesso temporário ao grupo expirou." -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "z <#> - Define a ordem z da região." -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "Você foi repreendido por senha inválida." diff --git a/i18n/pt_PT/TShockAPI.po b/i18n/pt_PT/TShockAPI.po index 15a44413..020512f1 100644 --- a/i18n/pt_PT/TShockAPI.po +++ b/i18n/pt_PT/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,513 +211,513 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -727,421 +727,421 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1176,43 +1176,43 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1327,162 +1327,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1499,1039 +1499,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4564,7 +4601,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4702,33 +4739,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5771,190 +5814,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/ru_RU/TShockAPI.po b/i18n/ru_RU/TShockAPI.po index 859f85c0..52954ce5 100644 --- a/i18n/ru_RU/TShockAPI.po +++ b/i18n/ru_RU/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:52\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Пропускается сохранение SSC (из-за tshock.ignore.ssc) для {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Вы забанены: {1} (осталось {2})" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Вы забанены: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (Находит IP связанный с оффлайн аккаунтом)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Навсегда банит имя этого аккаунта)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Находит индекс указанного игрока)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Навсегда банит игрока, находящегося на сервере, по учетной записи, UUID и IP)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Навсегда банит этот IP адрес)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Например, {0} будет представлять собой 10 дней, 30 минут, 0 секунд." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." -msgstr "" +msgstr " Если не указан {0} , команда использует по умолчанию {1}." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Если продолжительность не указана, бан будет постоянным" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" -msgstr "" +msgstr " Если {0} не передается команде, {1} предположительно является игроком или индексом игрока" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> Вошел как: {0}; В группе {1}." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." -msgstr "" +msgstr "- {0} предоставляются при добавлении запрета, а также могут быть просмотрены с помощью команды {1}." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." -msgstr "" +msgstr "- {0} предоставляется при добавлении запрета и может быть найден с помощью команды {1}." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" -msgstr "" +msgstr "- {0}: -a (имя аккаунта), -u (UUID), -n (имя персонажа), -ip (IP-адрес), -e (точно, {1} будет рассматриваться как идентификатор)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." -msgstr "" +msgstr "- {0}: использует формат {1} для определения длины бана." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Забанить оффлайн игрока по имени аккаунта" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Забанить оффлайн игрока по IP-адресу" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- Забанить онлайн игрока по индексу (Полезно для сложно вводимых ников)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Деревья по умолчанию:" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Самоцветные деревья:" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" -msgstr "" +msgstr "- Список активных банов. Цветные тренды в направлении зелёного по мере истечения срока действия запрета" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" -msgstr "" +msgstr "- Прочее" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Пальмовые деревья:" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." -msgstr "" +msgstr "!!! > Установите DisableLoginBeforeJoin в конфигурации на true и /reload если это проблема." + +#: ../../TShockAPI/TShock.cs:963 +msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." +msgstr "!!! > Установите DisableUUIDLogin в конфигурации на true и /reload если это проблема." + +#: ../../TShockAPI/TShock.cs:968 +msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." +msgstr "!!! Вход, прежде чем присоединение включено. Существующие аккаунты могут войти в систему и пароль сервера будет отключен." #: ../../TShockAPI/TShock.cs:957 -msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." -msgstr "" +msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." +msgstr "!!! Пароль сервера в config.json был переопределен интерактивной подсказкой и будет проигнорирован." #: ../../TShockAPI/TShock.cs:962 -msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." -msgstr "" - -#: ../../TShockAPI/TShock.cs:951 -msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." -msgstr "" - -#: ../../TShockAPI/TShock.cs:956 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." -msgstr "" +msgstr "!!! UUID логин включен. Если UUID пользователя совпадает с учетной записью, пароль сервера будет отключен." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" не является допустимым ID эффекта!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" не является допустимым NPC." @@ -193,7 +193,7 @@ msgstr "\"{0}\" не является допустимым NPC." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" не является правильным номером страницы." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" не является корректным радиусом." @@ -203,187 +203,187 @@ msgstr "\"{0}\" не является корректным радиусом." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" запросил эндпоинт REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Сообщение от сервера) " #: ../../TShockAPI/Configuration/TShockConfig.cs:496 msgid "(Super Admin) " -msgstr "" +msgstr "(Супер Администратор) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" -msgstr "" +msgstr "{0} - Номер заявки: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} токенов) " -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) изменил пароль к аккаунту {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) безуспешно попытался изменить пароль к аккаунту {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) сделал {2} или больше неудачных попыток входа и был автоматически кикнут." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) присоединился." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" -msgstr "" +msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} добавил аккаунт {1} в группу {2}" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} пытался зарегистрировать уже существующий аккаунт {1}." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." -msgstr "" +msgstr "{0} успешно авторизован как {1}" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} успешно аутентифицировался как пользователь: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." -msgstr "" +msgstr "{0} забанил {1} за '{2}'." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." @@ -392,52 +392,52 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} вызвал слизневый дождь." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} вызвал дождь." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0} изменил группу пользователя {1} на {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} изменил максимальное количество появляющихся мобов на {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} изменил максимальное количество появляющихся мобов на 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} изменил пароль на аккаунте {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} изменил частоту появления мобов на {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} изменил частоту появления мобов на 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} изменил скорость ветра на {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." @@ -446,7 +446,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." @@ -455,7 +455,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." @@ -464,183 +464,183 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0} отключил режим Хэллоуин." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} отключил рождественский режим." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." -msgstr "" +msgstr "{0} отключился." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} включил режим Хэллоуин." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} включил рождественский режим." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} остановил дождь." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} остановил слизневый дождь." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} выполнил: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} не удалось авторизоваться как пользователь: {1}" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" msgstr[2] "" -msgstr[3] "" +msgstr[3] "{0} дал вам {1} {2}." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "Теперь {0} разрешено размещать блок {1}." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "{0} было разрешено использовать {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "Теперь {0} разрешено использовать снаряд {1}." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "Теперь {0} запрещено размещать блок {1}." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "Теперь {0} запрещено использовать снаряд {1}." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "{0} было запрещено использовать {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} изменил вашу группу на {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} отключил входящие телепорты." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} завершил текущее вторжение. " -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} завершил событие «Армия Древних»." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} присоединился." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} присоединился. IP: {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0} запустил {1} в космос." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0} запустила себя в космос." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0} запустил себя в космос." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." -msgstr "" +msgstr "{0} вышел." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0} заглушил {1} за {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "{0} возродил вас." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" -msgstr "" +msgstr "{0} отправил(а) запрос на доставку кошки!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" -msgstr "" +msgstr "{0} отправил(а) запрос на доставку собаки!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" -msgstr "" +msgstr "{0} отправила(а) запрос на доставку слизня!" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." @@ -649,87 +649,87 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} призвал Стену плоти. " -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} запустил вторжение Армия гоблинов." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} запустил вторжение Марсианское безумие." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} запустил Нашествие пиратов." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} запустил Морозный легион" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." -msgstr "" +msgstr "{0} выдал(а) {1} {2} единицы здоровья" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." -msgstr "" +msgstr "{0} выдала {1} единицы здоровья себе." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." -msgstr "" +msgstr "{0} выдал {1} единицы здоровья себе." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} уже разрешено использовать блок {1}." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} уже разрешено использовать {1}." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "{0} уже разрешено использовать снаряд {1}." -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "{0} уже мертв!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} уже запрещено использовать {1}." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "{0} уже запрещено использовать блок {1}." -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "{0} уже запрещено использовать снаряд {1}." @@ -739,55 +739,55 @@ msgstr "{0} уже запрещено использовать снаряд {1}. msgid "{0} is banned! Remove it!" msgstr "{0} заблокирован! Удалите его!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "{0} больше не в режиме бога." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." -msgstr "" +msgstr "{0} не принимает личные сообщения." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} не забанен." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "{0} не мертв!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "{0} перешел в режим бога." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." -msgstr "" +msgstr "{0} не в сети и не может получить ваш ответ." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} убил вас!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{0} кикнул {1} по причине: '{2}'" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "{0} запустил в вас фейерверк." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." @@ -796,53 +796,53 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "{killcount} НИПов были убиты." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} зарегистрировал аккаунт: \"{1}\"." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "{0} осталось." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0} переименовал {1}." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0} установил время на {1}:{2:D2}." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "{0} установил время на 00:00." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "{0} установил время на 04:30." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "{0} установил время на 12:00." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "{0} установил время на 19:30." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "{0} шлепнул {1} на {2} урона." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." @@ -851,313 +851,313 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} запустил событие Кровавая Луна." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} начал полнолуние." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} начал Ночь Фонарей." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} вызвал песчаную бурю." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} запустил затмение." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "{0} запустил морозную луну на волне {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" -msgstr "" +msgstr "{0} призвал армию старца!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "{0} запустил тыквенную луну на волне {1}!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} остановил затмение." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} остановил кровавую луну." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} остановил песчаную бурю." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} остановил Ночь Фонарей." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} успешно удалил аккаунт: {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "{0} вызвал Кровавую Луну!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "{0} вызвал ледяную луну!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "{0} вызвал Вторжение Гоблинов!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "{0} вызвал Вторжение Марсиан!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "{0} призвал Лунного Лорда!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "{0} вызвал тыквенную луну!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "{0} вызвал затмение!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "{0} вызвал {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "{0} вызвал Пиратов!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "{0} вызвал Снежный Легион!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} телепортировал {1} к вам." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} телепортировался к вам." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} телепортировал вас к {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0} пытался выполнить (аргументы опущены) {1}{2}." -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} попытался выполнить {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} вызвал метеорит." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} переместил вас к {1}." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "{0} был забанен за '{1}'." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "{0} был кикнут за '{1}'" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} был телепортирован к вам." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "Группа игрока {0}: {1}" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "Последний известный IP игрока {0} - {1}" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "Игрок {0} был последний раз авторизован {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "Игрок {0} был зарегистрирован {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - Авторизует вас, используя ваш UUID и имя персонажа." -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login - Авторизует вас, используя ваш пароль и имя персонажа." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login - Авторизует вас, используя имя вашего персонажа и пароль." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add owner" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add \"никнейм игрока\" пароль группа - Создает аккаунт с указанным паролем и группой" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del \"никнейм игрока\" -- Удаляет аккаунт игрока" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group \"никнейм игрока\" группа -- Изменяет группу игрока" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password \"никнейм игрока\" пароль -- Изменяет пароль от аккаунта" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - Вы были забанены: {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1172,8 +1172,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1196,43 +1196,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "циклоп-олень" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "Группа с таким названием уже существует." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "Из-за этого многие вещи не сработают. Вы должны вручную удалить и пересоздать разрешенное поле." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "марсианская тарелка " -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "Метеорит был вызван." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "башня туманности" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "Никнейм игрока должен быть указан для кика. Пожалуйста, укажите никнейм." -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1241,87 +1241,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "Вход в аккаунт через REST от {0} был заблокирован, поскольку в настоящее время он имеет {1} токенов ограничения запросов и находится на пороге RESTMaximumRequestsPerval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "башня солнечной вспышки" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "башня звездной пыли" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "Аккаунта с таким именем не существует." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "башня вихря" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "Аккаунт {0} не зарегистрирован! Поэтому пароль не может быть изменен." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "Аккаунт {0} был добавлен в группу {1}." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "Группа пользователя {0} изменена на {1}." -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "Необходима учетная запись! Чтобы играть, введите, пожалуйста, {0}register или {0}login!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Аккаунт успешно удалён." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "Активные пользователи REST ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - Добавляет предмет в список запрещенных." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "add - Создает новую группу." -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "add - Блокирует снаряд." -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "add - Блокирует блок." -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "{0} добавлен в вайтлист." -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "Добавлен аномальный бафф НИПу {0}." -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "Группа {0} добавлена в {1} регион." -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "Игрок {0} добавлен в {1} регион." -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "addperm - Добавляет права группе." @@ -1330,179 +1330,179 @@ msgstr "addperm - Добавляет права гру msgid "AddUser SQL returned an error ({0})" msgstr "AddUser SQL-запрос вернул ошибку ({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "Все живые неигровые персонажи (за исключением городских) на сервере будут убиты, если вы не введете имя или ID." -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "все боссы" #: ../../TShockPluginManager/NugetCLI.cs:169 msgid "All done! :)" -msgstr "" +msgstr "Всё готово! :)" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "Все токены REST были удалены." -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "Выделено памяти: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Разрешает группе использовать предмет." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - Позволяет группе использовать снаряд." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow - Позволяет группе использовать блок." -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "Янтарное дерево" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "Аметистовое дерево" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "В базе данных пользователя обнаружена учетная запись, но setup-code.txt до сих пор присутствует." -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Произошла ошибка во время отката базы данных: {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Во время транзакции с базой данных произошла ошибка: {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Идентификатор для имени персонажа." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "Идентификатор учетной записи пользователя TShock." -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "Идентификатор для UUID." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "Идентификатор для IP-адреса в формате octet, например, '{0}'." -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Проверка обновлений добавлена в очередь. Если обновление доступно, вы будете уведомлены в ближайшее время." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "Синтаксис Annoy" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Раздражает игрока на указанное время." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "Анонимно запрошенный REST эндпоинт: {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "Аргументы: add [название варпа], del [название варпа], list [page]." -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "Аргументы: send [player] [название варпа], hide [варп] true/false." -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "Вы залогинились как {0}." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" -msgstr "" +msgstr "Автосохранение включено" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "Автосохранение отключено" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "Автосохранение включено" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "Автосохранение отключено" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Автосохранение уже включено" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "Доступные суб-команды REST:" @@ -1519,1039 +1519,1059 @@ msgstr "Не удалось выполнить резервное копиров msgid "Backup Thread" msgstr "Поток резервного копирования" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Неудачная попытка входа." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "ban {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "Бан {0} был отозван игроком {1}." -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "Бан {0} был отмечен как истекший." -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "Синтаксис Ban Add" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "Добавлен бан. Тикет {0} был создан для идентификатора {1}." -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Бан добавлен. Номер тикета: {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "Синтаксис Ban Del" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "Синтаксис Ban Details" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "Синтаксис Ban List" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Бан снят." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Примеры использования ban" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "Снаряд {0} заблокирован." -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "Блок {0} заблокирован." -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "Забанен: {0}" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "Забанен." -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "Баны ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" -msgstr "" +msgstr "Обычное дерево" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "Бэтси" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "Кровавая Луна была установлена на {0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "Состояние Кровавой Луны: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "Заснеженное дерево" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет из-за несоответствия сундука от {0}" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет при проверке временного отключения {0}" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет при проверке расстояния от {0}" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет из-за защиты региона от {0}" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет при проверке временного отключения {0}" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет при проверке расстояния от {0}" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "Bouncer / OnChestItemChange отклонил пакет при проверке региона от {0}" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "Bouncer / OnFishOutNPC отклонил пакет, так как не был найден активный проджектайл попловка! - От {0}" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "Bouncer / OnFishOutNPC отклонил пакет, так как выбранный предмет не является удочкой! - От {0}" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "Bouncer / OnFishOutNPC отклонил пакет, так как данного НИПа нет в списке тех, кого можно выловить! - От {0}" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "Bouncer / OnFishOutNPC отклонил пакет при проверке расстояния от {0}" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "Bouncer / OnFishOutNPC отклонил пакет при проверке разрешений на вызов босса от {0}" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "Bouncer / OnFooPlatterTryPlacing отклонил пакет при проверке временного отключения {0}" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing отклонил пакет при проверке предмета, не размещённого в руке {0}" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing отклонил пакет при проверке разрешения от {0}" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing отклонил пакет при проверке расстояния от {0}" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "Bouncer / OnFoodTryPlacing отклонил пакет при проверке размещения тайла от {0}" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "Bouncer / OnGemLockToggle размещение не правильно/будучи мертвым от {0}" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "Bouncer / OnGemLockToggle отклонил изменение за пределами мира от {0}" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "Bouncer / OnGemLockToggle отклонил отключенного {0}" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "Bouncer / OnGemLockToggle отклонил проверку разрешений от {0}" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "Bouncer / OnGetSection отклонил пустое имя игрока." -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "Bouncer / OnGetSection отклонил пакет GetSection от {0}" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "Bouncer / OnHealOtherPlayer отклонил пакет при 0.2-проверке от {0}" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "Bouncer / OnHealOtherPlayer отклонил отключенного/предупрежденного игрока {0}" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "Bouncer / OnHealOtherPlayer отклонил хил, который превзошел порог, от {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "Bouncer / OnHealOtherPlayer отклонил пакет в null-проверке" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "Bouncer / OnItemDrop отклонил попытку выкинуть предмет, которого нет в игре от {0}" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "Bouncer / OnItemDrop отклонил отключенного {0}" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "Bouncer / OnItemDrop отклонил попытку выкинуть заблокированный предмет / предмет, количеством больше максимального / предмет, количеством меньше минимального от {0}" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "Bouncer / OnItemDrop отклонил попытку дублирования предмета на расстоянии от {0}" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "Bouncer / OnItemDrop отклонил выпадение/поднятие предмета от {0}" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "Bouncer / OnItemDrop отклонил проверку префикса от {0}" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "Bouncer / OnItemDrop отклонил проверку расстояния от {0}" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "Bouncer / OnItemDrop отклонил попытку протащить предмет от {0}" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "Bouncer / OnKillMe отклонил текст смерти от {0}" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "Bouncer / OnKillMe отклонил настраиваемый текст сообщения о смерти от {0}" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "Bouncer / OnKillMe отклонил высокий урон от {0} {1}" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "Bouncer / OnKillMe отклонил проверку индекса в {0}" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "Bouncer / OnLiquidSet отклонил разрешён на строительство в {0}" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "Bouncer / OnLiquidSet отклонил отключенного {0}" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "Bouncer / OnLiquidSet отклонил проверку ведра от {0}" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "Bouncer / OnLiquidSet отклонил {0} от проверки расстояния" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "Bouncer / OnLiquidSet отклонил предупрежденного {0}" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "Bouncer / OnMassWireOperation отклонил разрешения на строительство от {0}" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "Bouncer / OnMassWireOperation отклонил отключенного от {0}" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "Bouncer / OnMassWireOperation отклонил строительство от {0}" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "Bouncer / OnNewProjectile был отклонен из-за превышения лимита снарядов от {0}" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "Bouncer / OnNewProjectile отклонил отключенного {0}" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "Bouncer / OnNewProjectile отклонен от враждебного снаряда от {0}" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "Bouncer / OnNewProjectile отклонил проверку разрешений от {0} {1}" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile отклонен из-за лимита урона, нанесенного снарядом от {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2562,27 +2582,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "Объявляет сообщение на весь сервер." -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "Синтаксис и пример Buff" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "Синтаксис и пример Butcher" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "Кактус" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "Не удалось установить значение SqlColumn.DefaultCurrentTimestamp, когда выбранный MySqlDbType не является датой (DateTime)." @@ -2591,79 +2611,79 @@ msgstr "Не удалось установить значение SqlColumn.Defa msgid "Cannot load module {0} as it does not derive from {1}" msgstr "Не удалось загрузить модуль {0}, так как он не унаследован от {1}." -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "Некоторые снаряды проигнорированы при обнаружении читов." -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "Максимальное количество спавнов теперь {0}." -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "Максимальное количество спавнов теперь 5." -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "Частота появления мобов изменена на {0}." -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "Частота появления мобов изменена на 600." -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "Изменяет пароль сервера." -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "Изменяет скорость ветра." -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "Изменяет режим мира." -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "Изменяет пароль вашего аккаунта." -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "Цвет чата для \"{0}\" - \"{1}\"." -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "Цвет чата для группы \"{0}\" изменен на \"{1}\"." -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "Проверяет наличие обновлений TShock." -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "clear - очищает временные точки региона." -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "Синтаксис Clear" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "Данные всех игроков о выполнении текущего квеста рыбака были обнулены." -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "Удаляет выброшенные предметы или снаряды." -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color - Меняет цвет чата для группы." -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2672,20 +2692,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "Не удалось выполнить команду, проверьте логи для получения более подробной информации." -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "Команды ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "Команды: add, del, hide, list, send, [warpname]." -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "Конфигурация, права доступа и регионы полностью перезагружены. Некоторые изменения могут потребовать перезапуска сервера." @@ -2693,20 +2713,20 @@ msgstr "Конфигурация, права доступа и регионы п msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "Правильное использование: {0}overridessc|{0}ossc " -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "Искаженная пальма" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2717,78 +2737,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "Не удалось найти базу данных (вероятно, Sqlite3.dll)" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "Не удалось найти варп с названием {0} для его удаления." -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "Не удалось найти игрока с именем \"{0}\"" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "Не удалось найти игрока с именем \"{0}\"." -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "Не удалось найти игроков по имени \"{0}\"" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "Не удалось найти группу: {0}" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "Не удалось найти игрока {0}." -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "Не удалось найти указанный регион" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "Не удалось найти указанный варп." -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "Не удалось найти регион {0}." -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "Не удалось найти указанную цель. Проверьте правильность написания." -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "Не удалось переименовать {0}!" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "Создает ссылочные таблицы для типов данных Terraria и TShock разрешения в папку с сервером." -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2801,26 +2821,26 @@ msgstr "CreativePowerHandler получил запрос на проверку msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "CreativeUnlocksHandler получил нестандартный запрос на разблокировку. Случайное значение поля: {0} но должно быть 0 от {1}" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "Багровая пальма" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "Текущее максимальное количество спавнов: {0}." -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "Текущая частота появления мобов: {0}." -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "Попытка принять необычную смерть: Урон {0}." -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "Причина смерти превышает максимальное количество символов." @@ -2833,87 +2853,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "del - Удаляет группу." -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "del - Снимает блокировку с предмета." -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "del - Снимает блокировку со снаряда." -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "del - Снимает блокировку с блока." -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "Регион \"{0}\" удален." -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "delperm - Снимает разрешение у группы." -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "destroytokens - Удаляет все токены REST." -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "Обнаружено, что DOOM был включен." -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "Алмазное дерево" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "Вы отключены. Вам нужно авторизоваться, используя {0}login для загрузки ваших данных." -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "Вы отключены. Вы слишком долго были с заблокированной броней." -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "Вы отключены. Вы слишком долго были с необычным количеством предметов." -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "disallow - Запрещает группе использовать предмет." -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "disallow - Запрещает группе использовать снаряд." -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "disallow - Запрещает группе устанавливать блок." @@ -2922,157 +2945,157 @@ msgstr "disallow - Запрещает группе устан msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "Герцог Рыброн" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "Изумрудное дерево" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "Позволяет запускать и останавливать различные события мира." -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "Ошибка перезагрузки групп: {0}" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "Ошибка: оба имени совпадают." -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "Злая ель" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "Например: /sudo /ban add particles 2d Hacking." -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "Например: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "Выполняет команду как супер админ." -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "Не удалось добавить бан для: {0}." -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "Не удалось добавить бан. {0}" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "Ошибка при добавлении группы {0}." -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "Ошибка при удалении группы {0}." -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "Не удалось найти пользователя с таким именем в списке." -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "Не удалось удалить бан." -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "Ошибка при переименовании группы {0}." -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "Не удалось переименовать регион" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "Ошибка при обновлении группы \"{0}\"." -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "Не удалось загрузить данные вашего персонажа на сервер. Убедитесь, что вы вошли в аккаунт." @@ -3080,33 +3103,33 @@ msgstr "Не удалось загрузить данные вашего пер msgid "Fatal Startup Exception" msgstr "Фатальная ошибка при запуске" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "Фатальная ошибка при загрузке TShock: Не удалось подключиться к базе данных MySQL. Просмотрите внутренние исключения для деталей." -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "FetchHashedPasswordAndGroup SQL выдал ошибку: {0}" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "Синтаксис Firework" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "Например, 1d и 10h-30m+2m будут корректными временными строками, но 2 - нет." -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "Принудительно обновляет все жидкости." -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." @@ -3115,7 +3138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." @@ -3124,402 +3147,412 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "GetDataHandlers / HandleSyncLoadout отклонил выгрузку синхронизации индекса {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "GetUser SQL выдал ошибку {0}" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "Синтаксис и пример Gbuff" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Накладывает на игрока бафф или дебафф на определенный промежуток времени. Указав значение -1 время его действия будет установлено на 415 дней." -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "Даёт другому игроку предмет." -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "Дает вам бафф или дебафф на протяжении определенного промежутка времени. Установка времени -1 сделает его на 415 дней." -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "Дает вам предмет." -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3528,163 +3561,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "GolfPacketHandler: Игроку не удалось создать снаряд Клюшка для гольфа последние 5 секунд! - От {0}" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "Группа \"{0}\" не имеет родительской группы." -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "Группа \"{0}\" не имеет префикса." -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "Группа \"{0}\" не имеет суффикса." -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "Группа \"superadmin\" числится в базе данных несмотря на то, что это название зарезервированной группы." -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "Группа {0} уже существует" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "Группа {0} успешно создана" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "Группа {0} успешно удалена" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "Группа {0} не существует" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "Группа {0} не существует." -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "Группа {0} не существует" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "Группа {0} не существует." -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "Группа {0} успешно удалена." -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "Группа {0} была переименована в {1}." -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "Группа {0} ссылается на несуществующую группу {1}, ссылка на родительскую группу была удалена." -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "Группа {0} относит себя к главным группам; данная группа теперь не является главной." -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "Группа {0} не найдена." -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "Группа {0} успешно обновлена" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "Группа {0} успешно добавлена." -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "Подкоманды группы ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "Группы ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "Выращивает растения под вами." -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "Режим Hardmode отключен в файле конфигурации сервера." -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "Режим Hardmode выключен." -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "Режим Hardmode включен." -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "Синтаксис и пример Heal" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "HealOtherPlayer попытка читерства!" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "Порог HealOtherPlayer превышает {0}." -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "Восполняет здоровье и ману игрока." -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "Ударьте по блоку, чтобы узнать название региона." -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "Ударьте по блоку, чтобы установить точку {0}." @@ -3695,67 +3728,71 @@ msgstr "Ударьте по блоку, чтобы установить точк msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "Если вы забыли свой пароль, обратитесь к администратору за помощью." -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3768,15 +3805,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "Если вы видите это сообщение, и вы знаете, что сделал этот игрок, пожалуйста, сообщите об этом в TShock для дальнейших разбирательств." -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3785,38 +3822,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "IllegalPerSe: пакет Emoji отклонен за подмену ID. Ожидалось {0}, получено {1} от {2}." -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "Входящие телепортации теперь разрешены." -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "Входящие телепортации теперь отключены." -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "Бесконечное воспроизведение групп ({0})" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "Информация о текущем мире" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "Не удалось поместить запись о бане в базу данных." @@ -3824,165 +3861,165 @@ msgstr "Не удалось поместить запись о бане в ба msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "Внутренняя ошибка сервера." -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "Недопустимый коэффициент работы BCrypt в конфиг файле! Создание нового хэша с использованием коэффициента работы по умолчанию." -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "Недопустимое количество боссов." -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "Недопустимый тип босса!" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "Неверный ID эффекта!" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Введена неправильная команда. Введите {0}help для списка существующих команд." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "Неверная команда" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "Недопустимое значение NPC." -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "Недопустимый путь назначения." -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "Недопустимый тип события. Допустимые типы событий: {0}." -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "Недопустимая волна ледяной луны." -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "Неизвестная группа." -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "Недопустимый тип нашествия. Допустимые типы событий: {0}." -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "Неверный тип предмета!" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "Неизвестный предмет." -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "Недопустимый максимальный диапазон спавнов. Допустимый диапазон от {0} до {1}." -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "Неизвестный моб!" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "Неизвестный моб." -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "Некорректный режим мира. Действительные режимы: {0}" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "Недопустимый номер страницы. Номер страницы должен быть числом." -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "Неправильная родительская группа {0} для группы {1}" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "Неправильная родительская группа {0} для группы {1}." -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "Неверный пароль." -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "Неверный игрок!" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "Неверный игрок." -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "Неверный ID снаряда!" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "Неверный ID снаряда." -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "Недопустимая волна тыквенной луны." -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "Неверный регион \"{0}\"." @@ -3998,461 +4035,461 @@ msgstr "Неправильная конфигурация REST:\n" "Пожалуйста, измените конфигурацию и перезапустите сервер.\n" "Нажмите любую клавишу для выхода." -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "Недопустимая суб-команда! Введите {0}group help для дополнительной информации о допустимых командах." -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "Недопустимая суб-команда. Введите {0}itemban help для дополнительной информации о допустимых суб-командах." -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "Недопустимая суб-команда. Введите {0}projban help для дополнительной информации о допустимых суб-командах." -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "Недопустимая суб-команда. Введите {0}tileban help для дополнительной информации о допустимых суб-командах." -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "Неверный синтаксис для цвета, используйте \"rrr,ggg,bbb\"." -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "Неправильный синтаксис." -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}worldevent invasion [тип вторжения] [волна вторжения]." -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}accountinfo ." -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group add [permissions]." -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group addperm ." -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group color [new color(000,000,000)]." -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group del ." -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group delperm ." -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group listperm [page]." -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group parent [new parent group name]." -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "Неверный синтаксис. Синтаксис: {0}group prefix [Префикс]." -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group rename ." -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}group suffix [Суффикс]." -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}itemban add ." -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}itemban allow " -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}itemban del ." -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}itemban disallow ." -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}kick [reason]." -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "Неверный синтаксис. Правильный синтаксис: {0}projban add " -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}projban allow " -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}projban del ." -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}projban disallow " -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region allow ." -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region allowg ." -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region define ." -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region delete ." -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region info [-d] [page]." -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region protect ." -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region remove ." -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}region removeg ." -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}register ." -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "Неверный синтаксис. Правильный синтаксис: {0}serverpassword \"\"." -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}slap [damage]." -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}spawnboss [amount]." -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}spawnmob [amount]." -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tileban add ." -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tileban allow ." -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tileban del ." -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tp [player 2]." -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tp ." -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tphere ." -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tpnpc ." -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}tppos ." -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}userinfo ." -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp [command] [arguments]." -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp [name] или {0}warp list ." -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp add [name]." -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp del [name]." -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp hide [name] ." -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "Неверный синтаксис. Правильный синтаксис: {0}warp send [player] [warpname]." -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." -msgstr "Неверный синтаксис. Правильный синтаксис: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." +msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}worldevent ." -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "Неверный синтаксис. Правильный синтаксис: {0}worldmode ." -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "Неверный синтаксис. Правильный синтаксис: /region protect ." -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "Неверный синтаксис. Правильный синтаксис: /region set <1/2>." -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "Недопустимый игрок." -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "Неверный ID блока." -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "Недопустимая строка времени! Правильный формат: _д_ч_м_с, с хотя бы 1 указателем времени." -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "Недопустимая строка времени. Правильный формат: hh:mm, в течение 24 часов." -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "Неизвестный тип: '{0}'" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "Неверный синтаксис пользователя. Попробуйте {0}user help." -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "Недопустимое значение варпа. Для команд зарезервированы значения 'list', 'hide', 'del' и 'add'." -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." -msgstr "Некорректная скорость ветра." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." +msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "Некорректный режим мира. Действительные режимы: {0}" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "IP Адрес: {0}." -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "{0} выкинут по причине: '{1}'" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "Кикнут через сеть" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "Вы исключены по причине: {0}." -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "Синтаксис и пример Kill" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "Убивает указанного игрока." -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "Убивает враждебных НПС или НПС определенного типа." @@ -4481,108 +4518,108 @@ msgstr "LandGolfBallInCupHandler: Блок на позиции X:{0} Y:{1} не msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "LandGolfBallInCupHandler: позиции X и Y находятся за границами мира! - От {0}" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "Фонари теперь отключены." -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "Фонари теперь активны." -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "Жидкости уже регулируются." -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "list [page] - Список всех заблокированных предметов." -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "list [page] - Список всех заблокированных снарядов." -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "list [page] - Список всех заблокированных блоков." -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "list [page] - Список всех групп." -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "listperm [page] - Список всех прав группы." -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "Показывает список команд или предоставляет помощь по ним." -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "listusers - Список всех пользователей REST и их текущих активных токенов." -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "Расположение {0} - ({1}, {2})." -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "Отображение логов выключено." -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "Отображение логов включено." -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "Попытка входа не удалась. Смотрите сообщение выше." -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "Выполняет вход в ваш аккаунт." -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "Выход из вашего текущего аккаунта." -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "Название машины: {0}" @@ -4591,7 +4628,7 @@ msgstr "Название машины: {0}" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "Попытка вредоносного портала." @@ -4599,102 +4636,102 @@ msgstr "Попытка вредоносного портала." msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "Управляет группами." -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "Управляет заблокированными предметами." -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "Управляет заблокированными игроками." -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "Управляет заблокированными снарядами." -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "Управляет регионами." -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "Управляет REST API." -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "Управляет белым списком сервера." -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "Управляет заблокированными блоками." -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "Управляет аккаунтами пользователей." -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "Регион {0} помечен как защищенный." -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "Регион {0} помечен как незащищенный." -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "Используется памяти: {0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "Метеор был создан" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "Неадекватное поведение." -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "Отсутствует имя/id предмета." -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "Параметр {0} пуст или отсутствует" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "Параметр {0} недопустим или отсутствует" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "Отсутствует имя игрока." -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "Режим: {0}" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "Найдено больше одного совпадения -- невозможно решить, какой из них требуется:" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "Плакучий древень" @@ -4702,24 +4739,24 @@ msgstr "Плакучий древень" msgid "Msg ID not implemented" msgstr "Msg ID не реализован" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "Найдено несколько учетных записей для {0} '{1}'" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "Синтаксис Mute" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "Н/Д" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "Название: {0}" @@ -4729,33 +4766,33 @@ msgstr "Название: {0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "Никогда." -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "Новое имя слишком большое!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "Новые миры будут создаваться с {0} типом зла!" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "Бан по данному тикету не найден." -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4763,43 +4800,43 @@ msgstr "" msgid "No help available." msgstr "Справка недоступна." -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "Соответствующие баны не найдены." -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "Не найдено ни одного игрока по запросу '{0}'." -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "Нет игроков, соответствующих запросу \"{0}\"." -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "Группы \"{0}\" не существует." -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "Значения не заданы" @@ -4811,9 +4848,9 @@ msgstr "Не удалось авторизовать. Предоставленн msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "Не удалось авторизовать. Указанный эндпоинт API требует токен, но предоставленный токен недействителен." +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "Не удалось авторизовать. Указанный эндпоинт API требует токен." @@ -4822,17 +4859,17 @@ msgstr "Не удалось авторизовать. Указанный энд msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "Не удалось авторизовать. Пользователь \"{0}\" не имеет доступа к использованию указанного эндпоинта API." -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "Неверный синтаксис или вы не авторизованы. Правильный синтаксис: {0}password ." -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "Не обновляется фактор работы, потому что хэш BCrypt в недопустимом формате." -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "Урон НПС превысил {0}." @@ -4841,22 +4878,27 @@ msgstr "Урон НПС превысил {0}." msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "Один из ваших идентификаторов пользователя не является допустимым числом: {0}" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "Операционная система: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "Временно переопределяет серверные данные персонажа для игрока." @@ -4864,105 +4906,105 @@ msgstr "Временно переопределяет серверные дан msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "parent - меняет родительскую группу." -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "Родитель \"{0}\" это \"{1}\"." -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "Родитель группы \"{0}\" изменен на \"{1}\"." -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "Назначение группы {0} родительской группой для группы {1} вызовет циклы в родительской цепочке." -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "Попытка смены пароля для {0} не удалась по неизвестной причине. Проверьте консоль сервера для получения дополнительной информации." -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "Пароль для {0} успешно изменен." -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "Пароль должен содержать не менее {0} символов." -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "Пароль должен содержать {0} или более символов." -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "PasswordUser выдал ошибку: {0}." -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "Путь: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "Плантера" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "Игрок \"{0}\" должен сперва выполнить попытку /login." -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "Игрок \"{0}\" должен сначала переподключиться, потому что он должен очистить ненужные данные." -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "Игрок \"{0}\" уже авторизован." -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "Игрок {0} была отключена для {1}." -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "Игроку {0} был выдан мут" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "С игрока {0} был снят мут" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" @@ -4971,73 +5013,73 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "Игрок {0} совпадает с игроками {1}" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "Игрок {0} не найден." -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "Игрок {0} пытался перенести {1} на сервер!" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "Игрок {0} убит" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "Игрок {0} не найден" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "Урон игрока превысил {0}." -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "У игрока недостаточно прав для создания проджектайла {0}." -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "Игрок не найден. Невозможно выгнать игрока." -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "Пожалуйста, закройте окна НПС перед выходом." -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "Пожалуйста, попробуйте другое имя пользователя." -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5047,54 +5089,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "Возможно проблема с вашей базой данных - присутствует ли Sqlite3.dll?" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "prefix - Меняет префикс группы." -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "Префикс \"{0}\" - \"{1}\"." -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "Префикс группы \"{0}\" изменен на \"{1}\"." -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "Не позволяет игроку разговаривать." -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "Количество процессов: {0}" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "Снаряд {0} не заблокирован." -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "Урон от проджектайла больше чем {0}." -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5102,65 +5144,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "Защищено: {0}." -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "Не удалась проверка расстояния для {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "Достигнут порог HealOtherPlayer." -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "Достигнут порог TileKill." -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "Достигнут порог TileLiquid." -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "Достигнут порог TilePlace." @@ -5168,62 +5210,62 @@ msgstr "Достигнут порог TilePlace." msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "Причина: {0}" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "Получен тип '{0}', однако столбец '{1}' ожидает тип '{2}'" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "Регион {0} уже существует." -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "Владелец региона: {0}." -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "Сначала должны быть определены точки региона. Используйте /region set 1 и /region set 2." -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5231,62 +5273,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "Зарегистрирует вашу учетную запись." -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "RegisterUser выдал ошибку: {0}." -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "Выпущенное существо было не из этого предмета." -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "Перезагружает файл конфигурации сервера." -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "Данные о выполнении текущего квеста рыбака игроком {0} были обнулены." -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "Удален родитель группы \"{0}\"." -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "Удален префикс группы \"{0}\"." -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "Удален суффикс группы \"{0}\"." -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "Пользователь {0} удалён из {1}." -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "Удаляет игрока с сервера." @@ -5294,19 +5336,19 @@ msgstr "Удаляет игрока с сервера." msgid "RemoveUser SQL returned an error" msgstr "RemoveUser SQL выдал ошибку." -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "rename - Меняет название группы." -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "Переименовывает НИПа." -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "Отвечает на личное сообщение, отправленное вам." @@ -5319,7 +5361,7 @@ msgstr "Запрошенный токен был успешно уничтоже msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "RequestTileEntityInteractionHandler: Отклоненный пакет из-за отсутствия прав на построение! - От {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "Сбрасывает список пользователей, выполнивших текущий квест рыбака." @@ -5328,11 +5370,11 @@ msgstr "Сбрасывает список пользователей, выпол msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "Возрождает вас или указанного игрока." @@ -5340,43 +5382,43 @@ msgstr "Возрождает вас или указанного игрока." msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "Возвращает текущую или указанную пользователем позицию." -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "Синтаксис Rocket" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "Запускает игрока вверх (SSC должен быть включен)." -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "Сакура" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "Санта-НК1" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "Сапфировое дерево" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "Сохраняет серверные данные персонажей (SSC) всех игроков." -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "Сохраняет файл мира." @@ -5384,36 +5426,36 @@ msgstr "Сохраняет файл мира." msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "Сид: {0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "Отправляет сообщение всем в вашей команде." -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "Отправляет игроку личное сообщение." -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "Отправляет игроку все данные о блоках с сервера для повторной синхронизации с реальным состоянием мира." -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "Отправляет сообщение от третьего лица в общий чат." -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "Отправляет вас в точку спавна." -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "Отправляет вас в точку спавна." -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5425,7 +5467,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5433,47 +5475,47 @@ msgstr "" msgid "Server map saving..." msgstr "Сохранение карты сервера..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "Пароль сервера был изменен на: {0}." -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "Сервер выключается: " -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "Сервер выключается!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "Сервер выключается." -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "Данные персонажей хранятся на сервере. Для игры вы должны войти в аккаунт." -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "Серверные данные персонажа (SSC) от \"{0}\" были заменены на его текущие локальные данные." -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "SSC (серверные персонажи) отключен." -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "Установлен регион {0}." @@ -5483,31 +5525,32 @@ msgstr "Установлен регион {0}." msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "Устанавливает точку входа в данж на вашу текущую позицию." -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "Устанавливает максимальное количество мобов." -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "Устанавливает частоту появления мобов." -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "Устанавливает время мира." -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "Устанавливает точку спавна на вашу текущую позицию." -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "Перезагрузка жидкостей." -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "SetUserGroup SQL выдал исключение" @@ -5519,120 +5562,120 @@ msgstr "SetUserPassword SQL выдал исключение" msgid "SetUserUUID SQL returned an error" msgstr "SetUserUUID SQL выдал исключение" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "Отображает сокращения команды." -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "Отображает информацию об игроке." -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "Отображает информацию о пользователе." -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "Отображает информацию о текущем мире." -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "Отображает игроков в сети." -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "Показывает сообщение дня." -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "Показывает информацию о сервере." -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "Показывает правила сервера." -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "Показывает версию TShock." -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "Выключает сервер, сохраняя мир." -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "Выключает сервер без сохранения." -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "Размер: {0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "Скелетрон" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "Скелетрон Прайм" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "Пропускается сохранение SSC (из-за tshock.ignore.ssc) для {0}" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "Наносит игроку урон." -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "Слизневый дождь не может быть активирован во время нормального дождя. Остановите обычный дождь и повторите попытку." -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "Извините, {0} уже занят другим игроком." -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "Извините, произошла ошибка: {0}." -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "Точка появления в мире установлена на вашей текущей позиции." -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." @@ -5641,137 +5684,137 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "Стена плоти была создана." -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "Призывает рядом с вами боссов." -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "Создает фейерверк около игрока." -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "Указанный эндпоинт API не существует. Обратитесь к документации для списка правильных эндпоинтов." -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "Запущено событие Кровавая Луна." -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "Запущено полнолуние." -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "Запущено затмение." -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "Затмение остановлено." -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "Кровавая луна остановлена." @@ -5779,21 +5822,21 @@ msgstr "Кровавая луна остановлена." msgid "Successful login" msgstr "Успешный вход в аккаунт" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "prefix - Меняет суффикс группы." -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "Суффикс \"{0}\" - \"{1}\"." -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "Суффикс группы \"{0}\" изменен на \"{1}\"." -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5802,190 +5845,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "SyncTilePickingHandler: позиции X и Y находятся за границами мира! - От {0}" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "{0} телепортирован к {1}." -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "{0} телепортирован к вам." -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "Все игроки были телепортированы к {0}." -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "Все игроки телепортированы к вам." -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "Вы телепортированы к {0}, {1}." -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "Вы телепортированы к {0}." -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "Телепортированы к '{0}'." -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "Вы были телепортированы на спавн." -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "Вы были телепортированы в вашу точку появления (дом)." -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "Телепортирует игрока к другому игроку." -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "Телепортирует игрока к себе." -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "Телепортирует вас в точку варпа или управляет варпами." -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "Телепортирует вас к НИПу." -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "Телепортирует вас к координатам тайла." -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "Временно повышает вас до супер администратора." -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "Временно устанавливает группу указанному игроку." -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "Отмеченные точки региона были удалены." -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "Данной группы не существует." -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "Бан недействителен, потому что данный идентификатор уже существует." -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "Бан недействителен по неизвестной причине." -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "Мозг Ктулху" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "Текущее время {0}:{1:D2}." -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "Группа пользователя по умолчанию не найдена." -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "Группа пользователя по умолчанию не найдена. Возможно, есть опечатка в файле конфигурации, или группа была переименована или удалена." -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "Указанные координаты не являются допустимыми числами." -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "Варп назначения {0} не найден." -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "Уничтожитель" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "Позиция данжа теперь установлена на вашу текущую позицию." -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "Пожиратель миров" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "Императрица света" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "Глаз Ктулху" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "Летучий голландец" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "Голем" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "Группа {0} появилась более одного раза. Сохраняем текущие настройки группы." -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "Группа гостя не найдена." -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "Группа гостя не найдена. Возможно, в файле конфигурации есть опечатка, или же группа была переименована или удалена." -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "Снежная королева" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "Король слизней" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "Лунатик-культист" @@ -5997,31 +6036,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "Лунный Лорд" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "Права доступа были добавлены во все группы в системе." -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "Права доступа были удалены во всех группах в системе." -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "Данные персонажа игрока были успешно загружены из исходного соединения." -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "Тыквенный король" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "Королева пчел" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "Королева слизней" @@ -6033,7 +6072,7 @@ msgstr "Токен аутентификации REST." msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "Скорость появления вне диапазона или не является числом." @@ -6041,19 +6080,19 @@ msgstr "Скорость появления вне диапазона или н msgid "The specified token queued for destruction failed to be deleted." msgstr "Не удалось убрать указанный токен в очереди на удаление." -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "Игрок еще не авторизовался." -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "Выбранный пользователь не может иметь свои данные, потому что он не является игроком." -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "Близнецы" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "Пользователя {0} не существует! Поэтому аккаунт не был удалён." @@ -6070,52 +6109,52 @@ msgstr "Значение должно быть больше нуля." msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "Стена плоти" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "Достигнут лимит количества сундуков в мире - невозможно поставить больше." -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "В настоящее время нет активных пользователей REST!" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "В настоящее время заблокированных предметов нет." -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "В настоящее время заблокированных блоков нет." -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "В настоящее время нет ни одного региона." -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "В настоящее время нет ни одного варпа." @@ -6127,11 +6166,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "Стена плоти уже существует." -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "Произошла ошибка при обработке вашего запроса на вход в аккаунт." @@ -6152,265 +6191,265 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "Блок {0} не заблокирован." -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "Превышен порог обнуления блоков {0}." -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "Порог установки блоков превысил {0}." -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "Переключает глобальный режим защиты от строительства." -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "Включает режим Рождество (Подарки, Санта и т.д.)." -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "Переключает режим бессмертия игрока." -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "Включает режим Хэллоуин (Мешки с добром, тыквы и т.д.)." -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "Переключает режим защиты спавна." -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "Включает хардмод в мире." -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "Отключает или включает обмен личными сообщениями." -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "Разрешает или запрещает другим телепортировать вас." -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "Включает или отключает отображение логов сервера." -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Слишком много неудачных попыток входа в аккаунт." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "Топазовое дерево" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "Общее время работы процессора: {0}" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "TShock: {0} {1}." -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "Введите {0}login \"{1}\" {2} для входа в вашу учетную запись." -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "Введите {0}login {1} для входа в вашу учетную запись." -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "Введите {0}login для входа в свою учетную запись с помощью UUID." -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6419,82 +6458,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "Невозможно создать стену плоти на основе ее текущего состояния или вашего текущего местоположения." -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "Не удалось проверить хэш пароля для пользователя {0} ({1})" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "Снят бан с вещи {0}." -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "Снят бан с проджектайла {0}." -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "Снят бан с блока {0}." -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "Неизвестное растение!" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "Неизвестное направление игрока" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6503,7 +6555,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "UpdateLogin SQL выдал исключение" @@ -6513,78 +6565,78 @@ msgstr "UpdateLogin SQL выдал исключение" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "Загружает локальные данные персонажа на сервер (SSC)." -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "Применение: {0}tempgroup <имя пользователя> <название группы> [время]" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "Применение: /sudo [команда]." -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "Применение: /uploadssc [имя игрока]." -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "Используйте \"{0}worldevent rain slime\" чтобы начать дождь слизней!" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "Используйте \"запрос в кавычках\" для элементов с пробелами." -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "Используйте tsi:[число] или tsn:[имя аккаунта] для различения между ID и именами пользователей." -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "Используется для аутентификации в качестве супер-администратора при первой настройке TShock." -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "Пользователь {0} '{1}' не существует" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "Пользователь {0} уже существует." -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "Пользователь {0} не может быть добавлен, проверьте консоль для того, чтобы увидеть больше деталей." -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "Пользователь {0} не может быть добавлен. Проверьте консоль для того, чтобы увидеть больше деталей." -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "Пользователь {0} не существует." -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "Аккаунт {0} уже зарегистрирован" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "Аккаунт {0} ещё не зарегистрирован" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "Помощь по управлению пользователем:" @@ -6594,130 +6646,130 @@ msgstr "Помощь по управлению пользователем:" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "Имя пользователя или пароль, возможно, введены неправильно, или этот аккаунт не имеет достаточных прав." -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "Использование забаненного ведра мёда без соответствующего разрешения." -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "Использование забаненного ведра лавы без соответствующего разрешения." -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "Использование забаненного ведра воды без соответствующего разрешения." -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "UUID не соответствует этому игроку." -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "Допустимые типы событий: {0}." -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "Если вы хотите вызвать вторжение, допустимые типы вторжений: {0}." -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "Допустимые типы вторжения: {0}." -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "Доступные режимы мира: {0}" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "Варп {0} уже существует." -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "Варп {0} теперь приватный." -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "Варп {0} теперь публичный." -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "Варп добавлен: {0}." -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "Варп {0} удалён" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "В были телепортированы на варп {0}." -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "Варпы ({{0}}/{{1}}):" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "Синтаксис Whisper" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6734,17 +6786,17 @@ msgstr "Создана резервная копия мира ({0})." msgid "World backed up." msgstr "Создана резервная копия мира." -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "Режим мира изменен на {0}." -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "Название мира будет изменено на: {0}" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6758,48 +6810,48 @@ msgstr "Мир сохранен в ({0})" msgid "World saved." msgstr "Мир сохранен." -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "Вы уже вошли в аккаунт, и не можете войти снова." -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "Вы мертвы. Мёртвые игроки не могут возвращаться домой." -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "Вы не вошли в аккаунт. Поэтому вы не можете выйти." @@ -6807,22 +6859,22 @@ msgstr "Вы не вошли в аккаунт. Поэтому вы не мож msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." @@ -6831,93 +6883,97 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "Вы можете использовать '{0}sudo {0}{1}' для принудительного выполнения." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "Вы не можете кикнуть другого администратора." -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "Вы не можете удалить группу гостя по умолчанию." -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "Вы не можете войти в аккаунт, находясь под контролем." -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "Вы не можете войти в аккаунт, пока вы мертвы." -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "Вы не можете войти в аккаунт во время использования предмета." -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." @@ -6926,7 +6982,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." @@ -6935,7 +6991,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." @@ -6944,28 +7000,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "У вас нет доступа к этой команде." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "У вас недостаточно прав для строительства возле спавна." -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "У вас недостаточно прав для строительства в этом регионе." -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "У вас недостаточно прав для строительства на этом сервере." @@ -6973,7 +7029,7 @@ msgstr "У вас недостаточно прав для строительс msgid "You do not have permission to contribute research." msgstr "У вас недостаточно прав для исследования предмета." -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "У вас недостаточно прав для создания данного проджектайла." @@ -6993,15 +7049,15 @@ msgstr "У вас недостаточно прав для заморозки в msgid "You do not have permission to freeze the wind strength of the server." msgstr "У вас недостаточно прав для заморозки силы ветра на сервере." -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7046,12 +7102,12 @@ msgstr "У вас недостаточно прав для изменения с msgid "You do not have permission to modify the world difficulty of the server." msgstr "У вас недостаточно прав для изменения сложности мира на сервере." -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "У вас недостаточно прав для выполнения этого действия." @@ -7059,24 +7115,24 @@ msgstr "У вас недостаточно прав для выполнения msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "У вас недостаточно прав для размещения этого тайла." -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7084,57 +7140,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "У вас недостаточно прав для отправки эмодзи!" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "У вас недостаточно прав, чтобы начать событие {0}." -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "У вас недостаточно прав для телепортации всех других игроков." -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "У вас недостаточно прав для телепортации всех игроков." -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "У вас недостаточно прав для телепортации других игроков." -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7142,11 +7202,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "У вас недостаточно прав для телепортации с помощью пилонов." -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7154,175 +7214,191 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "У вас недостаточно прав для переключения режима бессмертия." -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "У вас недостаточно прав для загрузки локальных данных персонажа других игроков на сервер (SSC)." -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "Вам не удалось изменить ваш пароль." -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "Вам был выдан мут" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "С вас сняли мут" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "Вы успешно вышли из учётной записи." -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "Вы изменили группу {0} на {1}" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "Вы изменили группу {0} на {1} на {2}" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "Ваш пароль от аккаунта был успешно изменён." -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "Вы должны войти в аккаунт, чтобы пользоваться защищёнными регионами." -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "Вы можете призывать стену плоти только в аду." -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Эту команду можно выполнять только в игре." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "Вам нужно переподключиться, чтобы корзина была очищена." -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." @@ -7331,28 +7407,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "Вы отправили {0} на варп {1}." -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "Вы были телепортированы к {0}." -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7360,85 +7436,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "Ваш аккаунт был повышен до супер-администратора на 10 минут." -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "Ваш аккаунт \"{0}\" зарегистрирован." -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "Группа вашего аккаунта не может быть загружена. Пожалуйста, свяжитесь с администрацией сервера." -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "Ваш клиент отправил пустое имя персонажа." -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "Ваша база данных содержит неверные ID пользователей (они должны быть целыми числами)." -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "Ваша группа была изменена на {0} на {1}" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "Ваша группа временно изменена на {0}" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "Данные вашего локального персонажа были загружены на сервер." -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "Ваш пароль: {0}." -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "Ваш предыдущий набор разрешений был восстановлен." -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "Серверные данные вашего персонажа (SSC) были сохранены." -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "Срок действия вашего доступа к временной группе истек." -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/ru_UA/TShockAPI.po b/i18n/ru_UA/TShockAPI.po index 13497bae..366865b0 100644 --- a/i18n/ru_UA/TShockAPI.po +++ b/i18n/ru_UA/TShockAPI.po @@ -1,10 +1,10 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:53\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" -"Language-Team: Russian, Ukraine\n" +"Language-Team: Rսssian, Սkraine\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -211,179 +211,179 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." @@ -392,52 +392,52 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." @@ -446,7 +446,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." @@ -455,7 +455,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." @@ -464,57 +464,57 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." @@ -523,124 +523,124 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." @@ -649,87 +649,87 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -739,55 +739,55 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." @@ -796,53 +796,53 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." @@ -851,313 +851,313 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1172,8 +1172,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1196,43 +1196,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1241,87 +1241,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1330,16 +1330,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1347,162 +1347,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1519,1039 +1519,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2562,27 +2582,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2591,79 +2611,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2672,20 +2692,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2693,20 +2713,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2717,78 +2737,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2801,26 +2821,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2833,87 +2853,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2922,157 +2945,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3080,33 +3103,33 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." @@ -3115,7 +3138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." @@ -3124,402 +3147,412 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3528,163 +3561,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3695,67 +3728,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3768,15 +3805,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3785,38 +3822,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3824,165 +3861,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3995,461 +4032,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4478,108 +4515,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4588,7 +4625,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4596,102 +4633,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4699,24 +4736,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4726,33 +4763,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4760,43 +4797,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4808,9 +4845,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4819,17 +4856,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4838,22 +4875,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4861,105 +4903,105 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" @@ -4968,73 +5010,73 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5044,54 +5086,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5099,65 +5141,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5165,62 +5207,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5228,62 +5270,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5291,19 +5333,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5316,7 +5358,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5325,11 +5367,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5337,43 +5379,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5381,36 +5423,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5422,7 +5464,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5430,47 +5472,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5480,31 +5522,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5516,120 +5559,120 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." @@ -5638,137 +5681,137 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5776,21 +5819,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5799,190 +5842,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5994,31 +6033,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6030,7 +6069,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6038,19 +6077,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6067,52 +6106,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6124,11 +6163,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6149,265 +6188,265 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6416,82 +6455,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6500,7 +6552,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6510,78 +6562,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6591,130 +6643,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6731,17 +6783,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6755,48 +6807,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6804,22 +6856,22 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." @@ -6828,93 +6880,97 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." @@ -6923,7 +6979,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." @@ -6932,7 +6988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." @@ -6941,28 +6997,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6970,7 +7026,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6990,15 +7046,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7043,12 +7099,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7056,24 +7112,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7081,57 +7137,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7139,11 +7199,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7151,175 +7211,191 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." @@ -7328,28 +7404,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7357,85 +7433,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/template.pot b/i18n/template.pot index 9da0b2e0..f0ba4f05 100644 --- a/i18n/template.pot +++ b/i18n/template.pot @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: TShock\n" -"POT-Creation-Date: 2023-08-15 09:53:07+0000\n" -"PO-Revision-Date: 2023-08-15 09:53:09+0000\n" +"POT-Creation-Date: 2026-01-18 05:19:05+0000\n" +"PO-Revision-Date: 2026-01-18 05:19:06+0000\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -10,198 +10,198 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: GetText.NET Extractor\n" -#: ../../TShockAPI/DB/CharacterManager.cs:197 -#: ../../TShockAPI/DB/CharacterManager.cs:267 +#: ../../TShockAPI/DB/CharacterManager.cs:194 +#: ../../TShockAPI/DB/CharacterManager.cs:264 #, csharp-format msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid "" " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', " "'shadewood', 'pearlwood'." msgstr "" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr "" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr "" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid "" " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr "" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid "" " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr "" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr "" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr "" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid "" " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, " "UUID, and IP)" msgstr "" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr "" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr "" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr "" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid "" " Unless {0} is passed to the command, {1} is assumed to be a player or " "player index" msgstr "" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "" "- {0} are provided when you add a ban, and can also be viewed with the {1} " "command." msgstr "" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "" "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "" "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), " "-e (exact, {1} will be treated as identifier)" msgstr "" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "" "- Lists active bans. Color trends towards green as the ban approaches " "expiration" msgstr "" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "" -#: ../../TShockAPI/TShock.cs:999 +#: ../../TShockAPI/TShock.cs:969 msgid "" "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if " "this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:993 +#: ../../TShockAPI/TShock.cs:963 msgid "" "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is " "a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:998 +#: ../../TShockAPI/TShock.cs:968 msgid "" "!!! Login before join is enabled. Existing accounts can login & the server " "password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:987 +#: ../../TShockAPI/TShock.cs:957 msgid "" "!!! The server password in config.json was overridden by the interactive " "prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:992 +#: ../../TShockAPI/TShock.cs:962 msgid "" "!!! UUID login is enabled. If a user's UUID matches an account, the server " "password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "" @@ -211,7 +211,7 @@ msgstr "" msgid "\"{0}\" is not a valid page number." msgstr "" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "" @@ -221,7 +221,7 @@ msgstr "" msgid "\"{0}\" requested REST endpoint: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "" @@ -229,517 +229,517 @@ msgstr "" msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "" -#: ../../TShockAPI/TShock.cs:1695 +#: ../../TShockAPI/TShock.cs:1682 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1703 +#: ../../TShockAPI/TShock.cs:1690 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "" "{0} ({1}) had {2} or more invalid login attempts and was kicked " "automatically." msgstr "" -#: ../../TShockAPI/TShock.cs:1699 +#: ../../TShockAPI/TShock.cs:1686 #, csharp-format msgid "{0} ({1}) has joined." msgstr "" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3587 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3605 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3584 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2672 -#: ../../TShockAPI/GetDataHandlers.cs:3252 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3292 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2042 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." +msgid "{0} changed the wind speed to {1}mph." msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "" -#: ../../TShockAPI/TShock.cs:1434 +#: ../../TShockAPI/TShock.cs:1412 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1693 #, csharp-format msgid "{0} has joined." msgstr "" -#: ../../TShockAPI/TShock.cs:1710 +#: ../../TShockAPI/TShock.cs:1697 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "" -#: ../../TShockAPI/TShock.cs:1433 +#: ../../TShockAPI/TShock.cs:1411 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3596 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3602 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3599 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3593 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2655 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "" "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. " "This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -749,425 +749,425 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6747 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:6746 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2013 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4194 -#: ../../TShockAPI/GetDataHandlers.cs:4196 +#: ../../TShockAPI/GetDataHandlers.cs:4293 +#: ../../TShockAPI/GetDataHandlers.cs:4295 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3608 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3620 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3632 +#: ../../TShockAPI/GetDataHandlers.cs:3726 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3614 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3590 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3611 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3623 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3617 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3639 +#: ../../TShockAPI/GetDataHandlers.cs:3733 #, csharp-format msgid "{0} summoned the {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3016 -#: ../../TShockAPI/GetDataHandlers.cs:3019 +#: ../../TShockAPI/GetDataHandlers.cs:3055 +#: ../../TShockAPI/GetDataHandlers.cs:3058 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3626 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3629 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2040 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2011 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "" -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "" "{0}login - Authenticates you using your password and character " "name." msgstr "" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "" "{0}login - Authenticates you using your username and " "password." msgstr "" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "" @@ -1182,8 +1182,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "" @@ -1202,47 +1202,47 @@ msgid_plural "=== Requested Plugins ===" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "" "A lot of things will fail because of this. You must manually delete and " "re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:992 msgid "" "A malicious server can easily steal a user's UUID. You may consider turning " "this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:1010 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2486 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1253,87 +1253,87 @@ msgid "" "and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1342,18 +1342,18 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "" "All alive NPCs (excluding town NPCs) on the server will be killed if you do " "not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1361,167 +1361,167 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:1032 +#: ../../TShockAPI/TShock.cs:1002 msgid "" "An account has been detected in the user database, but setup-code.txt is " "still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1525 +#: ../../TShockAPI/TShock.cs:1512 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "" "An update check has been queued. If an update is available, you will be " "notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "" "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2671 -#: ../../TShockAPI/GetDataHandlers.cs:3251 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3291 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:471 -#: ../../TShockAPI/TShock.cs:1626 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1613 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:469 -#: ../../TShockAPI/TShock.cs:1624 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1611 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1538,1105 +1538,1152 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:475 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:473 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2037 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3304 +#: ../../TShockAPI/GetDataHandlers.cs:3346 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3297 +#: ../../TShockAPI/GetDataHandlers.cs:3339 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1550 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1557 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1572 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1565 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1585 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1592 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1599 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2738 +#: ../../TShockAPI/Bouncer.cs:2828 #, csharp-format msgid "" "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - " "From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2732 +#: ../../TShockAPI/Bouncer.cs:2822 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2744 +#: ../../TShockAPI/Bouncer.cs:2834 #, csharp-format msgid "" "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs " "list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2756 +#: ../../TShockAPI/Bouncer.cs:2846 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2750 +#: ../../TShockAPI/Bouncer.cs:2840 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2784 +#: ../../TShockAPI/Bouncer.cs:2874 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2777 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "" "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2795 +#: ../../TShockAPI/Bouncer.cs:2885 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2806 +#: ../../TShockAPI/Bouncer.cs:2896 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2770 +#: ../../TShockAPI/Bouncer.cs:2860 #, csharp-format msgid "" "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2598 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2591 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2605 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2614 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2181 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2205 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2197 #, csharp-format msgid "" "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2171 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "" +"Bouncer / OnItemDrop force kicked (attempted to set position to infinity or " +"NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "" +"Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or " +"NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "" "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / " "min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2706 +#: ../../TShockAPI/Bouncer.cs:2796 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2713 +#: ../../TShockAPI/Bouncer.cs:2803 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2687 +#: ../../TShockAPI/Bouncer.cs:2777 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2696 +#: ../../TShockAPI/Bouncer.cs:2786 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1917 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1761 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1779 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1754 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1816 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1925 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1933 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2663 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2656 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2649 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1359 #, csharp-format msgid "" "Bouncer / OnNewProjectile please report to tshock about this! normally this " "is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "" "Bouncer / OnNewProjectile please report to tshock about this! normally this " "is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1400 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1416 #, csharp-format msgid "" "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile " "from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1321 +#, csharp-format +msgid "" +"Bouncer / OnNewProjectile rejected from portal gate from {0} (invalid angle: " +"{1})" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1331 +#, csharp-format +msgid "" +"Bouncer / OnNewProjectile rejected from portal gate from {0} (missing active " +"Portal Gun bolt)" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1379 #, csharp-format msgid "" "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} " "{1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "" "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} " "{1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1354 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "" +"Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "" +"Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2125 #, csharp-format msgid "" "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to " "{1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2079 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2072 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2063 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1476 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1484 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1635 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1627 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1620 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1668 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1676 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1658 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2525 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2538 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2546 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2518 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2398 #, csharp-format msgid "" "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2385 #, csharp-format msgid "" "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2346 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2355 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2363 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2337 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2436 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2421 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2410 #, csharp-format msgid "" "Bouncer / OnPlaceObject rejected object placement with invalid style {1} " "(expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2314 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2321 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2328 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2452 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2374 #, csharp-format msgid "" "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! " "from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2460 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2307 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2491 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2498 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2505 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2484 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1727 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1735 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2045 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:2027 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2036 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:2018 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1978 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1987 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1996 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:2009 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1960 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1969 #, csharp-format msgid "" "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} " "ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2670 +#: ../../TShockAPI/Bouncer.cs:2760 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2693 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2720 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2711 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2684 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2729 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2738 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2578 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2570 #, csharp-format msgid "" "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2559 #, csharp-format msgid "" "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "" "Bouncer / OnPlayerUpdate *would have rejected* from (last network position " "zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "" +"Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity " +"or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "" "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) " "from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "" "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) " "from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "" "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from " "{0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1713 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1530 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1522 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1515 #, csharp-format msgid "" "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2238 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2230 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2289 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2245 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} " "selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} " "expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: " "{1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from tile placement not matching selected item " "createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block " "{0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from wall placement not matching selected item " "createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "" "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2145 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2155 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:413 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:468 -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:488 -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:500 -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:511 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:446 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:518 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:459 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format msgid "" "Bouncer / SendTileRect rejected from out of bounds / build permission from " "{0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:478 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 #, csharp-format msgid "Bouncer / SendTileRect rejected from out of range from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:427 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 #, csharp-format msgid "Bouncer / SendTileRect rejected from size from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:436 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" @@ -2651,28 +2698,28 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2654 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "" "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "" "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is " "not DateTime" @@ -2683,79 +2730,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1355 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2764,20 +2811,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:801 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "" "Configuration, permissions, and regions reload complete. Some changes may " "require a server restart." @@ -2787,16 +2834,16 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1365 +#: ../../TShockAPI/TShock.cs:1340 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" @@ -2813,82 +2860,82 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "" "Could not find the target specified. Check that you have the correct " "spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1471 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "" "Creates a reference tables for Terraria data types and the TShock permission " "system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "" "Creates: with the password as part of the owner group." msgstr "" @@ -2906,26 +2953,26 @@ msgid "" "value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2689 +#: ../../TShockAPI/Bouncer.cs:2779 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2707 +#: ../../TShockAPI/Bouncer.cs:2797 msgid "Death reason outside of normal bounds." msgstr "" @@ -2938,88 +2985,91 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "" "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -3028,157 +3078,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4416 +#: ../../TShockAPI/GetDataHandlers.cs:4515 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2688 +#: ../../TShockAPI/Bouncer.cs:2778 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "" "Failed to upload your character data to the server. Are you logged-in to an " "account?" @@ -3188,479 +3238,494 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "" "Fatal TShock initialization exception: failed to connect to MySQL database. " "See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "" "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3839 +#: ../../TShockAPI/GetDataHandlers.cs:3938 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3847 +#: ../../TShockAPI/GetDataHandlers.cs:3946 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3158 +#: ../../TShockAPI/GetDataHandlers.cs:3197 #, csharp-format msgid "" "GetDataHandlers / HandleChestActive rejected build permission and region " "check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3133 +#: ../../TShockAPI/GetDataHandlers.cs:3172 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2881 +#: ../../TShockAPI/GetDataHandlers.cs:2913 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2866 +#: ../../TShockAPI/GetDataHandlers.cs:2898 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2872 +#: ../../TShockAPI/GetDataHandlers.cs:2904 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2704 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4185 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3028 +#: ../../TShockAPI/GetDataHandlers.cs:2980 +#, csharp-format +msgid "" +"GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the " +"TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3067 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3011 +#: ../../TShockAPI/GetDataHandlers.cs:3050 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3001 +#: ../../TShockAPI/GetDataHandlers.cs:3040 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3290 +#: ../../TShockAPI/GetDataHandlers.cs:3512 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3332 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4130 +#: ../../TShockAPI/GetDataHandlers.cs:4229 #, csharp-format msgid "" "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals " "{0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4123 +#: ../../TShockAPI/GetDataHandlers.cs:4222 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3963 +#: ../../TShockAPI/GetDataHandlers.cs:4062 #, csharp-format msgid "" "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! " "Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4188 +#: ../../TShockAPI/GetDataHandlers.cs:4287 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4182 +#: ../../TShockAPI/GetDataHandlers.cs:4281 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3664 +#: ../../TShockAPI/GetDataHandlers.cs:3763 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3682 +#: ../../TShockAPI/GetDataHandlers.cs:3781 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3691 +#: ../../TShockAPI/GetDataHandlers.cs:3790 #, csharp-format msgid "" "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check " "{0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3712 +#: ../../TShockAPI/GetDataHandlers.cs:3811 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3730 +#: ../../TShockAPI/GetDataHandlers.cs:3829 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3739 +#: ../../TShockAPI/GetDataHandlers.cs:3838 #, csharp-format msgid "" "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3452 +#: ../../TShockAPI/GetDataHandlers.cs:3494 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3479 #, csharp-format msgid "" "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state " -"2 {0} {1}" +"awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2814 +#: ../../TShockAPI/GetDataHandlers.cs:2846 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2557 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2551 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2492 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2485 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2545 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4255 -#: ../../TShockAPI/GetDataHandlers.cs:4261 +#: ../../TShockAPI/GetDataHandlers.cs:4354 +#: ../../TShockAPI/GetDataHandlers.cs:4360 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4270 +#: ../../TShockAPI/GetDataHandlers.cs:4369 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3329 +#: ../../TShockAPI/GetDataHandlers.cs:3371 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2589 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3357 +#: ../../TShockAPI/GetDataHandlers.cs:3399 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2794 +#: ../../TShockAPI/GetDataHandlers.cs:2826 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3183 +#: ../../TShockAPI/GetDataHandlers.cs:3222 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3064 +#: ../../TShockAPI/GetDataHandlers.cs:3103 #, csharp-format msgid "" "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption " "{0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3068 +#: ../../TShockAPI/GetDataHandlers.cs:3107 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3053 +#: ../../TShockAPI/GetDataHandlers.cs:3092 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3395 +#: ../../TShockAPI/GetDataHandlers.cs:3437 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3402 +#: ../../TShockAPI/GetDataHandlers.cs:3444 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3375 +#: ../../TShockAPI/GetDataHandlers.cs:3417 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2737 +#: ../../TShockAPI/GetDataHandlers.cs:2789 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2748 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2757 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2717 +#: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3645 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3548 +#: ../../TShockAPI/GetDataHandlers.cs:3635 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3565 +#: ../../TShockAPI/GetDataHandlers.cs:3652 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3572 +#: ../../TShockAPI/GetDataHandlers.cs:3659 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3483 +#: ../../TShockAPI/GetDataHandlers.cs:3666 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3563 +#, csharp-format +msgid "" +"GetDataHandlers / HandleSpecial rejected enchanted moondial permission " +"(ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3557 +#, csharp-format +msgid "" +"GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 #, csharp-format msgid "" "GetDataHandlers / HandleSpecial rejected enchanted sundial permission " "(ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3477 +#: ../../TShockAPI/GetDataHandlers.cs:3527 #, csharp-format msgid "" "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3467 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4049 +#: ../../TShockAPI/GetDataHandlers.cs:4148 #, csharp-format msgid "" "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4043 +#: ../../TShockAPI/GetDataHandlers.cs:4142 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4055 +#: ../../TShockAPI/GetDataHandlers.cs:4154 #, csharp-format msgid "" "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - " "NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4062 +#: ../../TShockAPI/GetDataHandlers.cs:4161 #, csharp-format msgid "" "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4069 +#: ../../TShockAPI/GetDataHandlers.cs:4168 #, csharp-format msgid "" "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs " "{2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4442 +#: ../../TShockAPI/GetDataHandlers.cs:4541 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4433 +#: ../../TShockAPI/GetDataHandlers.cs:4532 #, csharp-format msgid "" "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds " "{0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3895 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3805 +#: ../../TShockAPI/GetDataHandlers.cs:3904 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3811 +#: ../../TShockAPI/GetDataHandlers.cs:3910 #, csharp-format msgid "" "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3787 +#: ../../TShockAPI/GetDataHandlers.cs:3886 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3885 -#: ../../TShockAPI/GetDataHandlers.cs:3901 -#: ../../TShockAPI/GetDataHandlers.cs:3924 -#: ../../TShockAPI/GetDataHandlers.cs:3944 +#: ../../TShockAPI/GetDataHandlers.cs:3984 +#: ../../TShockAPI/GetDataHandlers.cs:4000 +#: ../../TShockAPI/GetDataHandlers.cs:4023 +#: ../../TShockAPI/GetDataHandlers.cs:4043 #, csharp-format msgid "" "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct " "item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3875 +#: ../../TShockAPI/GetDataHandlers.cs:3974 #, csharp-format msgid "" "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4170 +#: ../../TShockAPI/GetDataHandlers.cs:4269 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3098 +#: ../../TShockAPI/GetDataHandlers.cs:3137 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3091 +#: ../../TShockAPI/GetDataHandlers.cs:3130 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2772 +#: ../../TShockAPI/GetDataHandlers.cs:2804 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2499 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "" "GetDataHandlers / rejecting player for name prefix starting with tsi: or " "tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3533 +#: ../../TShockAPI/GetDataHandlers.cs:3619 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "" "Gives another player a buff or debuff for an amount of time. Putting -1 for " "time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "" "Gives yourself a buff or debuff for an amount of time. Putting -1 for time " "will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3671,173 +3736,179 @@ msgid "" "5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "" "Group \"{0}\" is referencing parent group {1} which is already part of the " "parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "" "Group \"superadmin\" is defined in the database even though it's a reserved " "group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:568 +#: ../../TShockAPI/DB/GroupManager.cs:591 +#, csharp-format +msgid "Group {0} has been modified successfully." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "" "Group {0} is referencing a non existent parent group {1}, parent reference " "was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "" "Group {0} is referencing itself as parent group; parent reference was " "removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4417 +#: ../../TShockAPI/GetDataHandlers.cs:4516 #, csharp-format msgid "" "HandleSyncCavernMonsterType: Player is trying to modify NPC " "cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2182 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2191 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3848,89 +3919,93 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "" "If no amount is specified, it will default to healing the target player by " "their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1477 msgid "" "If this player wasn't hacking, please report the damage threshold they were " "disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2198 msgid "" "If this player wasn't hacking, please report the HealOtherPlayer threshold " "they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1380 msgid "" "If this player wasn't hacking, please report the projectile create threshold " "they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "" "If this player wasn't hacking, please report the tile kill threshold they " "were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1780 msgid "" "If this player wasn't hacking, please report the tile liquid threshold they " "were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "" "If this player wasn't hacking, please report the tile place threshold they " "were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3065 +#: ../../TShockAPI/GetDataHandlers.cs:3104 msgid "" "If this was not skeletron prime related, please report to TShock what " "happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "" "If you are locked out of all admin accounts, ask for help on " "https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "" "If you do not specify a radius, it will use a default radius of {0} around " "your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "" "If you put {0} as the duration, it will use the max possible time of 415 " "days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "" "If you understand, please {0}login now, and then type " @@ -3946,17 +4021,17 @@ msgid "" "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "" "If you're seeing this message and you know what that player did, please " "report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1426 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2500 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3967,39 +4042,39 @@ msgid "" "{1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/TileManager.cs:220 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "" "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -4007,175 +4082,175 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "" "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} " "command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "" "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} " "command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "" "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} " "command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "" "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} " "command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "" "Invalid BCrypt work factor in config file! Creating new hash using default " "work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -4189,492 +4264,492 @@ msgid "" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3271 +#: ../../TShockAPI/GetDataHandlers.cs:3313 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "" "Invalid subcommand! Type {0}group help for more information on valid " "commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "" "Invalid subcommand. Type {0}itemban help for more information on valid " "subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "" "Invalid subcommand. Type {0}projban help for more information on valid " "subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "" "Invalid subcommand. Type {0}tileban help for more information on valid " "subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] " "[invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group addperm " "." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group color [new " "color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group delperm " "." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group parent [new parent group " "name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}item [item amount] [prefix " "id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "" "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "" "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "" "Invalid time string! Proper format: _d_h_m_s, with at least one time " "specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "" "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for " "commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2007 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2006 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4709,110 +4784,110 @@ msgid "" "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:864 -#, csharp-format -msgid "Listening on IP {0}." -msgstr "" - -#: ../../TShockAPI/TShock.cs:845 -#, csharp-format -msgid "Listening on port {0}." -msgstr "" - -#: ../../TShockAPI/Commands.cs:3445 -msgid "listperm [page] - Lists a group's permissions." -msgstr "" - -#: ../../TShockAPI/Commands.cs:613 -msgid "Lists commands or gives help on them." -msgstr "" - -#: ../../TShockAPI/Commands.cs:2110 -msgid "listusers - Lists all REST users and their current active tokens." -msgstr "" - #: ../../TShockAPI/TShock.cs:834 #, csharp-format +msgid "Listening on IP {0}." +msgstr "" + +#: ../../TShockAPI/TShock.cs:815 +#, csharp-format +msgid "Listening on port {0}." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3460 +msgid "listperm [page] - Lists a group's permissions." +msgstr "" + +#: ../../TShockAPI/Commands.cs:618 +msgid "Lists commands or gives help on them." +msgstr "" + +#: ../../TShockAPI/Commands.cs:2125 +msgid "listusers - Lists all REST users and their current active tokens." +msgstr "" + +#: ../../TShockAPI/TShock.cs:804 +#, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:821 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:1016 +#: ../../TShockAPI/TShock.cs:986 msgid "" "Login before join enabled. Users may be prompted for an account specific " "password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4821,7 +4896,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2561 msgid "Malicious portal attempt." msgstr "" @@ -4829,102 +4904,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1860 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2053 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4932,24 +5007,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4961,33 +5036,33 @@ msgid "" "mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:900 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4995,43 +5070,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -5059,19 +5134,19 @@ msgid "" "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "" "Not logged in or Invalid syntax. Proper syntax: {0}password " "." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1468 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -5080,22 +5155,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -5103,182 +5183,182 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "" "Password change attempt for {0} failed for an unknown reason. Check the " "server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "" "Player \"{0}\" has to reconnect first, because they need to delete their " "trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1970 -#: ../../TShockAPI/TSPlayer.cs:1974 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2694 +#: ../../TShockAPI/Bouncer.cs:2701 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1732 +#: ../../TShockAPI/TShock.cs:1719 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:931 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5288,54 +5368,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "" "protect - Sets whether the tiles inside the region are " "protected or not." @@ -5345,65 +5425,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:759 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1232 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2195 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1223 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1375 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1214 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/TShock.cs:1144 -#: ../../TShockAPI/Bouncer.cs:922 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1205 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1771 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1775 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1161 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2461 msgid "Reached TilePlace threshold." msgstr "" @@ -5411,63 +5491,63 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "" "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5475,62 +5555,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2246 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5538,19 +5618,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5566,7 +5646,7 @@ msgid "" "type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5575,11 +5655,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5587,43 +5667,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5631,38 +5711,38 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "" "Sends all tiles from the server to the player to resync the client with the " "actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:774 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5674,7 +5754,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1336 +#: ../../TShockAPI/TShock.cs:1311 msgid "Server is shutting down..." msgstr "" @@ -5682,50 +5762,50 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1727 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "" "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "" "Server-side character data from \"{0}\" has been replaced by their current " "local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5735,31 +5815,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5771,264 +5852,264 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "" "Share your server, talk with admins, and chill on GitHub & Discord. -- " "https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:771 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1076 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "" "Slime rain cannot be activated during normal rain. Stop the normal rainstorm " "and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "" "Specified API endpoint doesn't exist. Refer to the documentation for a list " "of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:435 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:578 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "" "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:455 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:415 -#: ../../TShockAPI/TSPlayer.cs:475 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:495 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:619 -#: ../../TShockAPI/TSPlayer.cs:639 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:659 -#: ../../TShockAPI/TSPlayer.cs:679 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:699 -#: ../../TShockAPI/TSPlayer.cs:719 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:516 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:537 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:557 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:599 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:945 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:954 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:937 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -6036,21 +6117,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -6060,196 +6141,192 @@ msgid "" "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "" "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "" "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "" "The default usergroup could not be found. This may indicate a typo in the " "configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3468 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "" "The guest group could not be found. This may indicate a typo in the " "configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -6265,33 +6342,33 @@ msgid "" "exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "" "The player's character data was successfully uploaded from their initial " "connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6303,7 +6380,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6311,21 +6388,21 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "" "The targeted user cannot have their data uploaded, because they are not a " "player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6342,52 +6419,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6399,11 +6476,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "" "There was an error processing your login or authentication related request." msgstr "" @@ -6423,277 +6500,277 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1049 -#: ../../TShockAPI/TShock.cs:1059 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "" "To get rid of NPCs without making them drop items, use the {0} command " "instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "" "To mute a player without broadcasting to chat, use the command with {0} " "instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1048 -#: ../../TShockAPI/TShock.cs:1058 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:403 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:480 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:492 +#: ../../TShockAPI/TShock.cs:464 msgid "" "TShock encountered a problem from which it cannot recover. The following " "message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1057 +#: ../../TShockAPI/TShock.cs:1027 msgid "" "TShock Notice: setup-code.txt is still present, and the code located in that " "file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:357 +#: ../../TShockAPI/TShock.cs:329 msgid "" "TShock was improperly shut down. Please use the exit command in the future to " "prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:1033 +#: ../../TShockAPI/TShock.cs:1003 msgid "" "TShock will now disable the initial setup system and remove setup-code.txt as " "it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6702,85 +6779,100 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1520 +#: ../../TShockAPI/TShock.cs:1507 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1519 +#: ../../TShockAPI/TShock.cs:1506 msgid "" "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "" "Unable to spawn a Wall of Flesh based on its current state or your current " "location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:493 +#: ../../TShockAPI/GetDataHandlers.cs:3576 +msgid "" +"Unrecognized special effect (Packet 51). Please report this to the TShock " +"developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "" "Until the problem is resolved, TShock will not be able to start (and will " "crash on startup)." @@ -6792,7 +6884,7 @@ msgid "" "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6802,82 +6894,82 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "" "Upload the account information when you joined the server as your Server Side " "Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2058 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:2059 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "" "Use tsi:[number] or tsn:[username] to distinguish between user IDs and " "usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6889,130 +6981,130 @@ msgid "" "privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:394 -#: ../../TShockAPI/TShock.cs:398 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1879 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1895 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1870 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1902 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1910 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1825 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1848 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1841 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1855 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1834 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:479 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -7029,17 +7121,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:854 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:811 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -7053,48 +7145,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1537 +#: ../../TShockAPI/TShock.cs:1524 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6754 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -7102,157 +7194,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6753 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:481 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3486 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4256 +#: ../../TShockAPI/GetDataHandlers.cs:4355 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:829 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:832 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:826 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -7260,7 +7356,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -7280,15 +7376,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2999 +#: ../../TShockAPI/GetDataHandlers.cs:3038 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7336,12 +7432,12 @@ msgid "" "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1817 msgid "You do not have permission to perform this action." msgstr "" @@ -7349,24 +7445,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4110 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2348 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3534 +#: ../../TShockAPI/GetDataHandlers.cs:3620 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7374,57 +7470,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3660 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4171 +#: ../../TShockAPI/GetDataHandlers.cs:4270 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3566 +#: ../../TShockAPI/GetDataHandlers.cs:3653 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4189 +#: ../../TShockAPI/GetDataHandlers.cs:4288 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3559 +#: ../../TShockAPI/GetDataHandlers.cs:3646 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3009 +#: ../../TShockAPI/GetDataHandlers.cs:3048 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3065 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3511 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3876 +#: ../../TShockAPI/GetDataHandlers.cs:3975 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3788 +#: ../../TShockAPI/GetDataHandlers.cs:3887 msgid "You do not have permission to teleport using items." msgstr "" @@ -7432,11 +7532,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3812 +#: ../../TShockAPI/GetDataHandlers.cs:3911 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7444,211 +7544,228 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "" "You do not have permission to upload another player's character join-state " "server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3478 +#: ../../TShockAPI/GetDataHandlers.cs:3667 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3558 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3528 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3575 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "" "You entered a space after {0} instead of a command. Type {0}help for a list " "of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2493 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4271 +#: ../../TShockAPI/GetDataHandlers.cs:4370 msgid "" "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:648 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:639 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2656 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "" "You may wish to consider removing the tshock.ignore.ssc permission or " "negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3489 +#: ../../TShockAPI/GetDataHandlers.cs:3569 +msgid "" +"You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3539 msgid "" "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2558 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2552 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2546 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1742 +#: ../../TShockAPI/TShock.cs:1729 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7656,93 +7773,97 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "" "Your account's group could not be loaded. Please contact server " "administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1464 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1387 +#: ../../TShockAPI/TShock.cs:1364 msgid "" "Your client sent a blank UUID. Configure it to send one or use a different " "client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "" "Your local character data, from your initial connection, has been uploaded to " "the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "" "Your new account has been verified, and the {0}setup system has been turned " "off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3297 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1342 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3275 +#: ../../TShockAPI/GetDataHandlers.cs:3317 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/tok/TShockAPI.po b/i18n/tok/TShockAPI.po index 1ab726c5..51516225 100644 --- a/i18n/tok/TShockAPI.po +++ b/i18n/tok/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2022-12-06 05:53\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: toki pona\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "mi weka e awen SSC (tan tshock.ignore.ssc) tawa jan {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - kama sina li pake: {1} (tenpo {2} li awen)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - kama sina li pake: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'cactus', 'herb', 'mushroom'" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" - (alasa e nanpa IP pi jan weka ni)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4}{5} (weka awen e nimi ni)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (alasa e nanpa musi pi jan ni)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (weka awen e jan ni kepeken nasin ale)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} \"{2}{3}\" {4}{5} (weka awen e nanpa IP ni)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " sona: sitelen {0} li toki e suno 10 e sike lili 30 e sike lili lili 0" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " {0} ala li pana la ilo li kepeken {1}." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " tenpo li pana ala la weka li awen." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " {0} li pana ala la mi sona e {1} sama jan anu nanpa jan" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> li pana e sona lon sama: {0} lon kulupu {1}" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- sina weka e jan la {0} li pana li ken lukin kepeken ilo {1}." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- sina weka e jan la {0} li pana li ken alasa kepeken ilo {1}." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (nimi sona), -u (nanpa UUID), -n (nimi jan), -ip (nanpa IP), -e (wawa, {1} li sama nanpa)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: li kepeken {1} tawa sona pi tenpo weka" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- o pake e kama pi jan weka kepeken nimi sona" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- o pake e kama pi jan weka kepeken nanpa IP" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- o weka awen e jan kepeken nanpa musi (ni li pona tawa nimi nasa)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- kasi:" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- kasi pi kiwen kule:" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- li sitelen e pake kama. pake li kama weka la kule li kama kasi." -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- ante:" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- kasi luka:" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" li nanpa wawa ala!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "mi sona ala e wile \"{0}\"." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "mi sona ala e jan ilo \"{0}\"." @@ -193,7 +193,7 @@ msgstr "mi sona ala e jan ilo \"{0}\"." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" li nanpa ala." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" li nanpa ala." @@ -203,7 +203,7 @@ msgstr "\"{0}\" li nanpa ala." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" li wile e lipu REST: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(toki wawa) " @@ -211,179 +211,179 @@ msgstr "(toki wawa) " msgid "(Super Admin) " msgstr "" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - nanpa lipu: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} (nimi {1})" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) li ante e nimi len pi nimi {2}." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) li ken ala ante e nimi len pi nimi {2}." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "jan {0} ({1}) tan ma '{2}' tan kulupu '{3}' li kama. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "jan {0} ({1}) tan kulupu '{2}' li kama. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "tenpo nanpa {2} la jan {0} ({1}) li kepeken nimi len ike li kama weka." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "jan {0} ({1}) li kama lon." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "jan {0} (nanpa musi: {1}, nanpa nimi: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "jan {0} (nanpa musi: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "jan {0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} (tan tenpo weka {2})" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{0} {1} lon {2} (weka tenpo {3})" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} li kama e jan {1} tawa kulupu {2}." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "{0} li kepeken e sona wawa utala!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "jan {0} li wile kama jo e nimi {1}. taso jan ante li jo e nimi {1}." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "jan {0} li ken kama sijelo {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "jan {0} li weka e {1} tan ni: {2}." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." @@ -393,52 +393,52 @@ msgstr[2] "jan {0} li moli e ijo pi luka {1}." msgstr[3] "jan {0} li moli e ijo pi mute {1}." msgstr[4] "jan {0} li moli e ijo {1}." -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "jan {0} li open e telo sewi ko." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "jan {0} li open e telo sewi." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "jan {0} li ante e sijelo {1} tawa kulupu {2}." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "jan {0} li ante e nanpa sewi monsuta tawa {1}." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "jan {0} li ante e nanpa sewi monsuta tawa 5." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "jan {0} li ante e nimi len tawa sijelo {1}" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "jan {0} li ante e wawa pi kama monsuta tawa {1}." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "jan {0} li ante e wawa pi kama monsuta tawa 600." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "jan {0} li ante e wawa kon tawa {1}." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." @@ -448,7 +448,7 @@ msgstr[2] "jan {0} li weka e ijo pi luka {1} lon sike pi suli {2}." msgstr[3] "jan {0} li weka e ijo pi mute {1} lon sike pi suli {2}." msgstr[4] "jan {0} li weka e ijo pi luka {1} lon sike pi suli {2}." -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." @@ -458,7 +458,7 @@ msgstr[2] "jan {0} li weka e ijo tawa pi luka {1} lon sike pi suli {2}." msgstr[3] "jan {0} li weka e ijo tawa pi mute {1} lon sike pi suli {2}." msgstr[4] "jan {0} li weka e ijo tawa pi mute {1} lon sike pi suli {2}." -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." @@ -468,57 +468,57 @@ msgstr[2] "jan {0} li weka e ijo utala pi luka {1} lon sike pi suli {2}." msgstr[3] "jan {0} li weka e ijo utala pi mute {1} lon sike pi suli {2}." msgstr[4] "jan {0} li weka e ijo utala pi mute {1} lon sike pi suli {2}." -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "jan {0} li weka e musi Alowin." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "jan {0} li weka e musi pi suno Jesuwa." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "jan {0} li kama e musi Alowin." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "jan {0} li kama e musi pi suno Jesuwa." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "jan {0} li weka e telo sewi." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "jan {0} li weka e telo sewi ko." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "jan {0} li kepeken (toki li weka): {1}{2}" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "jan {0} li kepeken {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "jan {0} li ken ala kama tawa sijelo {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." @@ -528,124 +528,124 @@ msgstr[2] "jan {0} li pana e {2} pi luka {1} tawa sina." msgstr[3] "jan {0} li pana e {2} pi mute {1} tawa sina." msgstr[4] "jan {0} li pana e {2} pi mute {1} tawa sina." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "jan {0} li ken pana e leko {1}." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "jan {0} li ken kepeken {1}." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "jan {0} li ken kepeken utala tawa {1}." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "jan {0} li ken ala pana e leko {1}." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "jan {0} li ken ala kepeken utala tawa {1}." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "jan {0} li ken ala kepeken {1}." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "jan {0} li wawa e sina kepeken {1} ({2}) tawa tenpo lili {3}!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "jan {0} li ante e kulupu sina tawa kulupu {1}." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "jan {0} li weka e tawa wawa kama." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "jan {0} li weka e utala suli lon." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "jan {0} li weka e utala suli pi ijo majuna." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "jan {0} li kama lon." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} li kama li jo e nanpa IP {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "jan {0} li sewi wawa e jan {1}." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "jan {0} li sewi e ona." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "jan {0} li sewi e ona." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "jan {0} li weka e ken toki pi jan {1} tan ni: {2}." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "jan {0} li sin e lon sina." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "jan {0} li pana e wile tawa esun pi soweli kasi!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "jan {0} li pana e wile tawa esun pi soweli mun!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "jan {0} li pana e wile tawa esun pi soweli musi!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." @@ -655,87 +655,87 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "" @@ -745,55 +745,55 @@ msgstr "" msgid "{0} is banned! Remove it!" msgstr "" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "{0} li moli ala a!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." @@ -803,53 +803,53 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." @@ -859,313 +859,313 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "jan {0} li weka e sijelo {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "jan {0} li kama e mun loje!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "jan {0} li kama e mun lete!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "jan {0} li kama e utala suli pi jan mani!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "jan {0} li kama e utala suli pi jan tan ma ante!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "jan {0} li kama e lawa mun!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "jan {0} li kama e mun pi kasi loje!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "jan {0} li kama e suno pake!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "jan {0} li kama e {1}!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "jan {0} li kama e sewi suno!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "jan {0} li kama e jan jasima telo!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "jan {0} li kama e utala suli lete!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "jan {0} li tawa e jan {1} tawa sina." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "jan {0} li tawa sina." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "jan {0} li tawa e sina tawa jan {1}." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "jan {0} li wile kepeken (toki li weka): {1}{2}" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "jan {0} li wile kepeken {1}{2}. taso ona li ken ala." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "jan {0} li kama e kiwen mun anpa." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "jan {0} li tawa e sina tawa ma {1}." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "jan {0} li weka awen tan ni: {1}." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "jan {0} li weka tan ni: {1}." -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "jan {0} li tawa sina." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "kulupu pi jan {0} li {1}." -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "nanpa IP sona pi jan {0} li {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "kama sijelo pi jan {0} li lon tenpo {1} {2} UTC{3}" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "kama lon pi sijelo sin pi jan {0} li lon tenpo {1} {2} UTC{3}" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "{0}{1} li jo ala e nimi ante." -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " msgstr "{0}{1} sona: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "ma {3} lon tomo {0} (jan {1}/{2}) @ {4}:{5} (ilo TShock pi musi Terraria nanpa {6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - kama e sijelo sina kepeken nanpa sina en nimi pi musi sina." -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login - kama e sijelo sina kepeken nimi len en nimi pi musi sina." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login - kama e sijelo sina kepeken nimi len en nimi sijelo." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add owner" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add nimi nimilen kulupu -- o lon e sijelo sin" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del nimi -- weka e sijelo" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group nimi kulupu -- ante e kulupu sijelo" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password nimi nimilen -- ante e nimi len sijelo" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "* jan {0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - weka sina li pake tan ni: {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1180,8 +1180,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr " {1}" @@ -1206,43 +1206,43 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "monsuta Deerclops" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "kulupu pi nimi ni li awen lon." -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "ijo mute li pakala tan ni. sina o weka o lon sin e sona ni." -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "monsuta sewi pi ma ante" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "kiwen sewi li kama." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "sinpin Nepula" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "nimi sijelo li wile tawa weka jan. o pana e nimi." -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1251,87 +1251,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "kama sijelo REST tan {0} li pake tan ni: ona li jo e ken {1} li lon nanpa RESTMaximumRequestsPerInterval." -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "sinpin Sola" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1340,16 +1340,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "" @@ -1357,162 +1357,162 @@ msgstr "" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "" @@ -1529,1039 +1529,1059 @@ msgstr "" msgid "Backup Thread" msgstr "" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "sona jan ni li pakala." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2572,27 +2592,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2601,79 +2621,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2682,20 +2702,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2703,20 +2723,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2727,78 +2747,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2811,26 +2831,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2843,87 +2863,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2932,157 +2955,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3090,33 +3113,33 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." @@ -3126,7 +3149,7 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." @@ -3136,402 +3159,412 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3540,163 +3573,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3707,67 +3740,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3780,15 +3817,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3797,38 +3834,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3836,165 +3873,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "ilo ni li lon ala. sina wile sona e ilo lon la o toki e {0}help." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -4007,461 +4044,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4490,108 +4527,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "" @@ -4600,7 +4637,7 @@ msgstr "" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4608,102 +4645,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4711,24 +4748,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "" @@ -4738,33 +4775,33 @@ msgstr "" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4772,43 +4809,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4820,9 +4857,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4831,17 +4868,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4850,22 +4887,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4873,105 +4915,105 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" @@ -4981,73 +5023,73 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5057,54 +5099,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5112,65 +5154,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5178,62 +5220,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5241,62 +5283,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5304,19 +5346,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5329,7 +5371,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5338,11 +5380,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5350,43 +5392,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5394,36 +5436,36 @@ msgstr "" msgid "Saving world..." msgstr "" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5435,7 +5477,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5443,47 +5485,47 @@ msgstr "" msgid "Server map saving..." msgstr "" -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5493,31 +5535,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5529,120 +5572,120 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." @@ -5652,137 +5695,137 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5790,21 +5833,21 @@ msgstr "" msgid "Successful login" msgstr "" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "" @@ -5813,190 +5856,186 @@ msgstr "" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -6008,31 +6047,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6044,7 +6083,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6052,19 +6091,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6081,52 +6120,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "sinpin monsuta" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6138,11 +6177,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "sinpin monsuta li lon." -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6164,265 +6203,265 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "sina awen pana e sona jan pakala." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6431,82 +6470,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6515,7 +6567,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6525,78 +6577,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6606,130 +6658,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6746,17 +6798,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6770,48 +6822,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6819,22 +6871,22 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." @@ -6844,93 +6896,97 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "sina wile weka e awen pona ni la o kepeken '{0}sudo {0}{1}'." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." @@ -6940,7 +6996,7 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." @@ -6950,7 +7006,7 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." @@ -6960,28 +7016,28 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "sina ken ala kepeken ilo ni." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6989,7 +7045,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -7009,15 +7065,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7062,12 +7118,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7075,24 +7131,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7100,57 +7156,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7158,11 +7218,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7170,175 +7230,191 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "ilo ni li pali lon musi taso." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." @@ -7348,28 +7424,28 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7377,85 +7453,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/tr_TR/TShockAPI.po b/i18n/tr_TR/TShockAPI.po index 42c02c61..21824747 100644 --- a/i18n/tr_TR/TShockAPI.po +++ b/i18n/tr_TR/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2023-01-11 13:30\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-15 18:14\n" "Last-Translator: \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -24,166 +24,166 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "SSC kaydı geçiliyor (tshock.ignore.ssc izniyle): {0}" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - Yasaklandın: {1} ({2} kaldı)" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - Yasaklandın: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " 'temel', 'kiraz', 'söğüt', 'boreal', 'maun', 'abanozodunu', 'gölgeodunu', 'inciodunu'." -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " 'kaktüs', 'ot', 'mantar'." -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " 'palmiye', 'bozukpalmiye', 'kızılpalmiye', 'kutsalpalmiye'." -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " 'topaz', 'ametist', 'safir', 'zümrüt', 'yakut', 'elmas', 'kehribar'." -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (Hedeflediğiniz çevrimdışı hesabın IP'sini bulmanıza yarar.)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5} (Bu hesap adını kalıcı olarak banlar)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2} (Hedefin sırasını bulmaya yarar)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} {2}{3} {4} {5} (Çevrimiçi bir oyuncunun hesap, UUID ve IP'sini kalıcı şekilde banlar)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5} (Belirttiğiniz IP adresini kalıcı şekilde banlar)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." msgstr " Örn. {0} değeri, 10 gün, 30 dakika ve 0 saniyeyi temsil eder." -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " Eğer {0} belirtilmediyse komut varsayılan olarak {1} kullanır." -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " Eğer süre belirtilmediyse yasak kalıcı olur." -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " Komuttan {0} geçmediği sürece {1} oyuncu veya oyuncu indeksi olarak kabul edilir" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " -> {0} adına {1} grubuna giriş yapıldı." -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- {0} (bilet numaras) bir ban eklediğinizde verilecektir ve ayrıca {1} komutu ile de görülebilir." -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- {0} bir ban eklediğinizde verilecektir ve ayrıca {1} komutu ile de görülebilir." -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}: -a (hesap adı), -u (UUID, kullanıcı ID numarası), -n (karakter adı), -ip (IP adresi), -e (apaynısı, {1} bunlar tanımlayıcı olarak kullanılır)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}: {1} formatını bir banın uzunluğunu belirlemek için kullanır." -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- Çevrimdışı bir oyuncuyu hesap adıyla banla" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- Çevrimdışı bir oyuncuyu IP adresiyle banla" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- Çevrimiçi bir oyuncuyu sıra numarasıyla banla (Yazması zor isimler için işe yarar)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- Varsayılan ağaçlar :" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- Mücevher ağaçları :" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- Aktif banları listeler. Banın süresinin dolması yaklaştıkça renk yeşile yakınlaşır." -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- Diğer :" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- Palmiye ağaçları :" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "!!! > Eğer bu bir sıkıntı oluşturursa config dosyasında Set DisableLoginBeforeJoin kısmını true olarak ayarlayıp /reload komutunu kullanınız." -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "!!! > Eğer bu bir sıkıntı oluşturursa config dosyasında DisableUUIDLogin 'i true yapıp /reload komutunu kullanınız." -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." msgstr "!!! Join etkinleştirilmeden giriş yapıldı. Varolan hesaplar giriş yapabilir ve sunucu şifresi atlanacaktır." -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "!!! config.json'daki sunucu parolası etkileşimli komut istemi tarafından geçersiz kılındı ve yok sayılacak." -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "!!! UUID girişi aktifleştirildi. Eğer bir kullanıcının UUID'si bir hesapla eşleşirse, sunucu şifresi atlanacaktır." -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\" geçerli bir buff ID'si değildir!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "\"{0}\" geçerli bir temizleme seçeneği değildir." -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." msgstr "\"{0}\" geçerli bir NPC değildir." @@ -193,7 +193,7 @@ msgstr "\"{0}\" geçerli bir NPC değildir." msgid "\"{0}\" is not a valid page number." msgstr "\"{0}\" geçerli bir sayfa numarası değil." -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." msgstr "\"{0}\" geçerli bir alan değildir." @@ -203,7 +203,7 @@ msgstr "\"{0}\" geçerli bir alan değildir." msgid "\"{0}\" requested REST endpoint: {1}" msgstr "\"{0}\" REST çıkışını istedi: {1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "(Sunucu Duyurusu) " @@ -211,513 +211,513 @@ msgstr "(Sunucu Duyurusu) " msgid "(Super Admin) " msgstr "(Süper Admin) " -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - Bilet Numarası: {1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} token)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0} ({1}) {2} için hesap şifresini değiştirdi." -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0} ({1}) {2} için hesap şifresini değiştirmede başarısız oldu." -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "{0} ({1}) '{2}' grubu, '{3}' komunumdan katıldı. ({4}/{5})" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "{0} ({1}) '{2}' grubundan katıldı. ({3}/{4})" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0} ({1}) {2} kere başarısız giriş denemesi yaptı ve otomatik olarak atıldı." -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0} ({1}) katıldı." -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "{0} (Sıra: {1}, Hesap ID'si: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "{0} (İndeks: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} ({2} önce)" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{1} , {0} tarafından {2} 'de banlandı. ({3} önce)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." msgstr "{0} {1} hesabını {2} grubuna ekledi." -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "{0} , Gelişmiş Savaş Teknikleri Sayı 2 Kitabını kullandı!" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" msgstr "{0} , Gelişmiş Savaş Teknikleri Kitabını kullandı!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "{0} , Gezgin Tüccar'ın çantasını kullandı!" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0} {1} hesabına kayıt olmaya çalıştı fakat bu hesap zaten alınmış." -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "{0} , kullanıcı {1} olarak başarıyla doğrulandı." -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0} başarıyla şu kullanıcıya giriş yaptı: {1}." -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." msgstr "{0} , {1} 'i '{2}' sebebinden dolayı banladı." -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." msgstr[0] "{0}, {1} NPC katletti." msgstr[1] "{0}, {1} NPC katletti." -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} slime yağmuru başlattı." -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} yağmur başlattı." -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0}, {1} adlı hesabı {2} grubuna atadı." -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0} maksimum doğmaları {1} ile değiştirdi." -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0} maksimum doğmaları 5 ile değiştirdi." -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0} {1} hesabı için şifre değiştirdi" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0} doğma oranını {1} yaptı." -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0} doğma oranını 600 yaptı." -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0} rüzgar hızını {1} ile değiştirdi." +msgid "{0} changed the wind speed to {1}mph." +msgstr "" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "{0}, {2} büyüklüğünde bir çevereden {1} item yok etti." msgstr[1] "{0}, {2} büyüklüğünde bir çevereden {1} item yok etti." -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "{0}, {2} büyüklüğündeki bir çevreden {1} NPC sildi." msgstr[1] "{0}, {2} büyüklüğündeki bir çevreden {1} NPC sildi." -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "{0}, {2} büyüklüğündeki bir çevreden {1} mermi sildi." msgstr[1] "{0}, {2} büyüklüğündeki bir çevreden {1} mermi sildi." -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0} cadılar bayramı modunu kapattı." -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0} noel modunu kapattı." -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "{0} çıktı." -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0} cadılar bayramı modunu açtı." -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0} noel modunu açtı." -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." msgstr "{0} yağmuru bitirdi." -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." msgstr "{0} slime yağmurunu bitirdi." -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "{0} çalıştırdı (argümanlar çıkarıldı): {1}{2}." -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0} çalıştırdı: {1}{2}." -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." msgstr "{0} şu kullanıcıya girişi başarısız oldu: {1}." -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." -msgstr[0] "" +msgstr[0] "{0} sana {1} {2} verdi." msgstr[1] "{0} sana {1} {2} verdi." -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." msgstr "{0} {1} koyması için izin verildi." -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." msgstr "{0} {1} kullanabilmesi için izin verildi." -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." msgstr "{0} {1} mermisi için izin verildi." -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." msgstr "{0} {1} koyması için izin verilmedi." -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." msgstr "{0} {1} mermisi için izin verilmedi." -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." msgstr "{0} {1} kullanabilmesi için izin verilmedi." -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" msgstr "{0} seni {3} saniyeliğine {1} ile ({2}) buffladı!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0} grubunu {1} ile değiştirdi." -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." msgstr "{0} gelen ışınlanmaları devre dışı bıraktı." -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." msgstr "{0} geçerli istilayı bitirdi." -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." msgstr "{0} Eski Varlığın Ordusu etkinliğini bitirdi." -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0} katıldı." -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0} katıldı. IP: {1}" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0}, {1}'i uzaya uçurdu." -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0} kendini uzaya uçurdu." -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0} kendini uzaya uçurdu." -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "{0} ayrıldı." -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0} {1}'i {2} sebebiyle susturdu." -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." msgstr "{0} seni yeniden canlandırdı." -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "{0} tavşan teslimat servisine bir sipariş verdi!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "{0} kedi teslimat servisine bir sipariş verdi!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "{0} köpek teslimat servisine bir sipariş verdi!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" msgstr "{0} slime teslimat servisine bir sipariş verdi!" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." -msgstr[0] "" +msgstr[0] "{0} {2} kere {1} çağırdı." msgstr[1] "{0} {2} kere {1} çağırdı." -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0} Wall of Flesh çağırdı." -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "{0} 'ın veritabanında SSC bilgisi bulunmakta fakat tshock.ignore.ssc yetkisine sahip. Yani, SSC bilgisi bu yetkiden dolayı kullanılmamakta." -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." msgstr "{0} goblin istilasını başlattı." -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." msgstr "{0} marslı istilasını başlattı." -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." msgstr "{0} korsan istilasını başlattı." -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." msgstr "{0} kış istilasını başlattı." -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "{0}, {1} 'i susturmayı bıraktı." -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "{0} {1}'i {2} HP iyileştirdi." -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0} kendini {1} HP iyileştirdi." -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "{0} kendini {1} HP iyileştirdi." -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." msgstr "{0} zaten {1} yerleştirme yetkisine sahip." -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "{0} zaten {1} kullanma yetkisine sahip." -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." msgstr "{0} zaten {1} mermisini kullanma yetkisine sahip." -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" msgstr "{0} zaten ölü!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "{0} zaten {1} kullanma yetkisine sahip değil." -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." msgstr "{0} zaten {1} yerleştirme yetkisine sahip değil." -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." msgstr "{0} zaten {1} mermisini kullanma yetkisine sahip değil." @@ -727,421 +727,421 @@ msgstr "{0} zaten {1} mermisini kullanma yetkisine sahip değil." msgid "{0} is banned! Remove it!" msgstr "{0} yasaklandı! Eşyayı kaldırın!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "{0} artık ölümsüz değil." -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "{0} seslenmeleri kabul etmiyor." -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." msgstr "{0} yasaklı değil." -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" msgstr "{0} ölü değil!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." msgstr "{0} artık ölümsüz." -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "{0} çevrimdışı ve mesajını alamaz." -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0} seni öldürdü!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" msgstr "{0} {1} adlı kullanıcıyı '{2}' sebebiyle attı" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." msgstr "{0} senin üstünde havai fişek patlattı." -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0} NPC öldürüldü." msgstr[1] "{killcount} NPC öldürüldü." -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0} \"{1}\" hesabını kaydetti." -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." msgstr "{0} kaldı." -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0} {1} 'in adını değiştirdi." -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0} zamanı {1}:{2:D2} yaptı." -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." msgstr "{0} zamanı 00:00 yaptı." -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." msgstr "{0} zamanı 04:30 yaptı." -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." msgstr "{0} zamanı 12:00 yaptı." -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." msgstr "{0} zamanı 19:30 yaptı." -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." msgstr "{0} {1} adlı oyuncuyu {2} hasarla tokatladı." -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." -msgstr[0] "" +msgstr[0] "{0} {2} kere {1} çağırdı." msgstr[1] "{0} {2} kere {1} çağırdı." -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} kanlı ay başlattı." -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} tam ay başlattı." -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} bir fener gecesi başlattı." -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} kum fırtınası başlattı." -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} tutulma başlattı." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" msgstr "{0} {1}. dalgadan buz ayını başlattı!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" msgstr "{0} Eski Varlığın Ordusu etkinliğini başlattı!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" msgstr "{0} {1}. dalgadan balkabağı ayını başlattı!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." msgstr "{0} bir tutulmayı durdurdu." -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." msgstr "{0} şu anki kan ayını durdurdu." -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." msgstr "{0} şu anki kum fırtınası etkinliğini durdurdu." -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} fener gecesi etkinliğini durdurdu." -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} başarıyla hesabı sildi: {1}." -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" msgstr "{0} bir Kan Ayı başlattı!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" msgstr "{0} bir Buz Ayı başlattı!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" msgstr "{0} bir Goblin İstilası başlattı!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" msgstr "{0} bir Marslı İstilası başlattı!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" msgstr "{0} bir Mechdusa çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" msgstr "{0} Ay'ın Efendisi'ni çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" msgstr "{0} bir Balkabağı Ayı çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" msgstr "{0} bir tutulma çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" msgstr "{0} {1} çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" msgstr "{0} Işıkların İmparatoriçesi'ni çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" msgstr "{0} Korsanları çağırdı!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" msgstr "{0} Kar Lejyonu'nu çağırdı!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} {1} adlı oyuncuyu sana ışınladı." -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} sana ışınlandı." -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} seni {1} adlı oyuncuya ışınladı." -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0} çalıştırmayı denedi(argümanlar çıkarıldı) {1}{2}." -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0} çalıştırmayı denedi: {1}{2}." -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." msgstr "{0} meteor tetikledi." -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} seni {1} konumuna ışınladı." -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." msgstr "{0} '{1}' tarafından yasaklandı." -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "{0} '{1}' sebebi ile atıldı" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} sana ışınlandı." -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "{0} adlı oyuncunun grubu {1}." -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "{0} adlı oyuncunun son bilinen IP adresi {1}." -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "{0} adlı oyuncunun son girişi {1} {2} UTC {3}." -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "{0} adlı oyuncunun kayıt tarihi {1} {2} UTC{3}." -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " -msgstr "" +msgstr "{0}{1} yardım: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "{0}{1}/{2} {3} dünyasında @ {4}:{5} (Terraria için TShock v{6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." -msgstr "" +msgstr "{0}login - Kullanıcı adın ve UUID ile sizi doğrular." -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." -msgstr "" +msgstr "{0}login - Karakter ismi ve şifre ile sizi doğrular." -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." -msgstr "" +msgstr "{0}login - Kullanıcı adı ve şifre ile sizi doğrular." -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "* **Komutlar**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "* **Varsayılan**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "* **Alan türü**: `{0}`" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "* **İzinler**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "**Örnek Kullanım**: `{0}?{1}`" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "**İsimler**:" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "**Fiiller**:" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - Yasaklandın: {1}." -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" msgstr "<{0} tarafından> {1}" @@ -1156,8 +1156,8 @@ msgstr "" msgid "{0} from {1} [{2}]" msgstr "" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "<{0} hedefine> {1}" @@ -1166,53 +1166,53 @@ msgstr "<{0} hedefine> {1}" #, csharp-format msgid "=== Dependency ===" msgid_plural "=== Dependencies ===" -msgstr[0] "" +msgstr[0] "=== Bağımlılık ===" msgstr[1] "=== Bağımlılıklar ===" #: ../../TShockPluginManager/NugetCLI.cs:133 #, csharp-format msgid "=== Requested Plugin ===" msgid_plural "=== Requested Plugins ===" -msgstr[0] "" +msgstr[0] "=== İstenen Eklenti ===" msgstr[1] "=== İstenen Eklentiler ===" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." msgstr "" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." -msgstr "" +msgstr "Meteor tetiklendi." -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "" @@ -1221,87 +1221,87 @@ msgstr "" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." -msgstr "" +msgstr "Bu isimle bir kullanıcı hesabı bulunmuyor." -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "{0} hesabı mevcut değil! Şifre değiştiremez." -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." msgstr "{0} hesabı {1} grubuna eklendi." -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "Hesap gerekli! Lütfen {0}register veya {0}login komutlarını kullan!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "Hesap başarıyla silindi." -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "Aktif REST Kullanıcıları ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add - Eşya yasağı ekler." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." msgstr "" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." msgstr "add - Karo banı ekler." -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "{0} beyaz listeye eklendi." -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "{0} grubu {1}'e eklendi." -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "{0} kullanıcısı {1}'e eklendi." -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "" @@ -1310,16 +1310,16 @@ msgstr "" msgid "AddUser SQL returned an error ({0})" msgstr "AddUser SQL bir hata döndürdü ({0})" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "tüm bosslar" @@ -1327,162 +1327,162 @@ msgstr "tüm bosslar" msgid "All done! :)" msgstr "" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." msgstr "Tüm REST tokenleri yok edildi." -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "Ayrılmış hafıza: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow - Gruba eşya kullanma izni verir." -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow - bir gruba ID'si verilen mermiyi kullanma izni sağlar." -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow - bir gruba ID'si verilen karoyu yerleştirme izni sağlar." -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." msgstr "allow - Bir kullanıcıya bir bölge izni verir." -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "allowg - Bir kullanıcı grubuna bölge izni verir." -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "Kehribar Taşağacı" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "Ametist Taşağacı" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "Veritabanında bir hesap bulundu, fakat setup-code.txt de hala mevcut." -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "Veritabanı geri getirmesinde bir hata oluştu: {0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "Veritabanı etkileşiminde bir hata oluştu: {0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "Bir komutu uygularken hata oluştu." -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "Karakter ismi için belirteç." -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "TShock Kullanıcı Hesabı için belirteç." -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "UUID için belirteç." -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "Bir IP adresi için oktet formatında tanımlayıcı, örn., '{0}'." -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." msgstr "Güncelleme kontrolü sıraya alındı. Eğer bir güncelleme varsa kısa bir süre içerisinde haberdar olacaksınız." -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "Rahatsız Et Söz Dizimi" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." msgstr "{0}, {1} saniye rahatsız ediliyor." -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "Bir oyuncuyu belli bir süre oyalar." -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" msgstr "REST çıkışı istendi: {0}" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "Anti-build artık kapalı." -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." msgstr "Anti-build artık açık." -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "Komutlar: add [warp name], del [warp name], list [page]." -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "Komutlar: send [player] [warp name], hide [warp name] [Enable(true/false)]." -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." msgstr "{0} adına giriş yapıldı." -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "OtoKayıt Kapalı" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "OtoKayıt Açık" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "OtoKayıt devre dışı" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "OtoKayıt devrede" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "Otokayıt şuan devre dışı" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "Otokayıt şuan devrede" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "Var olan Yasaklama komutları:" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "Mevcut tanımlayıcılar ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" msgstr "Mevcut Bölge Alt-Komutları ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "Kullanılabilinir REST alt komutları:" @@ -1499,1039 +1499,1059 @@ msgstr "Yedekleme başarısız!" msgid "Backup Thread" msgstr "Yedekleme İşlemi" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "Yedekleme Kapalı" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "Yedekleme Açık" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "Başarısız giriş denemesi." -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" msgstr "ban {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " msgstr "ban {0} " -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" msgstr "" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "{0} yasağı {1} tarafından geri alındı." -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "{0} yasağı artık süresi geçmiş olarak işaretlendi." -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" msgstr "Ban Ekle Söz Dizimi" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "Ban eklendi. {1} tanımlayıcısı için {0} numaralı bilet oluşturuldu." -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "Ban eklendi. Bilet numarası: {0}" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" msgstr "Ban Sil Söz Dizimi" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" msgstr "Ban Detayları Söz Dizimi" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" msgstr "Ban Listesi Söz Dizimi" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "Yasak kaldırıldı." -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Ban Kullanımı Örnekleri" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "{0} banlandı." -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "{0} mermisi yasaklandı." -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "{0} karosu yasaklandı." -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "Banlananlar: {0}." -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." msgstr "Yasaklandı." -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "Banlar ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "Temel Ağaç" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "Betsy" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "Kanlı Ay {0} 'a ayarlandı." -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" msgstr "Kanlı ay durumu: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "Boreal Ağacı" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" +msgid "Bouncer / SendTileRect reimplemented from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" +msgid "Bouncer / SendTileRect rejected from matches from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2542,27 +2562,27 @@ msgstr "" msgid "Broadcast: {0}: {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "" @@ -2571,79 +2591,79 @@ msgstr "" msgid "Cannot load module {0} as it does not derive from {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." msgstr "" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color - Grubun sohbet rengini değiştirir." -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "" @@ -2652,20 +2672,20 @@ msgstr "" msgid "Command failed, check logs for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "" @@ -2673,20 +2693,20 @@ msgstr "" msgid "Connect to the internet to figure out what to download?" msgstr "" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " msgstr "" -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2697,78 +2717,78 @@ msgstr "" msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." msgstr "" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" msgstr "" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." msgstr "" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." msgstr "" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "" @@ -2781,26 +2801,26 @@ msgstr "" msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "" @@ -2813,87 +2833,90 @@ msgstr "" msgid "Death results in a kick" msgstr "" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." msgstr "" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." msgstr "" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." msgstr "" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." msgstr "" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." msgstr "" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." msgstr "" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." msgstr "" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "" @@ -2902,157 +2925,157 @@ msgstr "" msgid "Download and install the given packages?" msgstr "" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." msgstr "" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." msgstr "" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" msgstr "" @@ -3060,442 +3083,452 @@ msgstr "" msgid "Fatal Startup Exception" msgstr "" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" msgstr "" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" msgstr "" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" msgstr "" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "" @@ -3504,163 +3537,163 @@ msgstr "" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." msgstr "" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." msgstr "" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." msgstr "" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "" @@ -3671,67 +3704,71 @@ msgstr "" msgid "holding banned item: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." msgstr "" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "" @@ -3744,15 +3781,15 @@ msgstr "" msgid "If you'd like to see which plugins need which dependencies again, press E." msgstr "" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "" @@ -3761,38 +3798,38 @@ msgstr "" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." msgstr "" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "" @@ -3800,165 +3837,165 @@ msgstr "" msgid "Install the plugins as specified in the plugins.json" msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "İç sunucu hatası." -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." msgstr "" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "Boss türü geçersiz!" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "Geçersiz komut girildi. {0}help yazarak komut listesine ulaşabilirsin." -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." msgstr "" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "NPC hedefi geçersiz." -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "Hedef oyuncu geçersiz." -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." msgstr "Grup geçersiz." -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "Eşya geçersiz." -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" msgstr "" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." msgstr "" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." msgstr "" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." msgstr "" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" msgstr "" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." msgstr "" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." msgstr "" @@ -3971,461 +4008,461 @@ msgid "Invalid REST configuration: \n" "Press any key to exit." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." msgstr "" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." msgstr "" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." msgstr "" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " msgstr "" -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " msgstr "" -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" msgstr "" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " msgstr "" -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " msgstr "" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." msgstr "" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." msgstr "" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." msgstr "" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." msgstr "" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." msgstr "" -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." msgstr "" -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " msgstr "" -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " msgstr "" -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" msgstr "" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." msgstr "" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " msgstr "" -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." msgstr "" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." msgstr "" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." msgstr "" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." msgstr "" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." msgstr "" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." msgstr "" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." msgstr "" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "" -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "" -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." msgstr "" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "" -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." +msgid "Invalid syntax. Proper syntax: {0}wind ." msgstr "" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." msgstr "" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." msgstr "" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." msgstr "" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" msgstr "" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." msgstr "" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." msgstr "" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "IP Adresi: {0}." -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "Atıldı: {0}" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" msgstr "" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "Başka bir oyuncuyu öldürür." -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "" @@ -4454,108 +4491,108 @@ msgstr "" msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." msgstr "" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "" -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "" -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." msgstr "" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "Makine ismi: {0}" @@ -4564,7 +4601,7 @@ msgstr "Makine ismi: {0}" msgid "Make sure that you trust the plugins you're installing." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "" @@ -4572,102 +4609,102 @@ msgstr "" msgid "Manage plugins and their requirements" msgstr "" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "Grupları yönetir." -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "Eşya yasaklamalarını yönetir." -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "Oyuncu yasaklamalarını yönetir." -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "Mermi yasaklamalarını yönetir." -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "Bölgeleri yönetir." -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "REST API sistemini yönetir." -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "Sunucu beyaz listesini yönetir." -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "Karo yasaklamalarını yönetir." -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "Kullanıcı hesaplarını yönetir." -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." msgstr "{0} bölgesi korumalı olarak işaretlendi." -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." msgstr "{0} bölgesi korumasız olarak işaretlendi." -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "Bellek kullanımı: {0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "Mesaj: {0}: {1}: {2}" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." msgstr "Eksik eşya ismi/kodu." -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." msgstr "" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "" @@ -4675,24 +4712,24 @@ msgstr "" msgid "Msg ID not implemented" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "N/A" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "İsim: {0}" @@ -4702,33 +4739,33 @@ msgstr "İsim: {0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "Asla." -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" msgstr "Yeni isim çok büyük!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" msgstr "" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "" @@ -4736,43 +4773,43 @@ msgstr "" msgid "No help available." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." msgstr "" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "" @@ -4784,9 +4821,9 @@ msgstr "" msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "" @@ -4795,17 +4832,17 @@ msgstr "" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "" @@ -4814,22 +4851,27 @@ msgstr "" msgid "One moment..." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "İşletim sistemi: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "" @@ -4837,178 +4879,178 @@ msgstr "" msgid "Page {{0}} of {{1}}" msgstr "" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." msgstr "" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" msgstr "Yol: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "Plantera" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." msgstr "" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." msgstr "" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." msgstr "" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "" @@ -5018,54 +5060,54 @@ msgstr "" msgid "Possible problem with your database - is Sqlite3.dll present?" msgstr "" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." msgstr "" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." msgstr "" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." msgstr "" @@ -5073,65 +5115,65 @@ msgstr "" msgid "Protected regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "" @@ -5139,62 +5181,62 @@ msgstr "" msgid "Read the message below to find out more." msgstr "" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "Sebep: {0}." -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" msgstr "" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "" @@ -5202,62 +5244,62 @@ msgstr "" msgid "Regions at this point: " msgstr "" -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." msgstr "" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." msgstr "" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "" @@ -5265,19 +5307,19 @@ msgstr "" msgid "RemoveUser SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." msgstr "" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." msgstr "" @@ -5290,7 +5332,7 @@ msgstr "" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "" @@ -5299,11 +5341,11 @@ msgstr "" msgid "resetTime {0}, direct {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "" @@ -5311,43 +5353,43 @@ msgstr "" msgid "Retrying in 5 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "" @@ -5355,36 +5397,36 @@ msgstr "" msgid "Saving world..." msgstr "Dünya kaydediliyor..." -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "Seed: {0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." msgstr "" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" msgstr "" @@ -5396,7 +5438,7 @@ msgstr "" msgid "Server is full. No reserved slots open." msgstr "" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." msgstr "" @@ -5404,47 +5446,47 @@ msgstr "" msgid "Server map saving..." msgstr "Sunucu haritası kaydediliyor..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "Sunucu kapatılıyor: " -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "Sunucu kapatılıyor!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "Sunucu kapatılıyor." -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." msgstr "Sunucu taraflı karakter etkin. Oynayabilmek için giriş yapman gerekli." -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" msgstr "" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." msgstr "" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." msgstr "set <1/2> - Geçici bölge noktaları ayarlar." -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "" @@ -5454,31 +5496,32 @@ msgstr "" msgid "Set temp point {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "" @@ -5490,257 +5533,257 @@ msgstr "" msgid "SetUserUUID SQL returned an error" msgstr "" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" msgstr "" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "" -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "" -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "Boyut: {0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "Skeletron" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "Oyuncuyu tokatlayıp hasar verir." -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "Üzgünüz, bir hata oluştu: {0}." -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:406 +#: ../../TShockAPI/Commands.cs:411 msgid "Spawns a number of bosses around you." msgstr "" -#: ../../TShockAPI/Commands.cs:411 +#: ../../TShockAPI/Commands.cs:416 msgid "Spawns a number of mobs around you." msgstr "" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." msgstr "" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." msgstr "" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." msgstr "" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." msgstr "" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." msgstr "" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "" @@ -5748,21 +5791,21 @@ msgstr "" msgid "Successful login" msgstr "Başarılı giriş" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "" -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." msgstr "" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" msgstr "Yenilendi!" @@ -5771,190 +5814,186 @@ msgstr "Yenilendi!" msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." msgstr "" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "" -#: ../../TShockAPI/Commands.cs:441 +#: ../../TShockAPI/Commands.cs:446 msgid "Teleports a player to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:582 +#: ../../TShockAPI/Commands.cs:587 msgid "Teleports you to a warp point or manages warps." msgstr "" -#: ../../TShockAPI/Commands.cs:446 +#: ../../TShockAPI/Commands.cs:451 msgid "Teleports you to an npc." msgstr "" -#: ../../TShockAPI/Commands.cs:451 +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." msgstr "" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." msgstr "Geçici olarak Super Admin'e yükseltir." -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "Geçici olarak başka bir oyuncunun grubunu değiştirir." -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "" -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." msgstr "" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." msgstr "" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "" @@ -5966,31 +6005,31 @@ msgstr "" msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." msgstr "" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." msgstr "" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "" @@ -6002,7 +6041,7 @@ msgstr "" msgid "The server is out of date. Latest version: " msgstr "" -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "" @@ -6010,19 +6049,19 @@ msgstr "" msgid "The specified token queued for destruction failed to be deleted." msgstr "" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "" -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." msgstr "" @@ -6039,52 +6078,52 @@ msgstr "" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." msgstr "" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "" @@ -6096,11 +6135,11 @@ msgstr "" msgid "There are no regions at this point." msgstr "" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." msgstr "" @@ -6119,265 +6158,265 @@ msgid_plural "These are the plugins you requested to install" msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" msgstr "" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." msgstr "" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." msgstr "" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." msgstr "Çok fazla başarısız giriş denemesi." -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." msgstr "" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "" -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." msgstr "" @@ -6386,82 +6425,95 @@ msgstr "" msgid "Type / {{0}} for more." msgstr "" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "" @@ -6470,7 +6522,7 @@ msgstr "" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "" @@ -6480,78 +6532,78 @@ msgstr "" msgid "UpdateManager warning: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "" @@ -6561,130 +6613,130 @@ msgstr "" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" msgstr "" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "" @@ -6701,17 +6753,17 @@ msgstr "" msgid "World backed up." msgstr "" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "" @@ -6725,48 +6777,48 @@ msgstr "" msgid "World saved." msgstr "" -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" msgstr "" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "" @@ -6774,157 +6826,161 @@ msgstr "" msgid "You are not on the whitelist." msgstr "" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "'{0}sudo {0}{1}' yazarak bu korumayı atlayabilirsin." -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" msgstr "" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" msgstr "" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" msgstr "" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." msgstr "Bu komut için erişimin yok." -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "" @@ -6932,7 +6988,7 @@ msgstr "" msgid "You do not have permission to contribute research." msgstr "" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." msgstr "" @@ -6952,15 +7008,15 @@ msgstr "" msgid "You do not have permission to freeze the wind strength of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." msgstr "" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." msgstr "" @@ -7005,12 +7061,12 @@ msgstr "" msgid "You do not have permission to modify the world difficulty of the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" msgstr "" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "" @@ -7018,24 +7074,24 @@ msgstr "" msgid "You do not have permission to place actuators." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." msgstr "" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." msgstr "" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." msgstr "" @@ -7043,57 +7099,61 @@ msgstr "" msgid "You do not have permission to send emotes!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." msgstr "" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" msgstr "" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." msgstr "" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." msgstr "" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." msgstr "" @@ -7101,11 +7161,11 @@ msgstr "" msgid "You do not have permission to teleport using pylons." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." msgstr "" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." msgstr "" @@ -7113,203 +7173,219 @@ msgstr "" msgid "You do not have permission to toggle godmode." msgstr "" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." msgstr "" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." msgstr "" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." msgstr "" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "Bu komutu oyun içinden kullanman gerek." -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." msgstr[0] "" msgstr[1] "" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." msgstr "" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" msgstr "" @@ -7317,85 +7393,89 @@ msgstr "" msgid "You're trying to sync, but you don't have a packages.json file." msgstr "" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." msgstr "" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" msgstr "" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" msgstr "" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "Şifren {0}." -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." msgstr "" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "" diff --git a/i18n/zh_CN/TShockAPI.po b/i18n/zh_CN/TShockAPI.po index f60d7727..f4223e16 100644 --- a/i18n/zh_CN/TShockAPI.po +++ b/i18n/zh_CN/TShockAPI.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: tshock\n" -"POT-Creation-Date: 2022-12-06 05:43:49+0000\n" -"PO-Revision-Date: 2023-01-04 07:35\n" +"POT-Creation-Date: 2025-06-15 18:04:23+0000\n" +"PO-Revision-Date: 2025-06-17 00:05\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -24,186 +24,186 @@ msgctxt "{0} is a player name" msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "由于{0}拥有tshock.ignore.ssc权限,跳过服务端存档" -#: ../../TShockAPI/DB/BanManager.cs:213 +#: ../../TShockAPI/DB/BanManager.cs:211 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason, {2} is a timestamp" msgid "#{0} - You are banned: {1} ({2} remaining)" msgstr "#{0} - 你已被封禁,原因:{1} (剩余时间{2} )" -#: ../../TShockAPI/DB/BanManager.cs:208 +#: ../../TShockAPI/DB/BanManager.cs:206 #, csharp-format msgctxt "{0} is ban number, {1} is ban reason" msgid "#{0} - You are banned: {1}" msgstr "#{0} - 你已被封禁,原因: {1}" -#: ../../TShockAPI/Commands.cs:6499 +#: ../../TShockAPI/Commands.cs:6515 msgid " 'basic', 'sakura', 'willow', 'boreal', 'mahogany', 'ebonwood', 'shadewood', 'pearlwood'." msgstr " basic(普通)、sakura(樱花树)、willow(黄柳树)、boreal(针叶树)、mahogany(红木树)、ebonwood(乌木树)、shadewood(暗影木树)、pearlwood(珍珠木树)" -#: ../../TShockAPI/Commands.cs:6505 +#: ../../TShockAPI/Commands.cs:6521 msgid " 'cactus', 'herb', 'mushroom'." msgstr " cactus(仙人掌)、herb(草药)、mushroom(蘑菇)" -#: ../../TShockAPI/Commands.cs:6501 +#: ../../TShockAPI/Commands.cs:6517 msgid " 'palm', 'corruptpalm', 'crimsonpalm', 'hallowpalm'." msgstr " palm(棕榈树)、corruptpalm(乌木棕榈树)、crimsonpalm(阴影木棕榈树)、hallowpalm(珍珠木棕榈树)" -#: ../../TShockAPI/Commands.cs:6503 +#: ../../TShockAPI/Commands.cs:6519 msgid " 'topaz', 'amethyst', 'sapphire', 'emerald', 'ruby', 'diamond', 'amber'." msgstr " topaz(黄玉)、amethyst(紫晶)、sapphire(蓝玉)、emerald(翡翠)、ruby(红玉)、diamond(钻石)、amber(琥珀)" -#: ../../TShockAPI/Commands.cs:1446 +#: ../../TShockAPI/Commands.cs:1460 #, csharp-format msgid " {0}{1} \"{2}\" (Find the IP associated with the offline target's account)" msgstr " {0}{1} \"{2}\" (找出离线玩家的IP地址)" -#: ../../TShockAPI/Commands.cs:1444 +#: ../../TShockAPI/Commands.cs:1458 #, csharp-format msgid " {0}{1} \"{2}{3}\" {4} {5} (Permanently bans this account name)" msgstr " {0}{1} \"{2}{3}\" {4} {5}(永久封禁这个玩家名)" -#: ../../TShockAPI/Commands.cs:1449 +#: ../../TShockAPI/Commands.cs:1463 #, csharp-format msgid " {0}{1} {2} (Find the player index for the target)" msgstr " {0}{1} {2}(找到目标玩家的序号)" -#: ../../TShockAPI/Commands.cs:1450 +#: ../../TShockAPI/Commands.cs:1464 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans the online player by Account, UUID, and IP)" msgstr " {0}{1} \"{2}{3}\" {4} {5}(永久封禁这个玩家名、UUID和IP地址)" -#: ../../TShockAPI/Commands.cs:1447 +#: ../../TShockAPI/Commands.cs:1461 #, csharp-format msgid " {0}{1} {2}{3} {4} {5} (Permanently bans this IP address)" msgstr " {0}{1} {2}{3} {4} {5}(永久封禁这个IP地址)" -#: ../../TShockAPI/Commands.cs:1386 +#: ../../TShockAPI/Commands.cs:1400 #, csharp-format msgid " Eg a value of {0} would represent 10 days, 30 minutes, 0 seconds." -msgstr " 例如{0}为10天30分钟0秒" +msgstr " 例如:{0}表示10天30分钟0秒。" -#: ../../TShockAPI/Commands.cs:1390 +#: ../../TShockAPI/Commands.cs:1404 #, csharp-format msgid " If no {0} are specified, the command uses {1} by default." msgstr " {0}在没有明确指定时默认值为{1}。" -#: ../../TShockAPI/Commands.cs:1387 +#: ../../TShockAPI/Commands.cs:1401 msgid " If no duration is provided, the ban will be permanent." msgstr " 如果没有写明期限,那么默认为永久封禁。" -#: ../../TShockAPI/Commands.cs:1389 +#: ../../TShockAPI/Commands.cs:1403 #, csharp-format msgid " Unless {0} is passed to the command, {1} is assumed to be a player or player index" msgstr " {1}会被作为玩家名称或序号进行识别,除非添加了参数{0}。" -#: ../../TShockAPI/Commands.cs:1262 +#: ../../TShockAPI/Commands.cs:1276 #, csharp-format msgid " -> Logged-in as: {0}; in group {1}." msgstr " ->登录为用户 {0} , 在组 {1} 中。" -#: ../../TShockAPI/Commands.cs:1398 +#: ../../TShockAPI/Commands.cs:1412 #, csharp-format msgid "- {0} are provided when you add a ban, and can also be viewed with the {1} command." msgstr "- 在封禁时可以获得一个{0},也可以通过{1}指令查询。" -#: ../../TShockAPI/Commands.cs:1414 +#: ../../TShockAPI/Commands.cs:1428 #, csharp-format msgid "- {0} are provided when you add a ban, and can be found with the {1} command." msgstr "- 在封禁时可以获得一个{0},也可以通过{1}指令查询。" -#: ../../TShockAPI/Commands.cs:1388 +#: ../../TShockAPI/Commands.cs:1402 #, csharp-format msgid "- {0}: -a (account name), -u (UUID), -n (character name), -ip (IP address), -e (exact, {1} will be treated as identifier)" msgstr "- {0}:-a(用户名)、-u(UUID)、-n(角色名)、-ip(IP地址)、-e(精确匹配,将{1}视作匹配代码)" -#: ../../TShockAPI/Commands.cs:1385 +#: ../../TShockAPI/Commands.cs:1399 #, csharp-format msgid "- {0}: uses the format {1} to determine the length of the ban." msgstr "- {0}:使用{1}格式来指定封禁的期限。" -#: ../../TShockAPI/Commands.cs:1443 +#: ../../TShockAPI/Commands.cs:1457 msgid "- Ban an offline player by account name" msgstr "- 根据用户名封禁一个不在线的玩家" -#: ../../TShockAPI/Commands.cs:1445 +#: ../../TShockAPI/Commands.cs:1459 msgid "- Ban an offline player by IP address" msgstr "- 通过IP地址封禁离线的玩家" -#: ../../TShockAPI/Commands.cs:1448 +#: ../../TShockAPI/Commands.cs:1462 msgid "- Ban an online player by index (Useful for hard to type names)" msgstr "- 通过玩家序号来封禁在线的玩家(如果他们的名字不方便输入的话)" -#: ../../TShockAPI/Commands.cs:6498 +#: ../../TShockAPI/Commands.cs:6514 msgid "- Default trees :" msgstr "- 普通树木:" -#: ../../TShockAPI/Commands.cs:6502 +#: ../../TShockAPI/Commands.cs:6518 msgid "- Gem trees :" msgstr "- 宝石树:" -#: ../../TShockAPI/Commands.cs:1406 +#: ../../TShockAPI/Commands.cs:1420 msgid "- Lists active bans. Color trends towards green as the ban approaches expiration" msgstr "- 列出目前生效的封禁。颜色随着剩余时间而改变,即将到期的封禁更加靠近绿色。" -#: ../../TShockAPI/Commands.cs:6504 +#: ../../TShockAPI/Commands.cs:6520 msgid "- Misc :" msgstr "- 其他植物:" -#: ../../TShockAPI/Commands.cs:6500 +#: ../../TShockAPI/Commands.cs:6516 msgid "- Palm trees :" msgstr "- 棕榈树:" -#: ../../TShockAPI/TShock.cs:963 +#: ../../TShockAPI/TShock.cs:969 msgid "!!! > Set DisableLoginBeforeJoin to true in the config file and /reload if this is a problem." msgstr "!!! > 如果你不希望出现这个情况的话,在配置文件中将DisableLoginBeforeJoin设置为true并执行/reload指令。" -#: ../../TShockAPI/TShock.cs:957 +#: ../../TShockAPI/TShock.cs:963 msgid "!!! > Set DisableUUIDLogin to true in the config file and /reload if this is a problem." msgstr "!!! > 如果你不希望出现这个情况的话,在配置文件中将DisableUUIDLogin设置为true并执行/reload指令。" -#: ../../TShockAPI/TShock.cs:962 +#: ../../TShockAPI/TShock.cs:968 msgid "!!! Login before join is enabled. Existing accounts can login & the server password will be bypassed." -msgstr "!!! DisableLoginBeforeJoin(禁止进入游戏前自动登录)已关闭,因此现有的玩家将不需要输入服务器密码,自动登录。" +msgstr "!!! 你开启了进入游戏前自动登录,因此已注册的玩家将不需要输入服务器密码,而是输入账号的密码。" -#: ../../TShockAPI/TShock.cs:951 +#: ../../TShockAPI/TShock.cs:957 msgid "!!! The server password in config.json was overridden by the interactive prompt and will be ignored." msgstr "!!! 在开启服务器时手动输入了密码,因此忽略了配置文件config.json中设置的密码。" -#: ../../TShockAPI/TShock.cs:956 +#: ../../TShockAPI/TShock.cs:962 msgid "!!! UUID login is enabled. If a user's UUID matches an account, the server password will be bypassed." msgstr "!!! DisableUUIDLogin(禁止UUID自动登录)已关闭,因此UUID匹配的玩家将不需要输入服务器密码,自动登录。" -#: ../../TShockAPI/Commands.cs:6409 +#: ../../TShockAPI/Commands.cs:6425 #, csharp-format msgid "\"{0}\" is not a valid buff ID!" msgstr "\"{0}\"不是一个有效的状态ID!" -#: ../../TShockAPI/Commands.cs:5906 +#: ../../TShockAPI/Commands.cs:5922 #, csharp-format msgid "\"{0}\" is not a valid clear option." msgstr "\"{0}\" 不是一个有效的清理选项。" -#: ../../TShockAPI/Commands.cs:6026 +#: ../../TShockAPI/Commands.cs:6042 #, csharp-format msgid "\"{0}\" is not a valid NPC." -msgstr "\"{0}\" 不是一个有效的NPC" +msgstr "\"{0}\" 不是一个有效的NPC。" #: ../../TShockAPI/PaginationTools.cs:283 #, csharp-format msgid "\"{0}\" is not a valid page number." msgstr "“{0}”不是一个有效的页码。" -#: ../../TShockAPI/Commands.cs:5826 +#: ../../TShockAPI/Commands.cs:5842 #, csharp-format msgid "\"{0}\" is not a valid radius." -msgstr "\"{0}\" 不是一个有效的半径" +msgstr "\"{0}\" 不是一个有效的半径。" #: ../../TShockAPI/Rest/SecureRest.cs:213 #, csharp-format msgid "\"{0}\" requested REST endpoint: {1}" msgstr "“{0}”请求了REST端点:{1}" -#: ../../TShockAPI/Commands.cs:2020 +#: ../../TShockAPI/Commands.cs:2034 msgid "(Server Broadcast) " msgstr "[服务器广播]" @@ -211,932 +211,932 @@ msgstr "[服务器广播]" msgid "(Super Admin) " msgstr "(超级管理员)" -#: ../../TShockAPI/Commands.cs:1461 +#: ../../TShockAPI/Commands.cs:1475 #, csharp-format msgid "{0} - Ticket Number: {1}" msgstr "{0} - 回执号码{1}" -#: ../../TShockAPI/Commands.cs:2088 +#: ../../TShockAPI/Commands.cs:2103 #, csharp-format msgid "{0} ({1} tokens)" msgstr "{0} ({1} 令牌)" -#: ../../TShockAPI/Commands.cs:976 +#: ../../TShockAPI/Commands.cs:986 #, csharp-format msgid "{0} ({1}) changed the password for account {2}." msgstr "{0}({1})更改了账号“{2}”的密码。" -#: ../../TShockAPI/Commands.cs:986 +#: ../../TShockAPI/Commands.cs:996 #, csharp-format msgid "{0} ({1}) failed to change the password for account {2}." msgstr "{0}({1})更改账号“{2}”的密码失败。" -#: ../../TShockAPI/TShock.cs:1659 +#: ../../TShockAPI/TShock.cs:1677 #, csharp-format msgid "{0} ({1}) from '{2}' group from '{3}' joined. ({4}/{5})" msgstr "{0}已加入服务器(用户组:{2},IP地址:{1},地区:{3})。服务器人数:{4}/{5}" -#: ../../TShockAPI/TShock.cs:1667 +#: ../../TShockAPI/TShock.cs:1685 #, csharp-format msgid "{0} ({1}) from '{2}' group joined. ({3}/{4})" msgstr "{0}已加入服务器(用户组:{2},IP地址:{1})。服务器人数:{3}/{4}" -#: ../../TShockAPI/Commands.cs:775 +#: ../../TShockAPI/Commands.cs:785 #, csharp-format msgid "{0} ({1}) had {2} or more invalid login attempts and was kicked automatically." msgstr "{0}({1})尝试登录失败{2}次或以上而被踢出服务器。" -#: ../../TShockAPI/TShock.cs:1663 +#: ../../TShockAPI/TShock.cs:1681 #, csharp-format msgid "{0} ({1}) has joined." msgstr "{0}({1})加入了服务器。" -#: ../../TShockAPI/Commands.cs:5354 +#: ../../TShockAPI/Commands.cs:5370 #, csharp-format msgid "{0} (Index: {1}, Account ID: {2})" msgstr "{0} (索引: {1}, 账户ID: {2})" -#: ../../TShockAPI/Commands.cs:5356 +#: ../../TShockAPI/Commands.cs:5372 #, csharp-format msgid "{0} (Index: {1})" msgstr "{0} (索引: {1})" -#: ../../TShockAPI/Commands.cs:1405 +#: ../../TShockAPI/Commands.cs:1419 #, csharp-format msgid "{0} [{1}]" msgstr "{0} [{1}]" -#: ../../TShockAPI/Commands.cs:6011 +#: ../../TShockAPI/Commands.cs:6027 #, csharp-format msgid "{0} [{1}|{2}]" msgstr "{0} [{1}|{2}]" -#: ../../TShockAPI/Commands.cs:1462 -#: ../../TShockAPI/Commands.cs:1463 +#: ../../TShockAPI/Commands.cs:1476 +#: ../../TShockAPI/Commands.cs:1477 #, csharp-format msgid "{0} {1}" msgstr "{0} {1}" -#: ../../TShockAPI/Commands.cs:1467 +#: ../../TShockAPI/Commands.cs:1481 #, csharp-format msgid "{0} {1} ({2} ago)" msgstr "{0} {1} ({2} 以前)" -#: ../../TShockAPI/Commands.cs:1481 +#: ../../TShockAPI/Commands.cs:1495 #, csharp-format msgid "{0} {1} ({2})" msgstr "{0} {1} ({2})" -#: ../../TShockAPI/Commands.cs:5328 +#: ../../TShockAPI/Commands.cs:5344 #, csharp-format msgid "{0} {1} {2}" msgstr "{0} {1} {2}" -#: ../../TShockAPI/Commands.cs:1464 +#: ../../TShockAPI/Commands.cs:1478 #, csharp-format msgid "{0} {1} on {2} ({3} ago)" msgstr "{0} {1} 在 {2} ({3} 以前)" -#: ../../TShockAPI/Commands.cs:6368 +#: ../../TShockAPI/Commands.cs:6384 #, csharp-format msgid "{0} <\"{1}|{2}\"> [{3}]" msgstr "{0} <\"{1}|{2}\"> [{3}]" -#: ../../TShockAPI/Commands.cs:1397 -#: ../../TShockAPI/Commands.cs:1413 -#: ../../TShockAPI/Commands.cs:5628 -#: ../../TShockAPI/Commands.cs:5918 +#: ../../TShockAPI/Commands.cs:1411 +#: ../../TShockAPI/Commands.cs:1427 +#: ../../TShockAPI/Commands.cs:5644 +#: ../../TShockAPI/Commands.cs:5934 #, csharp-format msgid "{0} <{1}>" msgstr "{0} <{1}>" -#: ../../TShockAPI/Commands.cs:5462 -#: ../../TShockAPI/Commands.cs:6308 +#: ../../TShockAPI/Commands.cs:5478 +#: ../../TShockAPI/Commands.cs:6324 #, csharp-format msgid "{0} <{1}> [{2}]" msgstr "{0} <{1}> [{2}]" -#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1398 #, csharp-format msgid "{0} <{1}> [{2}] [{3}] [{4}]" msgstr "{0} <{1}> [{2}] [{3}] [{4}]" -#: ../../TShockAPI/Commands.cs:5684 +#: ../../TShockAPI/Commands.cs:5700 #, csharp-format msgid "{0} <{1}> [{2}|{3}|{4}|{5}]" msgstr "{0} <{1}> [{2}|{3}|{4}|{5}]" -#: ../../TShockAPI/Commands.cs:5519 -#: ../../TShockAPI/Commands.cs:5600 +#: ../../TShockAPI/Commands.cs:5535 +#: ../../TShockAPI/Commands.cs:5616 #, csharp-format msgid "{0} <{1}> <{2}>" msgstr "{0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:6418 +#: ../../TShockAPI/Commands.cs:6434 #, csharp-format msgid "{0} <{1}> <{2}|{3}> [{4}]" msgstr "{0} <{1}> <{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:5815 +#: ../../TShockAPI/Commands.cs:5831 #, csharp-format msgid "{0} <{1}|{2}|{3}> [{4}]" msgstr "{0} <{1}|{2}|{3}> [{4}]" -#: ../../TShockAPI/Commands.cs:1106 +#: ../../TShockAPI/Commands.cs:1116 #, csharp-format msgid "{0} added account {1} to group {2}." -msgstr "{0} 将账号 {1} 添加至组 {2}!" +msgstr "{0} 将账号 {1} 添加至组 {2}。" -#: ../../TShockAPI/GetDataHandlers.cs:3546 +#: ../../TShockAPI/GetDataHandlers.cs:3678 #, csharp-format msgid "{0} applied advanced combat techniques volume 2!" msgstr "{0}使用了先进战斗技术([i:5336])。" -#: ../../TShockAPI/GetDataHandlers.cs:3564 +#: ../../TShockAPI/GetDataHandlers.cs:3696 #, csharp-format msgid "{0} applied advanced combat techniques!" -msgstr "{0}使用了先进战斗技术([i:4382])。" +msgstr "{0}使用了先进战斗技术([i:4382])!" -#: ../../TShockAPI/GetDataHandlers.cs:3543 +#: ../../TShockAPI/GetDataHandlers.cs:3675 #, csharp-format msgid "{0} applied traveling merchant's satchel!" msgstr "{0}使用了游商背包([i:5343])。" -#: ../../TShockAPI/Commands.cs:1064 +#: ../../TShockAPI/Commands.cs:1074 #, csharp-format msgid "{0} attempted to register for the account {1} but it was already taken." msgstr "{0}试图注册账号“{1}” ,但它已被占用。" -#: ../../TShockAPI/GetDataHandlers.cs:2637 -#: ../../TShockAPI/GetDataHandlers.cs:3212 +#: ../../TShockAPI/GetDataHandlers.cs:2674 +#: ../../TShockAPI/GetDataHandlers.cs:3289 #, csharp-format msgid "{0} authenticated successfully as user {1}." msgstr "{0}已成功登录账号{1}。" -#: ../../TShockAPI/Commands.cs:905 +#: ../../TShockAPI/Commands.cs:915 #, csharp-format msgid "{0} authenticated successfully as user: {1}." msgstr "{0}已成功登录账号{1}。" -#: ../../TShockAPI/TSPlayer.cs:1955 +#: ../../TShockAPI/TSPlayer.cs:2107 #, csharp-format msgid "{0} banned {1} for '{2}'." -msgstr "{0} 以'{2}'为理由封禁了'{1}'" +msgstr "{0}以'{2}'为理由封禁了'{1}'。" -#: ../../TShockAPI/Commands.cs:6051 +#: ../../TShockAPI/Commands.cs:6067 #, csharp-format msgid "{0} butchered {1} NPC." msgid_plural "{0} butchered {1} NPCs." -msgstr[0] "{0} 杀死了 {1} 个NPC" +msgstr[0] "{0}杀死了{1}个NPC。" -#: ../../TShockAPI/Commands.cs:2462 +#: ../../TShockAPI/Commands.cs:2477 #, csharp-format msgid "{0} caused it to rain slime." msgstr "{0} 开始了一场史莱姆雨。" -#: ../../TShockAPI/Commands.cs:2477 +#: ../../TShockAPI/Commands.cs:2492 #, csharp-format msgid "{0} caused it to rain." msgstr "{0} 开始了一场雨。" -#: ../../TShockAPI/Commands.cs:1180 +#: ../../TShockAPI/Commands.cs:1190 #, csharp-format msgid "{0} changed account {1} to group {2}." msgstr "{0}将账号“{1}”所属的用户组更改为了{2}。" -#: ../../TShockAPI/Commands.cs:4466 +#: ../../TShockAPI/Commands.cs:4481 #, csharp-format msgid "{0} changed the maximum spawns to {1}." msgstr "{0}将怪物生成数量上限设置为{1}。" -#: ../../TShockAPI/Commands.cs:4447 +#: ../../TShockAPI/Commands.cs:4462 #, csharp-format msgid "{0} changed the maximum spawns to 5." msgstr "{0}将怪物生成数量上限设置为5。" -#: ../../TShockAPI/Commands.cs:1154 +#: ../../TShockAPI/Commands.cs:1164 #, csharp-format msgid "{0} changed the password for account {1}" msgstr "{0}更改了账号“{1}”的密码。" -#: ../../TShockAPI/Commands.cs:4505 +#: ../../TShockAPI/Commands.cs:4520 #, csharp-format msgid "{0} changed the spawn rate to {1}." msgstr "{0}将怪物生成速率设置为{1}。" -#: ../../TShockAPI/Commands.cs:4487 +#: ../../TShockAPI/Commands.cs:4502 #, csharp-format msgid "{0} changed the spawn rate to 600." msgstr "{0}将怪物生成速率设置为600。" -#: ../../TShockAPI/Commands.cs:4639 +#: ../../TShockAPI/Commands.cs:4655 #, csharp-format -msgid "{0} changed the wind speed to {1}." -msgstr "{0}将风速设置为{1}。" +msgid "{0} changed the wind speed to {1}mph." +msgstr "{0}将风速设置为{1}mph。" -#: ../../TShockAPI/Commands.cs:5853 +#: ../../TShockAPI/Commands.cs:5869 #, csharp-format msgid "{0} deleted {1} item within a radius of {2}." msgid_plural "{0} deleted {1} items within a radius of {2}." msgstr[0] "{0}清除了{2}范围内的{1}个物品。" -#: ../../TShockAPI/Commands.cs:5877 +#: ../../TShockAPI/Commands.cs:5893 #, csharp-format msgid "{0} deleted {1} NPC within a radius of {2}." msgid_plural "{0} deleted {1} NPCs within a radius of {2}." msgstr[0] "{0}清除了{2}范围内的{1}个NPC。" -#: ../../TShockAPI/Commands.cs:5902 +#: ../../TShockAPI/Commands.cs:5918 #, csharp-format msgid "{0} deleted {1} projectile within a radius of {2}." msgid_plural "{0} deleted {1} projectiles within a radius of {2}." msgstr[0] "{0}清除了{2}范围内的{1}个射弹。" -#: ../../TShockAPI/Commands.cs:1887 +#: ../../TShockAPI/Commands.cs:1901 #, csharp-format msgid "{0} disabled halloween mode." msgstr "{0}关闭了万圣模式。" -#: ../../TShockAPI/Commands.cs:1907 +#: ../../TShockAPI/Commands.cs:1921 #, csharp-format msgid "{0} disabled xmas mode." msgstr "{0}关闭了圣诞模式。" -#: ../../TShockAPI/TShock.cs:1398 +#: ../../TShockAPI/TShock.cs:1407 #, csharp-format msgid "{0} disconnected." msgstr "{0}离开了游戏。" -#: ../../TShockAPI/Commands.cs:1885 +#: ../../TShockAPI/Commands.cs:1899 #, csharp-format msgid "{0} enabled halloween mode." msgstr "{0}开启了万圣模式。" -#: ../../TShockAPI/Commands.cs:1905 +#: ../../TShockAPI/Commands.cs:1919 #, csharp-format msgid "{0} enabled xmas mode." msgstr "{0}开启了圣诞模式。" -#: ../../TShockAPI/Commands.cs:2469 +#: ../../TShockAPI/Commands.cs:2484 #, csharp-format msgid "{0} ended the rain." -msgstr "{0} 结束了这场雨。" +msgstr "{0}结束了这场雨。" -#: ../../TShockAPI/Commands.cs:2454 +#: ../../TShockAPI/Commands.cs:2469 #, csharp-format msgid "{0} ended the slime rain." -msgstr "{0} 结束了这场史莱姆雨。" +msgstr "{0}结束了这场史莱姆雨。" -#: ../../TShockAPI/Commands.cs:706 +#: ../../TShockAPI/Commands.cs:711 #, csharp-format msgid "{0} executed (args omitted): {1}{2}." msgstr "{0}执行了{1}{2}。因为该指令的特殊性,具体参数已隐藏。" -#: ../../TShockAPI/Commands.cs:704 +#: ../../TShockAPI/Commands.cs:709 #, csharp-format msgid "{0} executed: {1}{2}." msgstr "{0}执行了{1}{2}。" -#: ../../TShockAPI/Commands.cs:930 +#: ../../TShockAPI/Commands.cs:940 #, csharp-format msgid "{0} failed to authenticate as user: {1}." -msgstr "{0} 登录用户: {1} 失败。" +msgstr "{0}登录用户: {1} 失败。" -#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6295 #, csharp-format msgid "{0} gave you {1} {2}." msgid_plural "{0} gave you {1} {2}s." msgstr[0] "{0}给了你{1}个{2}。" -#: ../../TShockAPI/Commands.cs:4247 +#: ../../TShockAPI/Commands.cs:4262 #, csharp-format msgid "{0} has been allowed to place tile {1}." -msgstr "组 {0} 已被允许放置方块(图格) {1}。" +msgstr "组{0}已被允许放置图格 {1}。" -#: ../../TShockAPI/Commands.cs:3881 +#: ../../TShockAPI/Commands.cs:3896 #, csharp-format msgid "{0} has been allowed to use {1}." -msgstr "组 {0} 已被允许使用 {1}。" +msgstr "组{0}已被允许使用 {1}。" -#: ../../TShockAPI/Commands.cs:4071 +#: ../../TShockAPI/Commands.cs:4086 #, csharp-format msgid "{0} has been allowed to use projectile {1}." -msgstr "组 {0} 已被允许使用弹射物 {1}。" +msgstr "组{0}已被允许使用射弹 {1}。" -#: ../../TShockAPI/Commands.cs:4305 +#: ../../TShockAPI/Commands.cs:4320 #, csharp-format msgid "{0} has been disallowed from placing tile {1}." -msgstr "{0} 已被禁止放置方块 {1}。" +msgstr "{0}已被禁止放置图格 {1}。" -#: ../../TShockAPI/Commands.cs:4129 +#: ../../TShockAPI/Commands.cs:4144 #, csharp-format msgid "{0} has been disallowed from using projectile {1}." -msgstr "{0} 已被禁止使用射弹 {1}。" +msgstr "{0}已被禁止使用弹射物 {1}" -#: ../../TShockAPI/Commands.cs:3952 +#: ../../TShockAPI/Commands.cs:3967 #, csharp-format msgid "{0} has been disallowed to use {1}." -msgstr "组 {0} 已被禁止使用 {1}。" +msgstr "组{0}已被禁止使用{1}。" -#: ../../TShockAPI/Commands.cs:6467 +#: ../../TShockAPI/Commands.cs:6483 #, csharp-format msgid "{0} has buffed you with {1} ({2}) for {3} seconds!" -msgstr "{0}给你添加了状态{1}({2}),持续{3}秒。" +msgstr "{0}给你添加了状态{1}({2}),持续{3}秒!" -#: ../../TShockAPI/Commands.cs:1186 +#: ../../TShockAPI/Commands.cs:1196 #, csharp-format msgid "{0} has changed your group to {1}." msgstr "{0}已将你所属的用户组更改为{1}。" -#: ../../TShockAPI/Commands.cs:2949 -#: ../../TShockAPI/Commands.cs:3020 -#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:3035 +#: ../../TShockAPI/Commands.cs:3041 #, csharp-format msgid "{0} has disabled incoming teleports." -msgstr "{0} 禁止玩家对其使用传送。" +msgstr "{0}禁止玩家对其使用传送。" -#: ../../TShockAPI/Commands.cs:2412 +#: ../../TShockAPI/Commands.cs:2427 #, csharp-format msgid "{0} has ended the current invasion event." -msgstr "{0} 结束了当前的入侵事件。" +msgstr "{0}结束了当前的入侵事件。" -#: ../../TShockAPI/Commands.cs:2408 +#: ../../TShockAPI/Commands.cs:2423 #, csharp-format msgid "{0} has ended the Old One's Army event." -msgstr "{0} 结束了撒旦军队事件。" +msgstr "{0}结束了撒旦军队事件。" -#: ../../TShockAPI/TShock.cs:1670 +#: ../../TShockAPI/TShock.cs:1688 #, csharp-format msgid "{0} has joined." msgstr "{0}进入了游戏。" -#: ../../TShockAPI/TShock.cs:1674 +#: ../../TShockAPI/TShock.cs:1692 #, csharp-format msgid "{0} has joined. IP: {1}" msgstr "{0}进入了游戏,IP:{1}。" -#: ../../TShockAPI/Commands.cs:5655 +#: ../../TShockAPI/Commands.cs:5671 #, csharp-format msgid "{0} has launched {1} into space." msgstr "{0}把{1}发射到了空中。" -#: ../../TShockAPI/Commands.cs:5653 +#: ../../TShockAPI/Commands.cs:5669 #, csharp-format msgid "{0} has launched herself into space." msgstr "{0}把她自己发射到了空中。" -#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5667 #, csharp-format msgid "{0} has launched himself into space." msgstr "{0}把他自己发射到了空中。" -#: ../../TShockAPI/TShock.cs:1397 +#: ../../TShockAPI/TShock.cs:1406 #, csharp-format msgid "{0} has left." msgstr "{0}离开了游戏。" -#: ../../TShockAPI/Commands.cs:5500 +#: ../../TShockAPI/Commands.cs:5516 #, csharp-format msgid "{0} has muted {1} for {2}." msgstr "{0}禁言了{1},原因是{2}。" -#: ../../TShockAPI/Commands.cs:5999 +#: ../../TShockAPI/Commands.cs:6015 #, csharp-format msgid "{0} has respawned you." -msgstr "{0} 已将你复活。" +msgstr "{0}将你复活了。" -#: ../../TShockAPI/GetDataHandlers.cs:3555 +#: ../../TShockAPI/GetDataHandlers.cs:3687 #, csharp-format msgid "{0} has sent a request to the bunny delivery service!" msgstr "{0}从递送站申领了新的兔兔!" -#: ../../TShockAPI/GetDataHandlers.cs:3561 +#: ../../TShockAPI/GetDataHandlers.cs:3693 #, csharp-format msgid "{0} has sent a request to the cat delivery service!" msgstr "{0}从递送站申领了新的猫猫!" -#: ../../TShockAPI/GetDataHandlers.cs:3558 +#: ../../TShockAPI/GetDataHandlers.cs:3690 #, csharp-format msgid "{0} has sent a request to the dog delivery service!" msgstr "{0}从递送站申领了新的狗狗!" -#: ../../TShockAPI/GetDataHandlers.cs:3552 +#: ../../TShockAPI/GetDataHandlers.cs:3684 #, csharp-format msgid "{0} has sent a request to the slime delivery service!" -msgstr "{0}已向史莱姆递送服务发送请求!" +msgstr "{0}从递送站申领了新的史莱姆!" -#: ../../TShockAPI/Commands.cs:2878 +#: ../../TShockAPI/Commands.cs:2893 #, csharp-format msgid "{0} has spawned {1} {2} time." msgid_plural "{0} has spawned {1} {2} times." msgstr[0] "{0}生成了{2}个{1}。" -#: ../../TShockAPI/Commands.cs:2895 +#: ../../TShockAPI/Commands.cs:2910 #, csharp-format msgid "{0} has spawned a Wall of Flesh." msgstr "{0}生成了血肉墙。" -#: ../../TShockAPI/GetDataHandlers.cs:2620 +#: ../../TShockAPI/GetDataHandlers.cs:2657 #, csharp-format msgid "{0} has SSC data in the database, but has the tshock.ignore.ssc permission. This means their SSC data is being ignored." msgstr "虽然数据库中有{0}的存档,但该玩家也拥有tshock.ignore.ssc权限。该玩家将使用本地存档,忽略云端存档。" -#: ../../TShockAPI/Commands.cs:2342 +#: ../../TShockAPI/Commands.cs:2357 #, csharp-format msgid "{0} has started a goblin army invasion." -msgstr "{0} 开始了哥布林军队入侵。" +msgstr "{0}开始了哥布林军队入侵。" -#: ../../TShockAPI/Commands.cs:2396 +#: ../../TShockAPI/Commands.cs:2411 #, csharp-format msgid "{0} has started a martian invasion." -msgstr "{0} 开始了火星人入侵。" +msgstr "{0}开始了火星人入侵。" -#: ../../TShockAPI/Commands.cs:2354 +#: ../../TShockAPI/Commands.cs:2369 #, csharp-format msgid "{0} has started a pirate invasion." -msgstr "{0} 开始了一场海盗入侵。" +msgstr "{0}开始了一场海盗入侵。" -#: ../../TShockAPI/Commands.cs:2348 +#: ../../TShockAPI/Commands.cs:2363 #, csharp-format msgid "{0} has started a snow legion invasion." -msgstr "{0} 开始了一场雪人军团入侵。" +msgstr "{0}开始了一场雪人军团入侵。" -#: ../../TShockAPI/Commands.cs:5488 +#: ../../TShockAPI/Commands.cs:5504 #, csharp-format msgid "{0} has unmuted {1}." msgstr "{0}解除了{1}的禁言。" -#: ../../TShockAPI/Commands.cs:6356 +#: ../../TShockAPI/Commands.cs:6372 #, csharp-format msgid "{0} healed {1} for {2} HP." msgstr "{0}为{1}恢复了{2}血量。" -#: ../../TShockAPI/Commands.cs:6354 +#: ../../TShockAPI/Commands.cs:6370 #, csharp-format msgid "{0} healed herself for {1} HP." msgstr "{0}为她自己恢复了{1}血量。" -#: ../../TShockAPI/Commands.cs:6352 +#: ../../TShockAPI/Commands.cs:6368 #, csharp-format msgid "{0} healed himself for {1} HP." msgstr "{0}为他自己恢复了{1}血量。" -#: ../../TShockAPI/Commands.cs:4250 +#: ../../TShockAPI/Commands.cs:4265 #, csharp-format msgid "{0} is already allowed to place tile {1}." -msgstr "{0} 已被允许放置图格 {1}。" +msgstr "{0}已被允许放置图格{1}。" -#: ../../TShockAPI/Commands.cs:3885 +#: ../../TShockAPI/Commands.cs:3900 #, csharp-format msgid "{0} is already allowed to use {1}." msgstr "组 {0} 已被允许使用 {1}。" -#: ../../TShockAPI/Commands.cs:4074 +#: ../../TShockAPI/Commands.cs:4089 #, csharp-format msgid "{0} is already allowed to use projectile {1}." -msgstr "{0} 已被允许使用射弹 {1}。" +msgstr "{0}已被允许使用弹射物 {1}。" -#: ../../TShockAPI/Commands.cs:5940 +#: ../../TShockAPI/Commands.cs:5956 #, csharp-format msgid "{0} is already dead!" -msgstr "{0} 已经死亡!" +msgstr "{0}已经死亡!" -#: ../../TShockAPI/Commands.cs:3956 +#: ../../TShockAPI/Commands.cs:3971 #, csharp-format msgid "{0} is already disallowed to use {1}." msgstr "组 {0} 已被禁止使用 {1}。" -#: ../../TShockAPI/Commands.cs:4309 +#: ../../TShockAPI/Commands.cs:4324 #, csharp-format msgid "{0} is already prevented from placing tile {1}." -msgstr "{0} 已被禁止放置方块 {1}。" +msgstr "{0}已被禁止放置图格 {1}。" -#: ../../TShockAPI/Commands.cs:4133 +#: ../../TShockAPI/Commands.cs:4148 #, csharp-format msgid "{0} is already prevented from using projectile {1}." -msgstr "{0} 已被禁止使用射弹 {1}。" +msgstr "{0}已被禁止使用弹射物 {1}。" #: ../../TShockAPI/ItemBans.cs:234 #, csharp-format msgid "{0} is banned! Remove it!" -msgstr "{0} 已被禁用!请移除它!" +msgstr "{0}已被禁用!请移除它!" -#: ../../TShockAPI/Commands.cs:6751 +#: ../../TShockAPI/Commands.cs:6763 #, csharp-format msgid "{0} is no longer in god mode." msgstr "已关闭{0}的上帝模式。" -#: ../../TShockAPI/Commands.cs:5546 -#: ../../TShockAPI/Commands.cs:5577 +#: ../../TShockAPI/Commands.cs:5562 +#: ../../TShockAPI/Commands.cs:5593 #, csharp-format msgid "{0} is not accepting whispers." msgstr "{0}不接受私聊。" -#: ../../TShockAPI/Commands.cs:3875 -#: ../../TShockAPI/Commands.cs:3946 +#: ../../TShockAPI/Commands.cs:3890 +#: ../../TShockAPI/Commands.cs:3961 #, csharp-format msgid "{0} is not banned." -msgstr "{0} 没有被禁用。" +msgstr "{0}没有被禁用。" -#: ../../TShockAPI/Commands.cs:5990 +#: ../../TShockAPI/Commands.cs:6006 #, csharp-format msgid "{0} is not dead!" -msgstr "{0} 并未死亡!" +msgstr "{0}并未死亡!" -#: ../../TShockAPI/Commands.cs:6750 +#: ../../TShockAPI/Commands.cs:6762 #, csharp-format msgid "{0} is now in god mode." -msgstr "{0} 现在已处于上帝模式。" +msgstr "{0}现在已处于上帝模式。" -#: ../../TShockAPI/Commands.cs:5586 +#: ../../TShockAPI/Commands.cs:5602 #, csharp-format msgid "{0} is offline and cannot receive your reply." msgstr "{0}已离线,无法收到你的消息。" -#: ../../TShockAPI/Commands.cs:5949 -#: ../../TShockAPI/Rest/RestManager.cs:1068 +#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Rest/RestManager.cs:1069 #, csharp-format msgid "{0} just killed you!" msgstr "{0}杀死了你!" -#: ../../TShockAPI/TSPlayer.cs:1926 +#: ../../TShockAPI/TSPlayer.cs:2078 #, csharp-format msgid "{0} kicked {1} for '{2}'" -msgstr "{0} 以'{2}'为理由踢出了 {1}。" +msgstr "{0}以'{2}'为理由踢出了 {1}。" -#: ../../TShockAPI/Commands.cs:5746 +#: ../../TShockAPI/Commands.cs:5762 #, csharp-format msgid "{0} launched fireworks on you." -msgstr "{0} 向你发射了烟花。" +msgstr "{0}向你发射了烟花。" -#: ../../TShockAPI/Rest/RestManager.cs:847 +#: ../../TShockAPI/Rest/RestManager.cs:848 #, csharp-format msgid "{0} NPC has been killed." msgid_plural "{0} NPCs have been killed." msgstr[0] "{0}个NPC已被杀死。" -#: ../../TShockAPI/Commands.cs:1058 +#: ../../TShockAPI/Commands.cs:1068 #, csharp-format msgid "{0} registered an account: \"{1}\"." msgstr "{0}注册了一个账号:“{1}”。" -#: ../../TShockAPI/Commands.cs:1478 +#: ../../TShockAPI/Commands.cs:1492 #, csharp-format msgid "{0} remaining." -msgstr "剩余 {0}。" +msgstr "剩余{0}。" -#: ../../TShockAPI/Commands.cs:6196 +#: ../../TShockAPI/Commands.cs:6212 #, csharp-format msgid "{0} renamed the {1}." msgstr "{0}更改了{1}的名字。" -#: ../../TShockAPI/Commands.cs:4574 +#: ../../TShockAPI/Commands.cs:4589 #, csharp-format msgid "{0} set the time to {1}:{2:D2}." msgstr "{0}设置时间为 {1}:{2:D2}。" -#: ../../TShockAPI/Commands.cs:4542 +#: ../../TShockAPI/Commands.cs:4557 #, csharp-format msgid "{0} set the time to 00:00." -msgstr "{0} 设置时间为 00:00。" +msgstr "{0}设置时间为 00:00。" -#: ../../TShockAPI/Commands.cs:4530 +#: ../../TShockAPI/Commands.cs:4545 #, csharp-format msgid "{0} set the time to 04:30." -msgstr "{0} 设置时间为 04:30。" +msgstr "{0}设置时间为 04:30。" -#: ../../TShockAPI/Commands.cs:4538 +#: ../../TShockAPI/Commands.cs:4553 #, csharp-format msgid "{0} set the time to 12:00." -msgstr "{0} 设置时间为 12:00。" +msgstr "{0}设置时间为 12:00。" -#: ../../TShockAPI/Commands.cs:4534 +#: ../../TShockAPI/Commands.cs:4549 #, csharp-format msgid "{0} set the time to 19:30." -msgstr "{0} 设置时间为 19:30。" +msgstr "{0}设置时间为 19:30。" -#: ../../TShockAPI/Commands.cs:4616 -#: ../../TShockAPI/Commands.cs:4617 +#: ../../TShockAPI/Commands.cs:4631 +#: ../../TShockAPI/Commands.cs:4632 #, csharp-format msgid "{0} slapped {1} for {2} damage." -msgstr "{0} 打了 {1} 一巴掌,造成 {2} 点伤害。" +msgstr "{0}打了{1}一巴掌,造成{2}点伤害。" -#: ../../TShockAPI/Commands.cs:2831 +#: ../../TShockAPI/Commands.cs:2846 #, csharp-format msgid "{0} spawned {1} {2} time." msgid_plural "{0} spawned {1} {2} times." msgstr[0] "{0}生成了{2}个{1}。" -#: ../../TShockAPI/Commands.cs:2290 +#: ../../TShockAPI/Commands.cs:2305 #, csharp-format msgid "{0} started a blood moon event." msgstr "{0} 开启了血月。" -#: ../../TShockAPI/Commands.cs:2268 +#: ../../TShockAPI/Commands.cs:2283 #, csharp-format msgid "{0} started a full moon event." msgstr "{0} 开启了满月。" -#: ../../TShockAPI/Commands.cs:2500 +#: ../../TShockAPI/Commands.cs:2515 #, csharp-format msgid "{0} started a lantern night." msgstr "{0} 开启了灯笼夜。" -#: ../../TShockAPI/Commands.cs:2427 +#: ../../TShockAPI/Commands.cs:2442 #, csharp-format msgid "{0} started a sandstorm event." msgstr "{0} 开启了沙尘暴。" -#: ../../TShockAPI/Commands.cs:2317 +#: ../../TShockAPI/Commands.cs:2332 #, csharp-format msgid "{0} started an eclipse." msgstr "{0} 开始了日食." -#: ../../TShockAPI/Commands.cs:2391 +#: ../../TShockAPI/Commands.cs:2406 #, csharp-format msgid "{0} started the frost moon at wave {1}!" -msgstr "{0} 开启了霜月(第{1}波)。" +msgstr "{0}召唤了霜月(第{1}波)!" -#: ../../TShockAPI/GetDataHandlers.cs:4150 -#: ../../TShockAPI/GetDataHandlers.cs:4152 +#: ../../TShockAPI/GetDataHandlers.cs:4290 +#: ../../TShockAPI/GetDataHandlers.cs:4292 #, csharp-format msgid "{0} started the Old One's Army event!" -msgstr "{0}开启了撒旦军团事件!" +msgstr "{0}召唤了撒旦军团事件!" -#: ../../TShockAPI/Commands.cs:2373 +#: ../../TShockAPI/Commands.cs:2388 #, csharp-format msgid "{0} started the pumpkin moon at wave {1}!" -msgstr "{0} 开启了南瓜月(第{1}波)。" +msgstr "{0}召唤了南瓜月(第{1}波)!" -#: ../../TShockAPI/Commands.cs:2321 +#: ../../TShockAPI/Commands.cs:2336 #, csharp-format msgid "{0} stopped an eclipse." -msgstr "{0} 结束了日食。" +msgstr "{0}结束了日食。" -#: ../../TShockAPI/Commands.cs:2294 +#: ../../TShockAPI/Commands.cs:2309 #, csharp-format msgid "{0} stopped the current blood moon." -msgstr "{0} 结束了血月。" +msgstr "{0}结束了血月。" -#: ../../TShockAPI/Commands.cs:2422 +#: ../../TShockAPI/Commands.cs:2437 #, csharp-format msgid "{0} stopped the current sandstorm event." -msgstr "{0} 结束了沙尘暴。" +msgstr "{0}结束了沙尘暴。" -#: ../../TShockAPI/Commands.cs:2504 +#: ../../TShockAPI/Commands.cs:2519 #, csharp-format msgid "{0} stopped the lantern night." msgstr "{0} 结束了灯笼夜。" -#: ../../TShockAPI/Commands.cs:1132 +#: ../../TShockAPI/Commands.cs:1142 #, csharp-format msgid "{0} successfully deleted account: {1}." msgstr "{0} 成功删除了账号:“{1}”。" -#: ../../TShockAPI/GetDataHandlers.cs:3567 +#: ../../TShockAPI/GetDataHandlers.cs:3699 #, csharp-format msgid "{0} summoned a Blood Moon!" -msgstr "{0}召唤了血月。" +msgstr "{0}召唤了血月!" -#: ../../TShockAPI/GetDataHandlers.cs:3579 +#: ../../TShockAPI/GetDataHandlers.cs:3711 #, csharp-format msgid "{0} summoned a frost moon!" -msgstr "{0}召唤了霜月。" +msgstr "{0}召唤了霜月!" -#: ../../TShockAPI/GetDataHandlers.cs:3591 +#: ../../TShockAPI/GetDataHandlers.cs:3723 #, csharp-format msgid "{0} summoned a Goblin Invasion!" -msgstr "{0}召唤了哥布林军队入侵。" +msgstr "{0}召唤了哥布林军队入侵!" -#: ../../TShockAPI/GetDataHandlers.cs:3573 +#: ../../TShockAPI/GetDataHandlers.cs:3705 #, csharp-format msgid "{0} summoned a Martian invasion!" -msgstr "{0}召唤了火星人入侵。" +msgstr "{0}召唤了火星人入侵!" -#: ../../TShockAPI/GetDataHandlers.cs:3549 +#: ../../TShockAPI/GetDataHandlers.cs:3681 #, csharp-format msgid "{0} summoned a Mechdusa!" -msgstr "{0}召唤了机械美杜莎。" +msgstr "{0}召唤了机械美杜莎!" -#: ../../TShockAPI/GetDataHandlers.cs:3570 +#: ../../TShockAPI/GetDataHandlers.cs:3702 #, csharp-format msgid "{0} summoned a Moon Lord!" -msgstr "{0}召唤了月亮领主。" +msgstr "{0}召唤了月亮领主!" -#: ../../TShockAPI/GetDataHandlers.cs:3582 +#: ../../TShockAPI/GetDataHandlers.cs:3714 #, csharp-format msgid "{0} summoned a pumpkin moon!" -msgstr "{0}召唤了南瓜月。" +msgstr "{0}召唤了南瓜月!" -#: ../../TShockAPI/GetDataHandlers.cs:3576 +#: ../../TShockAPI/GetDataHandlers.cs:3708 #, csharp-format msgid "{0} summoned an eclipse!" -msgstr "{0}召唤了日食。" +msgstr "{0}召唤了日食!" -#: ../../TShockAPI/GetDataHandlers.cs:3598 +#: ../../TShockAPI/GetDataHandlers.cs:3730 #, csharp-format msgid "{0} summoned the {1}!" -msgstr "{0}召唤了{1}。" +msgstr "{0}召唤了{1}!" -#: ../../TShockAPI/GetDataHandlers.cs:2977 -#: ../../TShockAPI/GetDataHandlers.cs:2980 +#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3055 #, csharp-format msgid "{0} summoned the Empress of Light!" -msgstr "{0}召唤了光之女皇。" +msgstr "{0}召唤了光之女皇!" -#: ../../TShockAPI/GetDataHandlers.cs:3585 +#: ../../TShockAPI/GetDataHandlers.cs:3717 #, csharp-format msgid "{0} summoned the Pirates!" -msgstr "{0}召唤了海盗入侵。" +msgstr "{0}召唤了海盗入侵!" -#: ../../TShockAPI/GetDataHandlers.cs:3588 +#: ../../TShockAPI/GetDataHandlers.cs:3720 #, csharp-format msgid "{0} summoned the Snow Legion!" -msgstr "{0}召唤了雪人军团入侵。" +msgstr "{0}召唤了雪人军团入侵!" -#: ../../TShockAPI/Commands.cs:3004 -#: ../../TShockAPI/Commands.cs:3044 +#: ../../TShockAPI/Commands.cs:3019 +#: ../../TShockAPI/Commands.cs:3059 #, csharp-format msgid "{0} teleported {1} to you." msgstr "{0} 将 {1} 传送到你的位置。" -#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2971 #, csharp-format msgid "{0} teleported to you." msgstr "{0} 传送到你的位置。" -#: ../../TShockAPI/Commands.cs:2997 -#: ../../TShockAPI/Commands.cs:3037 +#: ../../TShockAPI/Commands.cs:3012 +#: ../../TShockAPI/Commands.cs:3052 #, csharp-format msgid "{0} teleported you to {1}." msgstr "{0} 将你传送至 {1}。" -#: ../../TShockAPI/Commands.cs:690 +#: ../../TShockAPI/Commands.cs:695 #, csharp-format msgid "{0} tried to execute (args omitted) {1}{2}." msgstr "{0}试图执行{1}{2}。因为该指令的特殊性,具体参数已隐藏。" -#: ../../TShockAPI/Commands.cs:688 +#: ../../TShockAPI/Commands.cs:693 #, csharp-format msgid "{0} tried to execute {1}{2}." msgstr "{0}试图执行{1}{2}。" -#: ../../TShockAPI/Commands.cs:2255 +#: ../../TShockAPI/Commands.cs:2270 #, csharp-format msgid "{0} triggered a meteor." -msgstr "{0} 触发了陨石。" +msgstr "{0}触发了陨石。" -#: ../../TShockAPI/Commands.cs:3328 +#: ../../TShockAPI/Commands.cs:3343 #, csharp-format msgid "{0} warped you to {1}." msgstr "{0} 将你传送到传送点 {1}。" -#: ../../TShockAPI/TSPlayer.cs:1953 +#: ../../TShockAPI/TSPlayer.cs:2105 #, csharp-format msgid "{0} was banned for '{1}'." -msgstr "{0}因为'{1}'而封禁" +msgstr "{0}因为'{1}'被封禁。" -#: ../../TShockAPI/TSPlayer.cs:1924 +#: ../../TShockAPI/TSPlayer.cs:2076 #, csharp-format msgid "{0} was kicked for '{1}'" msgstr "玩家 {0} 因'{1}'被踢出。" -#: ../../TShockAPI/Commands.cs:3002 -#: ../../TShockAPI/Commands.cs:3042 +#: ../../TShockAPI/Commands.cs:3017 +#: ../../TShockAPI/Commands.cs:3057 #, csharp-format msgid "{0} was teleported to you." msgstr "{0} 被传送至你的位置。" -#: ../../TShockAPI/Commands.cs:1296 +#: ../../TShockAPI/Commands.cs:1310 #, csharp-format msgid "{0}'s group is {1}." msgstr "{0}的用户组为{1}。" -#: ../../TShockAPI/Commands.cs:1297 +#: ../../TShockAPI/Commands.cs:1311 #, csharp-format msgid "{0}'s last known IP is {1}." msgstr "{0}的最后记录IP为 {1}" -#: ../../TShockAPI/Commands.cs:1286 +#: ../../TShockAPI/Commands.cs:1300 #, csharp-format msgid "{0}'s last login occurred {1} {2} UTC{3}." msgstr "{0}的最后登录时间为 {1} {2} UTC{3}" -#: ../../TShockAPI/Commands.cs:1298 +#: ../../TShockAPI/Commands.cs:1312 #, csharp-format msgid "{0}'s register date is {1} {2} UTC{3}." msgstr "{0}的注册时间为 {1} {2} UTC{3}" -#: ../../TShockAPI/Commands.cs:5778 +#: ../../TShockAPI/Commands.cs:5794 #, csharp-format msgid "{0}{1} defines no aliases." msgstr "{0}{1}没有其他别名。" -#: ../../TShockAPI/Commands.cs:5284 +#: ../../TShockAPI/Commands.cs:5300 #, csharp-format msgid "{0}{1} help: " -msgstr "{0}{1} help: " +msgstr "{0}{1} 帮助: " -#: ../../TShockAPI/Utils.cs:1152 +#: ../../TShockAPI/Utils.cs:1155 #, csharp-format msgid "{0}{1}/{2} on {3} @ {4}:{5} (TShock for Terraria v{6})" msgstr "{0}{1}/{2} 于 {3} @ {4}:{5} (泰拉瑞亚TShock服务器 v{6})" -#: ../../TShockAPI/Commands.cs:850 +#: ../../TShockAPI/Commands.cs:860 #, csharp-format msgid "{0}login - Authenticates you using your UUID and character name." msgstr "{0}login - 以你的UUID和角色名作为凭证登录" -#: ../../TShockAPI/Commands.cs:855 +#: ../../TShockAPI/Commands.cs:865 #, csharp-format msgid "{0}login - Authenticates you using your password and character name." msgstr "{0}login <密码> - 以你的密码和角色名作为凭证登录。" -#: ../../TShockAPI/Commands.cs:853 +#: ../../TShockAPI/Commands.cs:863 #, csharp-format msgid "{0}login - Authenticates you using your username and password." msgstr "{0}login <密码> - 以你的密码和角色名作为凭证登录" -#: ../../TShockAPI/Commands.cs:5413 +#: ../../TShockAPI/Commands.cs:5429 #, csharp-format msgid "{0}user add owner" msgstr "{0}user add <用户名> <密码> owner" -#: ../../TShockAPI/Commands.cs:1205 +#: ../../TShockAPI/Commands.cs:1219 #, csharp-format msgid "{0}user add username password group -- Adds a specified user" msgstr "{0}user add 用户名 密码 组 -- 添加指定用户" -#: ../../TShockAPI/Commands.cs:1206 +#: ../../TShockAPI/Commands.cs:1220 #, csharp-format msgid "{0}user del username -- Removes a specified user" msgstr "{0}user del 用户名 -- 移除指定用户" -#: ../../TShockAPI/Commands.cs:1208 +#: ../../TShockAPI/Commands.cs:1222 #, csharp-format msgid "{0}user group username newgroup -- Changes a user's group" msgstr "{0}user group 用户名 新组 -- 更改用户所属的组" -#: ../../TShockAPI/Commands.cs:1207 +#: ../../TShockAPI/Commands.cs:1221 #, csharp-format msgid "{0}user password username newpassword -- Changes a user's password" msgstr "{0}user password 用户名 新密码 -- 更改用户密码" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 #, csharp-format msgid "* **Commands**: `{0}`" msgstr "* **指令**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:123 -#: ../../TShockAPI/Configuration/TShockConfig.cs:645 +#: ../../TShockAPI/Configuration/TShockConfig.cs:661 #, csharp-format msgid "* **Default**: `{0}`" msgstr "* **默认**: `{0}`" #: ../../TShockAPI/Configuration/ServerSideConfig.cs:122 -#: ../../TShockAPI/Configuration/TShockConfig.cs:644 +#: ../../TShockAPI/Configuration/TShockConfig.cs:660 #, csharp-format msgid "* **Field type**: `{0}`" msgstr "* **数据类型**: `{0}`" -#: ../../TShockAPI/Rest/RestManager.cs:1220 +#: ../../TShockAPI/Rest/RestManager.cs:1221 #, csharp-format msgid "* **Permissions**: `{0}`" msgstr "* **权限**: `{0}`" -#: ../../TShockAPI/Commands.cs:5430 +#: ../../TShockAPI/Commands.cs:5446 #, csharp-format msgid "*{0} {1}" msgstr "*{0} {1}" -#: ../../TShockAPI/Rest/RestManager.cs:1253 +#: ../../TShockAPI/Rest/RestManager.cs:1254 #, csharp-format msgid "**Example Usage**: `{0}?{1}`" msgstr "**示例用法**: `{0}?{1}`" -#: ../../TShockAPI/Rest/RestManager.cs:1243 +#: ../../TShockAPI/Rest/RestManager.cs:1244 msgid "**Nouns**:" msgstr "**参数**:" -#: ../../TShockAPI/Rest/RestManager.cs:1230 +#: ../../TShockAPI/Rest/RestManager.cs:1231 msgid "**Verbs**:" msgstr "**行为**:" -#: ../../TShockAPI/Commands.cs:1613 +#: ../../TShockAPI/Commands.cs:1627 #, csharp-format msgid "#{0} - You have been banned: {1}." msgstr "#{0} - 你已被封禁: {1}。" -#: ../../TShockAPI/Commands.cs:5446 +#: ../../TShockAPI/Commands.cs:5462 #, csharp-format msgid "<{0}> {1}" msgstr "<{0}> {1}" -#: ../../TShockAPI/Commands.cs:5550 -#: ../../TShockAPI/Commands.cs:5581 +#: ../../TShockAPI/Commands.cs:5566 +#: ../../TShockAPI/Commands.cs:5597 #, csharp-format msgid " {1}" -msgstr "<{0}的私聊消息> {1}" +msgstr "<来自{0}的消息> {1}" #: ../../TShockPluginManager/NugetCLI.cs:187 #, csharp-format @@ -1148,8 +1148,8 @@ msgstr "{0}(来源:{1} [{2}])" msgid "{0} from {1} [{2}]" msgstr "{0}(来源:{1} [{2}])" -#: ../../TShockAPI/Commands.cs:5551 -#: ../../TShockAPI/Commands.cs:5582 +#: ../../TShockAPI/Commands.cs:5567 +#: ../../TShockAPI/Commands.cs:5598 #, csharp-format msgid " {1}" msgstr "<私聊{0}的消息> {1}" @@ -1166,43 +1166,43 @@ msgid "=== Requested Plugin ===" msgid_plural "=== Requested Plugins ===" msgstr[0] "=== 要安装的插件 ===" -#: ../../TShockAPI/Commands.cs:2818 +#: ../../TShockAPI/Commands.cs:2833 msgid "a Deerclops" msgstr "独眼巨鹿" -#: ../../TShockAPI/Commands.cs:3384 +#: ../../TShockAPI/Commands.cs:3399 msgid "A group with the same name already exists." -msgstr "同名用户组已存在" +msgstr "同名用户组已存在。" -#: ../../TShockAPI/DB/RegionManager.cs:108 +#: ../../TShockAPI/DB/RegionManager.cs:104 msgid "A lot of things will fail because of this. You must manually delete and re-create the allowed field." msgstr "很多事情都会因为它失败。你必须手动删除并重新创建正确的字段。" -#: ../../TShockAPI/TShock.cs:986 +#: ../../TShockAPI/TShock.cs:992 msgid "A malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server." -msgstr "恶意的服务器可以轻易获取到玩家的UUID,因此使用UUID自动登录不一定安全。如果你在运行一个公开的服务器,可以考虑禁用UUID自动登录。" +msgstr "恶意的服务器可以轻易获取到玩家的UUID,因此使用UUID自动登录不一定安全。如果你的服务器是面对公众公开的,那么可以考虑禁用UUID自动登录。" -#: ../../TShockAPI/Commands.cs:2793 +#: ../../TShockAPI/Commands.cs:2808 msgid "a Martian Saucer" msgstr "火星飞碟" -#: ../../TShockAPI/Commands.cs:2251 +#: ../../TShockAPI/Commands.cs:2266 msgid "A meteor has been triggered." msgstr "一颗陨石已经落地" -#: ../../TShockAPI/Commands.cs:2803 +#: ../../TShockAPI/Commands.cs:2818 msgid "a Nebula Pillar" msgstr "星云柱" -#: ../../TShockAPI/TShock.cs:974 +#: ../../TShockAPI/TShock.cs:980 msgid "A password for this server was set in config.json and is being used." msgstr "已采用在config.json中设置的本服务器的密码。" -#: ../../TShockAPI/Commands.cs:1316 +#: ../../TShockAPI/Commands.cs:1330 msgid "A player name must be provided to kick a player. Please provide one." -msgstr "必须需要角色名才可踢出玩家,请您在指令后写上" +msgstr "必须需要角色名才可踢出玩家,请你在指令后写上。" -#: ../../TShockAPI/GetDataHandlers.cs:2451 +#: ../../TShockAPI/GetDataHandlers.cs:2487 msgid "A plugin on this server stopped your login." msgstr "服务器中的一个插件阻止了你的登录。" @@ -1211,87 +1211,87 @@ msgstr "服务器中的一个插件阻止了你的登录。" msgid "A REST login from {0} was blocked as it currently has {1} rate-limit tokens and is at the RESTMaximumRequestsPerInterval threshold." msgstr "{0}的REST登录已被阻止,因为它目前有{1}个限流标识,并且达到了RESTMaximumRequestsPerInterval(一段时间内最大请求数量)的上限。" -#: ../../TShockAPI/Commands.cs:2798 +#: ../../TShockAPI/Commands.cs:2813 msgid "a Solar Pillar" msgstr "日耀柱" -#: ../../TShockAPI/Commands.cs:2813 +#: ../../TShockAPI/Commands.cs:2828 msgid "a Stardust Pillar" msgstr "星尘柱" -#: ../../TShockAPI/Commands.cs:864 +#: ../../TShockAPI/Commands.cs:874 msgid "A user account by that name does not exist." msgstr "该用户名不存在。" -#: ../../TShockAPI/Commands.cs:2808 +#: ../../TShockAPI/Commands.cs:2823 msgid "a Vortex Pillar" msgstr "星旋柱" -#: ../../TShockAPI/Commands.cs:1159 +#: ../../TShockAPI/Commands.cs:1169 #, csharp-format msgid "Account {0} does not exist! Therefore, the password cannot be changed." msgstr "账号“{0}”不存在!所以无法更改密码。" -#: ../../TShockAPI/Commands.cs:1105 +#: ../../TShockAPI/Commands.cs:1115 #, csharp-format msgid "Account {0} has been added to group {1}." -msgstr "已将账号 {0} 添加至组 {1}!" +msgstr "已将账号 {0} 添加至组 {1}。" -#: ../../TShockAPI/Commands.cs:1181 +#: ../../TShockAPI/Commands.cs:1191 #, csharp-format msgid "Account {0} has been changed to group {1}." msgstr "账号“{0}”所属的用户组已变更为{1}。" -#: ../../TShockAPI/Bouncer.cs:547 +#: ../../TShockAPI/Bouncer.cs:562 #, csharp-format msgid "Account needed! Please {0}register or {0}login to play!" msgstr "需要一个账号! 请用 {0}register 或者 {0}login 注册登录你的账号!" -#: ../../TShockAPI/Commands.cs:1131 +#: ../../TShockAPI/Commands.cs:1141 msgid "Account removed successfully." msgstr "成功移除账号。" -#: ../../TShockAPI/Commands.cs:2094 +#: ../../TShockAPI/Commands.cs:2109 msgid "Active REST Users ({{0}}/{{1}}):" msgstr "有效的临时REST用户({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3971 +#: ../../TShockAPI/Commands.cs:3986 msgid "add - Adds an item ban." msgstr "add <物品> - 禁用指定物品." -#: ../../TShockAPI/Commands.cs:3438 +#: ../../TShockAPI/Commands.cs:3453 msgid "add - Adds a new group." -msgstr "add <组名> <权限...> - 添加一个新组." +msgstr "add <用户组> [权限...] [c/00FF00:(创建一个新的用户组)]" -#: ../../TShockAPI/Commands.cs:4149 +#: ../../TShockAPI/Commands.cs:4164 msgid "add - Adds a projectile ban." msgstr "add <射弹ID> - 添加禁止使用的射弹。" -#: ../../TShockAPI/Commands.cs:4325 +#: ../../TShockAPI/Commands.cs:4340 msgid "add - Adds a tile ban." -msgstr "add <图格ID> - 添加禁止使用的图格。" +msgstr "add <物块ID> - 添加禁止使用的物块。" -#: ../../TShockAPI/Commands.cs:1737 +#: ../../TShockAPI/Commands.cs:1751 #, csharp-format msgid "Added {0} to the whitelist." msgstr "已将 {0} 加入白名单。" -#: ../../TShockAPI/Bouncer.cs:2041 +#: ../../TShockAPI/Bouncer.cs:2097 #, csharp-format msgid "Added buff to {0} NPC abnormally." msgstr "对NPC:{0}异常地添加了Buff。" -#: ../../TShockAPI/Commands.cs:4855 +#: ../../TShockAPI/Commands.cs:4871 #, csharp-format msgid "Added group {0} to {1}." msgstr "已将组{0}添加至{1}。" -#: ../../TShockAPI/Commands.cs:4785 +#: ../../TShockAPI/Commands.cs:4801 #, csharp-format msgid "Added user {0} to {1}." msgstr "已将玩家{0}添加至{1}。" -#: ../../TShockAPI/Commands.cs:3439 +#: ../../TShockAPI/Commands.cs:3454 msgid "addperm - Adds permissions to a group." msgstr "addperm <组名> <权限...> - 为一个组添加指定权限。" @@ -1300,16 +1300,16 @@ msgstr "addperm <组名> <权限...> - 为一个组添加指定权限。" msgid "AddUser SQL returned an error ({0})" msgstr "AddUser SQL语句返回了一个错误:{0}" -#: ../../TShockAPI/Commands.cs:5776 +#: ../../TShockAPI/Commands.cs:5792 #, csharp-format msgid "Aliases of {0}{1}: {0}{2}" msgstr "{0}{1}的别名:{0}{2}" -#: ../../TShockAPI/Commands.cs:6013 +#: ../../TShockAPI/Commands.cs:6029 msgid "All alive NPCs (excluding town NPCs) on the server will be killed if you do not input a name or ID." msgstr "输入NPC名称或ID可以杀死特定NPC,否则将默认杀死所有非城镇NPC。" -#: ../../TShockAPI/Commands.cs:2626 +#: ../../TShockAPI/Commands.cs:2641 msgid "all bosses" msgstr "所有boss" @@ -1317,162 +1317,162 @@ msgstr "所有boss" msgid "All done! :)" msgstr "下载完毕!: )" -#: ../../TShockAPI/Commands.cs:2104 +#: ../../TShockAPI/Commands.cs:2119 msgid "All REST tokens have been destroyed." -msgstr "所有临时Rest令牌已被销毁" +msgstr "所有REST令牌已被销毁。" -#: ../../TShockAPI/Commands.cs:1223 +#: ../../TShockAPI/Commands.cs:1237 #, csharp-format msgid "Allocated memory: {0}" msgstr "已分配内存: {0}" -#: ../../TShockAPI/Commands.cs:3972 +#: ../../TShockAPI/Commands.cs:3987 msgid "allow - Allows a group to use an item." msgstr "allow <物品> <用户组> - 给予用户组使用特定物品的豁免权。" -#: ../../TShockAPI/Commands.cs:4150 +#: ../../TShockAPI/Commands.cs:4165 msgid "allow - Allows a group to use a projectile." msgstr "allow <射弹> <用户组> - 给予用户组使用特定射弹的豁免权。" -#: ../../TShockAPI/Commands.cs:4326 +#: ../../TShockAPI/Commands.cs:4341 msgid "allow - Allows a group to place a tile." msgstr "allow <物块> <用户组> - 给予用户组使用特定物块的豁免权。" -#: ../../TShockAPI/Commands.cs:5193 +#: ../../TShockAPI/Commands.cs:5209 msgid "allow - Allows a user to a region." -msgstr "allow <用户名> <区域名> - 允许一个用户进入区域。" +msgstr "allow <用户名> <区域名> - 允许一个用户在区域内建筑。" -#: ../../TShockAPI/Commands.cs:5195 +#: ../../TShockAPI/Commands.cs:5211 msgid "allowg - Allows a user group to a region." msgstr "allowg <用户组名> <区域名> - 允许一个用户组进入区域。" -#: ../../TShockAPI/Commands.cs:6670 +#: ../../TShockAPI/Commands.cs:6686 msgid "Amber Gemtree" msgstr "琥珀宝石树" -#: ../../TShockAPI/Commands.cs:6650 +#: ../../TShockAPI/Commands.cs:6666 msgid "Amethyst Gemtree" msgstr "紫晶宝石树" -#: ../../TShockAPI/TShock.cs:996 +#: ../../TShockAPI/TShock.cs:1002 msgid "An account has been detected in the user database, but setup-code.txt is still present." msgstr "数据库中已有注册玩家,因此setup-code.txt和初始认证系统都将被停用。" -#: ../../TShockAPI/DB/GroupManager.cs:474 +#: ../../TShockAPI/DB/GroupManager.cs:512 #, csharp-format msgid "An exception has occurred during database rollback: {0}" msgstr "在数据库回滚时发生了异常:{0}" -#: ../../TShockAPI/DB/GroupManager.cs:467 +#: ../../TShockAPI/DB/GroupManager.cs:505 #, csharp-format msgid "An exception has occurred during database transaction: {0}" msgstr "在数据库事务进行时发生了异常:{0}" -#: ../../TShockAPI/TShock.cs:1489 +#: ../../TShockAPI/TShock.cs:1507 msgid "An exception occurred executing a command." msgstr "执行指令时发生了异常。" -#: ../../TShockAPI/DB/BanManager.cs:644 +#: ../../TShockAPI/DB/BanManager.cs:635 msgid "An identifier for a character name." msgstr "可以匹配游戏内的角色名。" -#: ../../TShockAPI/DB/BanManager.cs:648 +#: ../../TShockAPI/DB/BanManager.cs:639 msgid "An identifier for a TShock User Account name." msgstr "可以匹配TShock用户名。" -#: ../../TShockAPI/DB/BanManager.cs:640 +#: ../../TShockAPI/DB/BanManager.cs:631 msgid "An identifier for a UUID." msgstr "可以匹配UUID。" -#: ../../TShockAPI/DB/BanManager.cs:636 +#: ../../TShockAPI/DB/BanManager.cs:627 #, csharp-format msgid "An identifier for an IP Address in octet format. e.g., '{0}'." msgstr "可以匹配IP地址,格式为用句点分隔的十进制,例如{0}。" -#: ../../TShockAPI/Commands.cs:2052 +#: ../../TShockAPI/Commands.cs:2067 msgid "An update check has been queued. If an update is available, you will be notified shortly." -msgstr "已将更新检查加入到队列中,如果有更新,我们将很快通知您" +msgstr "已将更新检查加入到队列中,如果有更新,我们将很快通知你。" -#: ../../TShockAPI/Commands.cs:5599 +#: ../../TShockAPI/Commands.cs:5615 msgid "Annoy Syntax" msgstr "指令annoy的用法" -#: ../../TShockAPI/Commands.cs:5616 +#: ../../TShockAPI/Commands.cs:5632 #, csharp-format msgid "Annoying {0} for {1} seconds." -msgstr "在{1}秒内骚扰 {0}。" +msgstr "在{1}秒内骚扰{0}。" -#: ../../TShockAPI/Commands.cs:338 +#: ../../TShockAPI/Commands.cs:343 msgid "Annoys a player for an amount of time." msgstr "骚扰一个玩家一段时间。" -#: ../../TShockAPI/Rest/Rest.cs:452 +#: ../../TShockAPI/Rest/Rest.cs:451 #, csharp-format msgid "Anonymous requested REST endpoint: {0}" -msgstr "REST 端点{0}收到了匿名请求" +msgstr "REST端点{0}收到了匿名请求" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now off." msgstr "已允许建筑。" -#: ../../TShockAPI/Commands.cs:5224 +#: ../../TShockAPI/Commands.cs:5240 msgid "Anti-build is now on." -msgstr "已允许建筑。" +msgstr "已禁止建筑。" -#: ../../TShockAPI/Commands.cs:3204 +#: ../../TShockAPI/Commands.cs:3219 msgid "Arguments: add [warp name], del [warp name], list [page]." msgstr "参数: add [传送点名], del [传送点名], list [页码]" -#: ../../TShockAPI/Commands.cs:3205 +#: ../../TShockAPI/Commands.cs:3220 msgid "Arguments: send [player] [warp name], hide [warp name] [Enable(true/false)]." msgstr "参数: send [玩家] [传送点名], hide [传送点名] [启用(true/false)]" -#: ../../TShockAPI/Commands.cs:903 -#: ../../TShockAPI/GetDataHandlers.cs:2636 -#: ../../TShockAPI/GetDataHandlers.cs:3211 +#: ../../TShockAPI/GetDataHandlers.cs:2673 +#: ../../TShockAPI/GetDataHandlers.cs:3288 +#: ../../TShockAPI/Commands.cs:913 #, csharp-format msgid "Authenticated as {0} successfully." -msgstr "{0} 登录成功" +msgstr "{0} 登录成功。" -#: ../../TShockAPI/TShock.cs:440 -#: ../../TShockAPI/TShock.cs:1590 +#: ../../TShockAPI/TShock.cs:443 +#: ../../TShockAPI/TShock.cs:1608 msgid "AutoSave Disabled" msgstr "自动存档已关闭。" -#: ../../TShockAPI/TShock.cs:438 -#: ../../TShockAPI/TShock.cs:1588 +#: ../../TShockAPI/TShock.cs:441 +#: ../../TShockAPI/TShock.cs:1606 msgid "AutoSave Enabled" msgstr "自动存档已开启。" -#: ../../TShockAPI/Rest/RestManager.cs:811 +#: ../../TShockAPI/Rest/RestManager.cs:812 msgid "AutoSave has been disabled" msgstr "自动保存已关闭" -#: ../../TShockAPI/Rest/RestManager.cs:807 +#: ../../TShockAPI/Rest/RestManager.cs:808 msgid "AutoSave has been enabled" msgstr "自动存档已启用" -#: ../../TShockAPI/Rest/RestManager.cs:800 +#: ../../TShockAPI/Rest/RestManager.cs:801 msgid "Autosave is currently disabled" msgstr "自动存档目前已关闭" -#: ../../TShockAPI/Rest/RestManager.cs:796 +#: ../../TShockAPI/Rest/RestManager.cs:797 msgid "Autosave is currently enabled" msgstr "自动存档目前已开启" -#: ../../TShockAPI/Commands.cs:1368 +#: ../../TShockAPI/Commands.cs:1382 msgid "Available Ban commands:" msgstr "可用Ban指令:" -#: ../../TShockAPI/Commands.cs:1432 +#: ../../TShockAPI/Commands.cs:1446 msgid "Available identifiers ({{0}}/{{1}}):" msgstr "可选的匹配代码 ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:5208 +#: ../../TShockAPI/Commands.cs:5224 msgid "Available Region Sub-Commands ({{0}}/{{1}}):" -msgstr "可用的区域子命令 ({{0}}/{{1}}):" +msgstr "可用的区域子指令 ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:2109 +#: ../../TShockAPI/Commands.cs:2124 msgid "Available REST Sub-Commands:" msgstr "REST命令使用帮助:" @@ -1489,1039 +1489,1059 @@ msgstr "备份失败!" msgid "Backup Thread" msgstr "备份线程" -#: ../../TShockAPI/TShock.cs:444 +#: ../../TShockAPI/TShock.cs:447 msgid "Backups Disabled" msgstr "备份已关闭。" -#: ../../TShockAPI/TShock.cs:442 +#: ../../TShockAPI/TShock.cs:445 msgid "Backups Enabled" msgstr "备份已开启。" -#: ../../TShockAPI/Commands.cs:837 +#: ../../TShockAPI/Commands.cs:847 msgid "Bad login attempt." msgstr "尝试登录失败。" -#: ../../TShockAPI/Commands.cs:1371 +#: ../../TShockAPI/Commands.cs:1385 #, csharp-format msgid "ban {0}" -msgstr "封禁{0}" +msgstr "ban {0}" -#: ../../TShockAPI/Commands.cs:1370 -#: ../../TShockAPI/Commands.cs:1372 +#: ../../TShockAPI/Commands.cs:1384 +#: ../../TShockAPI/Commands.cs:1386 #, csharp-format msgid "ban {0} " -msgstr "封禁 {0} " +msgstr "ban {0} <回执号码>" -#: ../../TShockAPI/Commands.cs:1369 +#: ../../TShockAPI/Commands.cs:1383 #, csharp-format msgid "ban {0} [Flags]" -msgstr "封禁 {0} [Flags]" +msgstr "ban {0} <目标> [参数]" -#: ../../TShockAPI/Commands.cs:1633 +#: ../../TShockAPI/Commands.cs:1647 #, csharp-format msgid "Ban {0} has been revoked by {1}." msgstr "用户{1}解除了封禁{0}。" -#: ../../TShockAPI/Commands.cs:1634 +#: ../../TShockAPI/Commands.cs:1648 #, csharp-format msgid "Ban {0} has now been marked as expired." msgstr "封禁{0}已解除。" -#: ../../TShockAPI/Commands.cs:1383 +#: ../../TShockAPI/Commands.cs:1397 msgid "Ban Add Syntax" -msgstr "添加syntax的封禁" +msgstr "ban add(添加封禁)的用法" -#: ../../TShockAPI/Commands.cs:1490 +#: ../../TShockAPI/Commands.cs:1504 #, csharp-format msgid "Ban added. Ticket Number {0} was created for identifier {1}." msgstr "已封禁,回执号码{0},封禁匹配代码{1}。" -#: ../../TShockAPI/Rest/RestManager.cs:668 +#: ../../TShockAPI/Rest/RestManager.cs:669 #, csharp-format msgid "Ban added. Ticket number: {0}" msgstr "已封禁,回执号码{0}。" -#: ../../TShockAPI/Commands.cs:1396 +#: ../../TShockAPI/Commands.cs:1410 msgid "Ban Del Syntax" -msgstr "删除syntax的封禁" +msgstr "ban del(解除封禁)的用法" -#: ../../TShockAPI/Commands.cs:1412 +#: ../../TShockAPI/Commands.cs:1426 msgid "Ban Details Syntax" -msgstr "Ban Details的语法" +msgstr "ban details(查看封禁详情)的用法" -#: ../../TShockAPI/Commands.cs:1404 +#: ../../TShockAPI/Commands.cs:1418 msgid "Ban List Syntax" -msgstr "Ban List 的语法" +msgstr "ban list(列出封禁)的用法" -#: ../../TShockAPI/Rest/RestManager.cs:695 +#: ../../TShockAPI/Rest/RestManager.cs:696 msgid "Ban removed." msgstr "已解除封禁。" -#: ../../TShockAPI/Commands.cs:1442 +#: ../../TShockAPI/Commands.cs:1456 msgid "Ban Usage Examples" msgstr "Ban用法示例" -#: ../../TShockAPI/Commands.cs:3841 +#: ../../TShockAPI/Commands.cs:3856 #, csharp-format msgid "Banned {0}." msgstr "已封禁{0}。" -#: ../../TShockAPI/Commands.cs:4037 +#: ../../TShockAPI/Commands.cs:4052 #, csharp-format msgid "Banned projectile {0}." msgstr "射弹已被封禁{0}。" -#: ../../TShockAPI/Commands.cs:4213 +#: ../../TShockAPI/Commands.cs:4228 #, csharp-format msgid "Banned tile {0}." msgstr "图格已被封禁{0}。" -#: ../../TShockAPI/TSPlayer.cs:1950 +#: ../../TShockAPI/TSPlayer.cs:2102 #, csharp-format msgid "Banned: {0}" msgstr "已封禁: {0}" -#: ../../TShockAPI/Commands.cs:1517 +#: ../../TShockAPI/Commands.cs:1531 msgid "Banned." -msgstr "您已被封禁。" +msgstr "你已被封禁。" -#: ../../TShockAPI/Commands.cs:1670 +#: ../../TShockAPI/Commands.cs:1684 msgid "Bans ({{0}}/{{1}}):" msgstr "封禁了({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:6592 +#: ../../TShockAPI/Commands.cs:6608 msgid "Basic Tree" msgstr "普通树" -#: ../../TShockAPI/Commands.cs:2755 +#: ../../TShockAPI/Commands.cs:2770 msgid "Betsy" msgstr "双足翼龙" -#: ../../TShockAPI/Rest/RestManager.cs:889 +#: ../../TShockAPI/Rest/RestManager.cs:890 #, csharp-format msgid "Blood Moon has been set to {0}" msgstr "血月已被设置为{0}" -#: ../../TShockAPI/Rest/RestManager.cs:904 +#: ../../TShockAPI/Rest/RestManager.cs:905 #, csharp-format msgid "Bloodmoon state: {0}" -msgstr "血夜状态: {0}" +msgstr "血月状态: {0}" -#: ../../TShockAPI/Commands.cs:6596 +#: ../../TShockAPI/Commands.cs:6612 msgid "Boreal Tree" msgstr "针叶树" -#: ../../TShockAPI/GetDataHandlers.cs:3264 +#: ../../TShockAPI/GetDataHandlers.cs:3343 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer out of bounds from {0}" msgstr "Bouncer / HandleNpcTalk(NPC聊天防护)因目标NPC不存在而阻止了{0}与其聊天。" -#: ../../TShockAPI/GetDataHandlers.cs:3257 +#: ../../TShockAPI/GetDataHandlers.cs:3336 #, csharp-format msgid "Bouncer / HandleNpcTalk rejected from bouncer throttle from {0}" msgstr "Bouncer / HandleNpcTalk(NPC聊天防护)因限流而阻止了{0}进行聊天。" -#: ../../TShockAPI/Bouncer.cs:1465 +#: ../../TShockAPI/Bouncer.cs:1521 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from chest mismatch from {0}" msgstr "Bouncer / OnChestItemChange(箱子物品防护)因箱子不匹配阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1472 +#: ../../TShockAPI/Bouncer.cs:1528 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from disable from {0}" -msgstr "Bouncer / OnChestItemChange(箱子物品防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnChestItemChange(箱子物品防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1487 +#: ../../TShockAPI/Bouncer.cs:1543 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from range check from {0}" msgstr "Bouncer / OnChestItemChange(箱子物品防护)因超出范围阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1480 +#: ../../TShockAPI/Bouncer.cs:1536 #, csharp-format msgid "Bouncer / OnChestItemChange rejected from region protection? from {0}" msgstr "Bouncer / OnChestItemChange(箱子物品防护)因区域保护阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1500 +#: ../../TShockAPI/Bouncer.cs:1556 #, csharp-format msgid "Bouncer / OnChestOpen rejected from disabled from {0}" -msgstr "Bouncer / OnChestItemChange(开箱子防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnChestItemChange(开箱子防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1507 +#: ../../TShockAPI/Bouncer.cs:1563 #, csharp-format msgid "Bouncer / OnChestOpen rejected from range check from {0}" msgstr "Bouncer / OnChestOpen(开箱子防护)因超出范围阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1514 +#: ../../TShockAPI/Bouncer.cs:1570 #, csharp-format msgid "Bouncer / OnChestOpen rejected from region check from {0}" msgstr "Bouncer / OnChestOpen(开箱子防护)因区域检测阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2735 +#: ../../TShockAPI/Bouncer.cs:2799 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not finding active bobber projectile! - From {0}" -msgstr "Bouncer / OnFishOutNPC(钓出NPC防护)因没有有效的鱼饵阻止了{0}" +msgstr "Bouncer / OnFishOutNPC(特殊渔获防护)因没有有效的鱼饵阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2729 +#: ../../TShockAPI/Bouncer.cs:2793 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for not using a fishing rod! - From {0}" -msgstr "Bouncer / OnFishOutNPC(钓出NPC防护)因没在使用鱼杆阻止了{0}" +msgstr "Bouncer / OnFishOutNPC(特殊渔获防护)因没在使用鱼杆阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2741 +#: ../../TShockAPI/Bouncer.cs:2805 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected for the NPC not being on the fishable NPCs list! - From {0}" msgstr "Bouncer / OnFishOutNPC(钓出NPC防护)因试图钓出不可被钓出的NPC阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2753 +#: ../../TShockAPI/Bouncer.cs:2817 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected range checks from {0}" -msgstr "Bouncer / OnFishOutNPC(钓出NPC防护)因超出范围阻止了{0}" +msgstr "Bouncer / OnFishOutNPC(特殊渔获防护)因超出范围阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2747 +#: ../../TShockAPI/Bouncer.cs:2811 #, csharp-format msgid "Bouncer / OnFishOutNPC rejected summon boss permissions from {0}" -msgstr "Bouncer / OnFishOutNPC(钓出NPC防护)因没有召唤Boss的权限而阻止了{0}" +msgstr "Bouncer / OnFishOutNPC(特殊渔获防护)因没有召唤Boss的权限而阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2781 +#: ../../TShockAPI/Bouncer.cs:2845 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected disabled from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing(放置食物防护)因玩家被限制行动而阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2774 +#: ../../TShockAPI/Bouncer.cs:2838 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected item not placed by hand from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing(放置食物防护)因放置的不是手中的物品阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2792 +#: ../../TShockAPI/Bouncer.cs:2856 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected permissions from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing(放置食物防护)因没有权限阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2803 +#: ../../TShockAPI/Bouncer.cs:2867 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected range checks from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing(放置食物防护)因超出范围阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2767 +#: ../../TShockAPI/Bouncer.cs:2831 #, csharp-format msgid "Bouncer / OnFoodPlatterTryPlacing rejected tile placement valid from {0}" msgstr "Bouncer / OnFoodPlatterTryPlacing(放置食物防护)因放置位置无效阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2508 +#: ../../TShockAPI/Bouncer.cs:2569 #, csharp-format msgid "Bouncer / OnGemLockToggle invalid placement/deadmod from {0}" msgstr "Bouncer / OnGemLockToggle(宝石锁防护)因宝石锁位置无效阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2501 +#: ../../TShockAPI/Bouncer.cs:2562 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected boundaries check from {0}" msgstr "Bouncer / OnGemLockToggle(宝石锁防护)因边界检查阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2515 +#: ../../TShockAPI/Bouncer.cs:2576 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected disabled from {0}" -msgstr "Bouncer / OnGemLockToggle(宝石锁防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnGemLockToggle(宝石锁防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2524 +#: ../../TShockAPI/Bouncer.cs:2585 #, csharp-format msgid "Bouncer / OnGemLockToggle rejected permissions check from {0}" msgstr "Bouncer / OnGemLockToggle(宝石锁防护)因没有权限阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:453 +#: ../../TShockAPI/Bouncer.cs:460 msgid "Bouncer / OnGetSection rejected empty player name." msgstr "Bouncer / OnGetSection 拒绝了空的玩家名称。" -#: ../../TShockAPI/Bouncer.cs:445 +#: ../../TShockAPI/Bouncer.cs:452 #, csharp-format msgid "Bouncer / OnGetSection rejected GetSection packet from {0}" msgstr "Bouncer / OnGetSection 拒绝来自 {0} 的 GetSection 数据包" -#: ../../TShockAPI/Bouncer.cs:2096 +#: ../../TShockAPI/Bouncer.cs:2152 #, csharp-format msgid "Bouncer / OnHealOtherPlayer 0.2 check from {0}" msgstr "Bouncer / OnHealOtherPlayer(治疗友方防护)因比例数值检查而阻止了{0}治疗友方。" -#: ../../TShockAPI/Bouncer.cs:2120 +#: ../../TShockAPI/Bouncer.cs:2176 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected disabled/throttled from {0}" msgstr "Bouncer / OnHealOtherPlayer(治疗友方防护) 因被限制行动而阻止了{0}治疗友方。" -#: ../../TShockAPI/Bouncer.cs:2112 +#: ../../TShockAPI/Bouncer.cs:2168 #, csharp-format msgid "Bouncer / OnHealOtherPlayer rejected heal other threshold from {0} {1}/{2}" msgstr "Bouncer / OnHealOtherPlayer(治疗友方防护) 因治疗速度{1}超过上限{2}而阻止了{0}治疗友方。" -#: ../../TShockAPI/Bouncer.cs:2086 +#: ../../TShockAPI/Bouncer.cs:2142 msgid "Bouncer / OnHealOtherPlayer rejected null checks" msgstr "Bouncer / OnHealOtherPlayer(治疗友方防护)因目标玩家不存在而阻止了治疗。" -#: ../../TShockAPI/Bouncer.cs:1074 +#: ../../TShockAPI/Bouncer.cs:1095 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1103 +#, csharp-format +msgid "Bouncer / OnItemDrop force kicked (attempted to set velocity to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1114 #, csharp-format msgid "Bouncer / OnItemDrop rejected from attempt crash from {0}" msgstr "Bouncer / OnItemDrop 因{0}的尝试崩溃而拒绝" -#: ../../TShockAPI/Bouncer.cs:1150 +#: ../../TShockAPI/Bouncer.cs:1190 #, csharp-format msgid "Bouncer / OnItemDrop rejected from disabled from {0}" msgstr "Bouncer / OnItemDrop 因{0}禁用而拒绝。" -#: ../../TShockAPI/Bouncer.cs:1130 +#: ../../TShockAPI/Bouncer.cs:1170 #, csharp-format msgid "Bouncer / OnItemDrop rejected from drop item ban check / max stack check / min stack check from {0}" msgstr "Bouncer / OnItemDrop 拒绝了来自 {0} 的掉落物品检查/最大堆栈检查/最小堆栈检查" -#: ../../TShockAPI/Bouncer.cs:1099 +#: ../../TShockAPI/Bouncer.cs:1139 #, csharp-format msgid "Bouncer / OnItemDrop rejected from dupe range check from {0}" msgstr "Bouncer / OnItemDrop(物品掉落防护)因检查防止重复物品时超出范围而阻止了{0}掉落物品。" -#: ../../TShockAPI/Bouncer.cs:1120 +#: ../../TShockAPI/Bouncer.cs:1160 #, csharp-format msgid "Bouncer / OnItemDrop rejected from item drop/pickup check from {0}" msgstr "Bouncer / OnItemDrop 被拒绝来自 {0} 的物品/拾取检查" -#: ../../TShockAPI/Bouncer.cs:1084 +#: ../../TShockAPI/Bouncer.cs:1124 #, csharp-format msgid "Bouncer / OnItemDrop rejected from prefix check from {0}" msgstr "Bouncer / OnItemDrop 被拒绝来自 {0} 的前缀检查" -#: ../../TShockAPI/Bouncer.cs:1110 +#: ../../TShockAPI/Bouncer.cs:1150 #, csharp-format msgid "Bouncer / OnItemDrop rejected from range check from {0}" msgstr "Bouncer / OnItemDrop(物品掉落防护)因超出范围而阻止了{0}掉落物品。" -#: ../../TShockAPI/Bouncer.cs:1141 +#: ../../TShockAPI/Bouncer.cs:1181 #, csharp-format msgid "Bouncer / OnItemDrop rejected from sneaky from {0}" -msgstr "Bouncer / OnItemDrop 因 {0}的潜入而拒绝" +msgstr "炸弹/OnItemDrop 因 {0}的潜入而拒绝" -#: ../../TShockAPI/Bouncer.cs:2703 +#: ../../TShockAPI/Bouncer.cs:2767 #, csharp-format msgid "Bouncer / OnKillMe rejected bad length death text from {0}" msgstr "Bouncer / OnKillMe 拒绝了来自 {0} 的长度异常的死亡消息" -#: ../../TShockAPI/Bouncer.cs:2710 +#: ../../TShockAPI/Bouncer.cs:2774 #, csharp-format msgid "Bouncer / OnKillMe rejected custom death message from {0}" msgstr "Bouncer / OnKillMe 拒绝了来自 {0} 的自定义死亡消息" -#: ../../TShockAPI/Bouncer.cs:2684 +#: ../../TShockAPI/Bouncer.cs:2748 #, csharp-format msgid "Bouncer / OnKillMe rejected high damage from {0} {1}" msgstr "Bouncer / OnKillMe 拒绝了 {0} {1} 造成的高伤害" -#: ../../TShockAPI/Bouncer.cs:2693 +#: ../../TShockAPI/Bouncer.cs:2757 #, csharp-format msgid "Bouncer / OnKillMe rejected index check from {0}" msgstr "Bouncer / OnKillMe 拒绝了来自 {0} 的索引检查" -#: ../../TShockAPI/Bouncer.cs:1832 +#: ../../TShockAPI/Bouncer.cs:1888 #, csharp-format msgid "Bouncer / OnLiquidSet rejected build permission from {0}" msgstr "Bouncer / OnLiquidSet(液体防护)因没有建筑权限阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1676 +#: ../../TShockAPI/Bouncer.cs:1732 #, csharp-format msgid "Bouncer / OnLiquidSet rejected disabled from {0}" -msgstr "Bouncer / OnLiquidSet(液体防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnLiquidSet(液体防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1694 +#: ../../TShockAPI/Bouncer.cs:1750 #, csharp-format msgid "Bouncer / OnLiquidSet rejected from liquid threshold from {0} {1}/{2}" msgstr "Bouncer / OnLiquidSet(液体防护)因达到液体操作量上限({1}/{2})阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1669 +#: ../../TShockAPI/Bouncer.cs:1725 #, csharp-format msgid "Bouncer / OnLiquidSet rejected invalid check from {0}" msgstr "Bouncer / OnLiquidSet(液体防护)因无效检查阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1731 +#: ../../TShockAPI/Bouncer.cs:1787 #, csharp-format msgid "Bouncer / OnLiquidSet rejected liquid type {0} from {1} holding {2}" msgstr "Bouncer / OnLiquidSet(液体防护)因反作弊系统而阻止了{1}在持有{2}时放置液体{0}。" -#: ../../TShockAPI/Bouncer.cs:1840 +#: ../../TShockAPI/Bouncer.cs:1896 #, csharp-format msgid "Bouncer / OnLiquidSet rejected range checks from {0}" msgstr "Bouncer / OnLiquidSet(液体防护)因范围检查阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1848 +#: ../../TShockAPI/Bouncer.cs:1904 #, csharp-format msgid "Bouncer / OnLiquidSet rejected throttle from {0}" msgstr "Bouncer / OnLiquidSet(液体防护)因限流阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2573 +#: ../../TShockAPI/Bouncer.cs:2634 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected build perms from {0}" msgstr "Bouncer / OnMassWireOperation(蓝图操作防护)因没有建筑权限阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2566 +#: ../../TShockAPI/Bouncer.cs:2627 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected disabled from {0}" -msgstr "Bouncer / OnMassWireOperation(蓝图操作防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnMassWireOperation(蓝图操作防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:2559 +#: ../../TShockAPI/Bouncer.cs:2620 #, csharp-format msgid "Bouncer / OnMassWireOperation rejected valid placement from {0}" msgstr "Bouncer / OnMassWireOperation(蓝图操作防护)因位置无效阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1274 +#: ../../TShockAPI/Bouncer.cs:1330 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1}" msgstr "Bouncer / OnNewProjectile(弹幕防护)请向TShock报告这条信息! 正常来说这是阻止{0}创建弹幕{1}" -#: ../../TShockAPI/Bouncer.cs:1230 +#: ../../TShockAPI/Bouncer.cs:1286 #, csharp-format msgid "Bouncer / OnNewProjectile please report to tshock about this! normally this is a reject from {0} {1} (golf)" msgstr "Bouncer / OnNewProjectile(弹幕防护)请向TShock报告这条信息! 正常来说这是阻止{0}创建弹幕{1}(高尔夫)" -#: ../../TShockAPI/Bouncer.cs:1174 +#: ../../TShockAPI/Bouncer.cs:1230 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from above projectile limit from {0}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因超过弹幕上限阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1315 +#: ../../TShockAPI/Bouncer.cs:1371 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified AI from {0}." msgstr "Bouncer / OnNewProjectile(弹幕防护)因修改弹幕AI阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1331 +#: ../../TShockAPI/Bouncer.cs:1387 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer modified Zenith projectile from {0}." msgstr "Bouncer / OnNewProjectile(弹幕防护)因修改天顶剑弹幕阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1302 +#: ../../TShockAPI/Bouncer.cs:1358 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from bouncer throttle from {0}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因限流阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1201 +#: ../../TShockAPI/Bouncer.cs:1257 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from disabled from {0}" -msgstr "Bouncer / OnNewProjectile(弹幕防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnNewProjectile(弹幕防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1238 +#: ../../TShockAPI/Bouncer.cs:1294 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from hostile projectile from {0}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因创建敌对弹幕阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1183 +#: ../../TShockAPI/Bouncer.cs:1239 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from permission check from {0} {1}" msgstr "Bouncer / OnNewProjectile 拒绝了来自 {0} {1} 的权限检查" -#: ../../TShockAPI/Bouncer.cs:1294 +#: ../../TShockAPI/Bouncer.cs:1350 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile create threshold from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因射弹创建速度{1}超过上限{2}而阻止了{0}创建射弹。" -#: ../../TShockAPI/Bouncer.cs:1193 +#: ../../TShockAPI/Bouncer.cs:1249 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from projectile damage limit from {0} {1}/{2}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因超过弹幕伤害上限({1}/{2})阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1249 +#: ../../TShockAPI/Bouncer.cs:1305 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from tombstones from {0}" msgstr "Bouncer / OnNewProjectile(弹幕防护)阻止了{0}生成墓碑" -#: ../../TShockAPI/Bouncer.cs:1269 +#: ../../TShockAPI/Bouncer.cs:1325 #, csharp-format msgid "Bouncer / OnNewProjectile rejected from weird check from {0} {1}" msgstr "Bouncer / OnNewProjectile(弹幕防护)因奇怪的检测阻止了{0}创建弹幕{1}" -#: ../../TShockAPI/Bouncer.cs:2040 +#: ../../TShockAPI/Bouncer.cs:1216 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set position to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:1223 +#, csharp-format +msgid "Bouncer / OnNewProjectile rejected set velocity to infinity or NaN from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:2096 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected abnormal buff ({0}, last for {4}) added to {1} ({2}) from {3}." msgstr "Bouncer / OnNPCAddBuff(NPC Buff防护)因种类{0}或时长{4}异常而阻止了{3}对NPC{1}({2})附加状态。" -#: ../../TShockAPI/Bouncer.cs:1994 +#: ../../TShockAPI/Bouncer.cs:2050 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected disabled from {0}" -msgstr "Bouncer / OnNPCAddBuff(NPCBuff防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnNPCAddBuff(NPCBuff防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1987 +#: ../../TShockAPI/Bouncer.cs:2043 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected null npc from {0}" msgstr "Bouncer / OnNPCAddBuff 拒绝空的npc对象,从 {0}" -#: ../../TShockAPI/Bouncer.cs:1978 +#: ../../TShockAPI/Bouncer.cs:2034 #, csharp-format msgid "Bouncer / OnNPCAddBuff rejected out of bounds NPC update from {0}" msgstr "Bouncer / OnNPCAddBuff(NPCBuff防护)阻止了{0}的越界NPC更新" -#: ../../TShockAPI/Bouncer.cs:1416 +#: ../../TShockAPI/Bouncer.cs:1472 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from bouncer throttle from {0}" msgstr "Bouncer / OnNPCStrike(攻击NPC防护)因限流阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1391 +#: ../../TShockAPI/Bouncer.cs:1447 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from damage threshold from {0} {1}/{2}" msgstr "Bouncer / OnNPCStrike(攻击NPC防护)因伤害超过上限({1}/{2})阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1399 +#: ../../TShockAPI/Bouncer.cs:1455 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from disabled from {0}" -msgstr "Bouncer / OnNPCStrike(攻击NPC防护)因玩家被拘束阻止了{0}" +msgstr "Bouncer / OnNPCStrike(攻击NPC防护)因玩家被限制行动阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:1408 +#: ../../TShockAPI/Bouncer.cs:1464 #, csharp-format msgid "Bouncer / OnNPCStrike rejected from range checks from {0}" msgstr "Bouncer / OnNPCStrike 拒绝来自{0}的范围检查" -#: ../../TShockAPI/Bouncer.cs:1550 +#: ../../TShockAPI/Bouncer.cs:1606 #, csharp-format msgid "Bouncer / OnPlaceChest / rejected from invalid place style from {0}" msgstr "Bouncer / OnplaceChest / 拒绝来自 {0} 的无效的位置样式" -#: ../../TShockAPI/Bouncer.cs:1542 +#: ../../TShockAPI/Bouncer.cs:1598 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from disabled from {0}" msgstr "Bouncer / OnplaceChest 因禁用而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1535 +#: ../../TShockAPI/Bouncer.cs:1591 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid check from {0}" msgstr "Bouncer / OnplaceChest 拒绝了来自 {0} 的无效的检查" -#: ../../TShockAPI/Bouncer.cs:1583 +#: ../../TShockAPI/Bouncer.cs:1639 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from invalid permission from {0}" msgstr "Bouncer / OnplaceChest 拒绝了来自 {0} 的无效权限" -#: ../../TShockAPI/Bouncer.cs:1591 +#: ../../TShockAPI/Bouncer.cs:1647 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from range check from {0}" msgstr "Bouncer / OnPlaceChest(宝箱放置防护)因超出范围而阻止了{0}使用宝箱。" -#: ../../TShockAPI/Bouncer.cs:1562 +#: ../../TShockAPI/Bouncer.cs:1618 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird check from {0}" msgstr "Bouncer / OnPlaceChest 拒绝了来自 {0} 的奇怪的检查" -#: ../../TShockAPI/Bouncer.cs:1573 +#: ../../TShockAPI/Bouncer.cs:1629 #, csharp-format msgid "Bouncer / OnPlaceChest rejected from weird placement check from {0}" msgstr "Bouncer / OnPlaceChest 拒绝了来自 {0} 的奇怪放置检查" -#: ../../TShockAPI/Bouncer.cs:2440 +#: ../../TShockAPI/Bouncer.cs:2496 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected disabled from {0}" msgstr "Bouncer / OnPlaceItemFrame 因禁用而拒绝了 {0}" -#: ../../TShockAPI/Bouncer.cs:2448 +#: ../../TShockAPI/Bouncer.cs:2509 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected permissions from {0}" msgstr "Bouncer / OnplaceItemFrame 拒绝了来自 {0} 的权限" -#: ../../TShockAPI/Bouncer.cs:2456 +#: ../../TShockAPI/Bouncer.cs:2517 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected range checks from {0}" msgstr "Bouncer / OnPlaceItemFrame(武器架防护)因超出范围而阻止了{0}使用武器架。" -#: ../../TShockAPI/Bouncer.cs:2433 +#: ../../TShockAPI/Bouncer.cs:2489 #, csharp-format msgid "Bouncer / OnPlaceItemFrame rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceItemFrame 因图格防止检查而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2313 +#: ../../TShockAPI/Bouncer.cs:2369 #, csharp-format msgid "Bouncer / OnPlaceObject rejected awkward tile creation/selection from {0}" msgstr "Bouncer / OnPlaceObject 因创建/选择图格而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2300 +#: ../../TShockAPI/Bouncer.cs:2356 #, csharp-format msgid "Bouncer / OnPlaceObject rejected Axe of Regrowth only places saplings {0}" msgstr "Bouncer / OnPlaceObject 拒绝仅使用再生之斧放置树苗 {0}" -#: ../../TShockAPI/Bouncer.cs:2261 +#: ../../TShockAPI/Bouncer.cs:2317 #, csharp-format msgid "Bouncer / OnPlaceObject rejected banned tiles from {0}" msgstr "Bouncer / OnPlaceObject 禁止放置方块 {0}" -#: ../../TShockAPI/Bouncer.cs:2270 +#: ../../TShockAPI/Bouncer.cs:2326 #, csharp-format msgid "Bouncer / OnPlaceObject rejected dead people don't do things from {0}" msgstr "Bouncer / OnPlaceObject 拒绝死亡玩家 {0} 做任何事情" -#: ../../TShockAPI/Bouncer.cs:2278 +#: ../../TShockAPI/Bouncer.cs:2334 #, csharp-format msgid "Bouncer / OnPlaceObject rejected disabled from {0}" msgstr "Bouncer / OnplaceObject 拒绝了 {0} 禁用" -#: ../../TShockAPI/Bouncer.cs:2252 +#: ../../TShockAPI/Bouncer.cs:2308 #, csharp-format msgid "Bouncer / OnPlaceObject rejected fake containers from {0}" msgstr "Bouncer / OnplaceObject 拒绝了 {0} 的假容器" -#: ../../TShockAPI/Bouncer.cs:2351 +#: ../../TShockAPI/Bouncer.cs:2407 #, csharp-format msgid "Bouncer / OnPlaceObject rejected mad loop from {0}" msgstr "Bouncer / OnPlaceObject 拒绝无限制的循环 {0}" -#: ../../TShockAPI/Bouncer.cs:2336 +#: ../../TShockAPI/Bouncer.cs:2392 #, csharp-format msgid "Bouncer / OnPlaceObject rejected null tile data from {0}" msgstr "Bouncer / OnPlaceObject 拒绝无效方块数据 {0}" -#: ../../TShockAPI/Bouncer.cs:2325 +#: ../../TShockAPI/Bouncer.cs:2381 #, csharp-format msgid "Bouncer / OnPlaceObject rejected object placement with invalid style {1} (expected {2}) from {0}" msgstr "Bouncer / OnPlaceObject(放置对象) 拒绝了来自 {0} 的对象的位置,其样式为 {1} (预期为 {2})" -#: ../../TShockAPI/Bouncer.cs:2229 +#: ../../TShockAPI/Bouncer.cs:2285 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile from {0}" msgstr "Bouncer / OnPlaceObject 拒绝在此位置放置方块 {0}" -#: ../../TShockAPI/Bouncer.cs:2236 +#: ../../TShockAPI/Bouncer.cs:2292 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile x from {0}" msgstr "Bouncer / OnPlaceObject 拒绝在此横坐标放置方块 {0}" -#: ../../TShockAPI/Bouncer.cs:2243 +#: ../../TShockAPI/Bouncer.cs:2299 #, csharp-format msgid "Bouncer / OnPlaceObject rejected out of bounds tile y from {0}" msgstr "Bouncer / OnPlaceObject 拒绝在此纵坐标放置方块 {0}" -#: ../../TShockAPI/Bouncer.cs:2367 +#: ../../TShockAPI/Bouncer.cs:2423 #, csharp-format msgid "Bouncer / OnPlaceObject rejected range checks from {0}" msgstr "Bouncer / OnPlaceObject 拒绝范围检查 {0}" -#: ../../TShockAPI/Bouncer.cs:2289 +#: ../../TShockAPI/Bouncer.cs:2345 #, csharp-format msgid "Bouncer / OnPlaceObject rejected rubblemaker I can't believe it's not rubble! from {0}" msgstr "Bouncer / OnPlaceObject 拒绝使用堆石器—此位置已存在碎石(我不信这不是碎石!) {0}" -#: ../../TShockAPI/Bouncer.cs:2375 +#: ../../TShockAPI/Bouncer.cs:2431 #, csharp-format msgid "Bouncer / OnPlaceObject rejected tile place threshold from {0} {1}/{2}" msgstr "Bouncer / OnPlaceObject(大型物体放置防护)因物块放置速度{1}超过上限{2}而阻止了{0}放置大型物体。" -#: ../../TShockAPI/Bouncer.cs:2222 +#: ../../TShockAPI/Bouncer.cs:2278 #, csharp-format msgid "Bouncer / OnPlaceObject rejected valid placements from {0}" msgstr "Bouncer / OnPlaceObject 因有效位置检查而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2406 +#: ../../TShockAPI/Bouncer.cs:2462 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected disabled from {0}" msgstr "Bouncer / OnPlaceTileEntity 因被禁用而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2413 +#: ../../TShockAPI/Bouncer.cs:2469 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected permissions from {0}" msgstr "Bouncer / OnPlaceTileEntity 拒绝了 {0} 的权限" -#: ../../TShockAPI/Bouncer.cs:2420 +#: ../../TShockAPI/Bouncer.cs:2476 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected range checks from {0}" msgstr "Bouncer / OnPlaceTileEntity 拒绝范围检查 {0}" -#: ../../TShockAPI/Bouncer.cs:2399 +#: ../../TShockAPI/Bouncer.cs:2455 #, csharp-format msgid "Bouncer / OnPlaceTileEntity rejected tile placement valid from {0}" msgstr "Bouncer / OnPlaceTileEntity 因放置位置无效受阻止 {0}" -#: ../../TShockAPI/Bouncer.cs:1642 +#: ../../TShockAPI/Bouncer.cs:1698 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from disabled from {0}" msgstr "Bouncer / OnPlayerAnimation 因被禁用而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1650 +#: ../../TShockAPI/Bouncer.cs:1706 #, csharp-format msgid "Bouncer / OnPlayerAnimation rejected from throttle from {0}" msgstr "Bouncer / OnPlayerAnimation 阻止玩家窒息 {0}" -#: ../../TShockAPI/Bouncer.cs:1960 +#: ../../TShockAPI/Bouncer.cs:2016 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied for that long" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})持续过久而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1942 +#: ../../TShockAPI/Bouncer.cs:1998 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied to non-senders" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的目标应该是自己而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1951 +#: ../../TShockAPI/Bouncer.cs:2007 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff cannot be applied without pvp" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})只能在PvP时出现而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1933 +#: ../../TShockAPI/Bouncer.cs:1989 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: buff is not whitelisted" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})不应当出现而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1893 +#: ../../TShockAPI/Bouncer.cs:1949 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: invalid buff type" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})根本不存在而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1902 +#: ../../TShockAPI/Bouncer.cs:1958 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being disabled" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的来源被限制行动而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1911 +#: ../../TShockAPI/Bouncer.cs:1967 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is being throttled" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的来源被限流而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1924 +#: ../../TShockAPI/Bouncer.cs:1980 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: sender is not in range of target" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的双方距离太远而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1875 +#: ../../TShockAPI/Bouncer.cs:1931 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target ID out of bounds" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的目标玩家不存在而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:1884 +#: ../../TShockAPI/Bouncer.cs:1940 #, csharp-format msgid "Bouncer / OnPlayerBuff rejected {0} ({1}) applying buff {2} to {3} for {4} ticks: target is null" msgstr "Bouncer / OnPlayerBuff(玩家Buff防护)因状态{2}(时长{4})的目标玩家不存在而阻止了玩家{0}(序号{1})对玩家{3}附加状态。" -#: ../../TShockAPI/Bouncer.cs:2667 +#: ../../TShockAPI/Bouncer.cs:2731 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected custom death message from {0}" msgstr "Bouncer / OnPlayerDamage 因自定义死亡消息而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2603 +#: ../../TShockAPI/Bouncer.cs:2664 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold from {0} {1}/{2}" msgstr "Bouncer / OnPlayerDamage 因伤害超过上限而拒绝了 {0} {1}/{2}" -#: ../../TShockAPI/Bouncer.cs:2610 +#: ../../TShockAPI/Bouncer.cs:2671 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected damage threshold2 from {0} {1}/{2}" msgstr "Bouncer / OnPlayerDamage(玩家受伤防护)因伤害{1}超过上限{2}而阻止了{0}受到伤害。" -#: ../../TShockAPI/Bouncer.cs:2630 +#: ../../TShockAPI/Bouncer.cs:2691 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected disabled from {0}" msgstr "Bouncer / OnPlayerDamage 因被禁用而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2621 +#: ../../TShockAPI/Bouncer.cs:2682 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected hostile from {0}" msgstr "Bouncer / OnPlayerDamage 因敌对而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2594 +#: ../../TShockAPI/Bouncer.cs:2655 msgid "Bouncer / OnPlayerDamage rejected null check" msgstr "Bouncer / OnPlayerDamage 拒绝了空值检查" -#: ../../TShockAPI/Bouncer.cs:2639 +#: ../../TShockAPI/Bouncer.cs:2700 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected range checks from {0}" msgstr "Bouncer / OnPlayerDamage 因范围检查而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2648 +#: ../../TShockAPI/Bouncer.cs:2709 #, csharp-format msgid "Bouncer / OnPlayerDamage rejected throttled from {0}" msgstr "Bouncer / OnPlayerDamage 拒绝了{0}的调整" -#: ../../TShockAPI/Bouncer.cs:2488 +#: ../../TShockAPI/Bouncer.cs:2549 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected disabled/throttled from {0}" msgstr "Bouncer / OnPlayerPortalTeleport 因被禁用/调整而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2480 +#: ../../TShockAPI/Bouncer.cs:2541 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected teleport out of bounds from {0}" msgstr "Bouncer / OnPlayerPortalTeleport 因传送超出边界而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2469 +#: ../../TShockAPI/Bouncer.cs:2530 #, csharp-format msgid "Bouncer / OnPlayerPortalTeleport rejected untargetable teleport from {0}" msgstr "Bouncer / OnPlayerPortalTeleport 因传送目标不准确而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:517 +#: ../../TShockAPI/Bouncer.cs:532 #, csharp-format msgid "Bouncer / OnPlayerUpdate *would have rejected* from (last network position zero) {0}" msgstr "Bouncer / OnPlayerUpdate 将会因(最后上线的位置为0)而被拒绝{0}" -#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:510 +#, csharp-format +msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set position to infinity or NaN) from {0}" +msgstr "" + +#: ../../TShockAPI/Bouncer.cs:502 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity +/- 50000) from {0}" msgstr "Bouncer / OnPlayerUpdate已从 {0}踢出 (试图设置速度+/-50000)" -#: ../../TShockAPI/Bouncer.cs:479 +#: ../../TShockAPI/Bouncer.cs:486 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to infinity) from {0}" msgstr "Bouncer / OnPlayerUpdate已从 {0}踢出 (试图将速度设置为无限)" -#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:494 #, csharp-format msgid "Bouncer / OnPlayerUpdate force kicked (attempted to set velocity to NaN) from {0}" msgstr "Bouncer / OnPlayerUpdate已从 {0}踢出 (试图将速度设置为空)" -#: ../../TShockAPI/Bouncer.cs:561 +#: ../../TShockAPI/Bouncer.cs:576 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (??) {0}" msgstr "Bouncer / OnPlayerUpdate(玩家更新防护)阻止了{0}(??)" -#: ../../TShockAPI/Bouncer.cs:565 +#: ../../TShockAPI/Bouncer.cs:580 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (below ??) {0}" msgstr "Bouncer / OnPlayerUpdate(玩家更新防护)阻止了{0}(??下面)" -#: ../../TShockAPI/Bouncer.cs:573 +#: ../../TShockAPI/Bouncer.cs:588 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (corpses don't move) {0}" msgstr "Bouncer / OnPlayerUpdate 因(移动尸体)而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:510 +#: ../../TShockAPI/Bouncer.cs:525 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (inventory length) {0}" msgstr "Bouncer / OnPlayerUpdate 因(背包长度)而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:518 #, csharp-format msgid "Bouncer / OnPlayerUpdate rejected from (position check) {0}" msgstr "Bouncer / OnPlayerUpdate 因(位置检查)而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1628 +#: ../../TShockAPI/Bouncer.cs:1684 #, csharp-format msgid "Bouncer / OnPlayerZone rejected from {0}" msgstr "Bouncer / OnPlayerZone 拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1445 +#: ../../TShockAPI/Bouncer.cs:1501 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from bouncer throttle from {0}" msgstr "Bouncer / OnProjectileKill 因安全调整而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1437 +#: ../../TShockAPI/Bouncer.cs:1493 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from disabled from {0}" msgstr "Bouncer / OnProjectileKill 因被禁用而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:1430 +#: ../../TShockAPI/Bouncer.cs:1486 #, csharp-format msgid "Bouncer / OnProjectileKill rejected from negative projectile index from {0}" msgstr "Bouncer / OnProjectileKill 因负的弹幕索引而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2153 +#: ../../TShockAPI/Bouncer.cs:2209 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected npc release from {0}" msgstr "Bouncer / OnReleaseNPC 因npc生成而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2145 +#: ../../TShockAPI/Bouncer.cs:2201 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected out of bounds from {0}" msgstr "Bouncer / OnReleaseNPC 因超出边界而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2204 +#: ../../TShockAPI/Bouncer.cs:2260 #, csharp-format msgid "Bouncer / OnReleaseNPC rejected throttle from {0}" msgstr "Bouncer / OnReleaseNPC 因限流而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2160 +#: ../../TShockAPI/Bouncer.cs:2216 #, csharp-format msgid "Bouncer / OnReleaseNPC released different critter from {0}" msgstr "Bouncer / OnReleaseNPC(小动物防护) 因物品和释放的小动物不匹配而阻止了{0}释放小动物。" -#: ../../TShockAPI/Bouncer.cs:700 +#: ../../TShockAPI/Bouncer.cs:724 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (axe) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(斧头)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(斧头)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:804 +#: ../../TShockAPI/Bouncer.cs:828 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (chestcap) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(箱子上限)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(箱子上限)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:708 +#: ../../TShockAPI/Bouncer.cs:732 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(锤子)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(锤子)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:737 +#: ../../TShockAPI/Bouncer.cs:761 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (hammer2) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(锤子2)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(锤子2)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:756 +#: ../../TShockAPI/Bouncer.cs:780 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (inconceivable rope coil) {0} {1} {2} selectedItem:{3} itemCreateTile:{4}" msgstr "Bouncer / OnTileEdit(物块防护)因放置({1})的绳索{2}不合理(与射弹和所持物品{3}的物块{4}不匹配)阻止了{0}放置绳索。" -#: ../../TShockAPI/Bouncer.cs:767 +#: ../../TShockAPI/Bouncer.cs:791 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (ms1) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(最大形态1)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(最大形态1)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:639 +#: ../../TShockAPI/Bouncer.cs:664 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pdm) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(防止死亡状态下修改)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(防止死亡状态下修改)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:725 +#: ../../TShockAPI/Bouncer.cs:749 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (pick) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(镐子)。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(镐子)。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:675 -#: ../../TShockAPI/Bouncer.cs:686 +#: ../../TShockAPI/Bouncer.cs:699 +#: ../../TShockAPI/Bouncer.cs:710 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (placestyle) {0} {1} {2} placeStyle: {3} expectedStyle: {4}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(形态)。{1},{2} 放置的形态:{3},预期的形态:{4}" -#: ../../TShockAPI/Bouncer.cs:653 +#: ../../TShockAPI/Bouncer.cs:677 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tb) {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(物块被封禁)。{1},{2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(物块被封禁)。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:603 +#: ../../TShockAPI/Bouncer.cs:619 #, csharp-format msgid "Bouncer / OnTileEdit rejected from (tile placement valid) {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(放置位置)。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:848 +#: ../../TShockAPI/Bouncer.cs:872 #, csharp-format msgid "Bouncer / OnTileEdit rejected from actuator/presserator from {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的促动操作。{1} {2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的促动操作。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:612 +#: ../../TShockAPI/Bouncer.cs:628 #, csharp-format msgid "Bouncer / OnTileEdit rejected from build from {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的建筑操作。{1},{2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的建筑操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:869 +#: ../../TShockAPI/Bouncer.cs:893 #, csharp-format msgid "Bouncer / OnTileEdit rejected from disable from {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)因玩家被拘束阻止了{0}的操作。{1},{2} " +msgstr "Bouncer / OnTileEdit(物块防护)因玩家被限制行动阻止了{0}的操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:624 +#: ../../TShockAPI/Bouncer.cs:649 #, csharp-format msgid "Bouncer / OnTileEdit rejected from editData out of bounds {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的越界操作。{1},{2} " +msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的越界操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:908 +#: ../../TShockAPI/Bouncer.cs:932 #, csharp-format msgid "Bouncer / OnTileEdit rejected from explosives/fuses from {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的爆炸物操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:878 +#: ../../TShockAPI/Bouncer.cs:902 #, csharp-format msgid "Bouncer / OnTileEdit rejected from ice/build from {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的冰块或建筑操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:823 +#: ../../TShockAPI/Bouncer.cs:847 #, csharp-format msgid "Bouncer / OnTileEdit rejected from place wire from {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}放置电线。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:858 +#: ../../TShockAPI/Bouncer.cs:882 #, csharp-format msgid "Bouncer / OnTileEdit rejected from sts allow cut from {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}的操作(在检测允许劈砍的矩形物块操作时)。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:952 +#: ../../TShockAPI/Bouncer.cs:976 #, csharp-format msgid "Bouncer / OnTileEdit rejected from throttled from {0} {1} {2}" -msgstr "Bouncer / OnTileEdit(物块防护)因限流阻止了{0}的操作。{1},{2} " +msgstr "Bouncer / OnTileEdit(物块防护)因限流阻止了{0}的操作。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:926 +#: ../../TShockAPI/Bouncer.cs:950 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile kill threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit(物块防护)因物块破坏速度{1}超过上限而阻止了{0}破坏物块。" -#: ../../TShockAPI/Bouncer.cs:944 +#: ../../TShockAPI/Bouncer.cs:968 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile place threshold from {0}, (value: {1})" msgstr "Bouncer / OnTileEdit(物块防护)因物块放置速度{1}超过上限而阻止了{0}放置物块。" -#: ../../TShockAPI/Bouncer.cs:786 +#: ../../TShockAPI/Bouncer.cs:810 #, csharp-format msgid "Bouncer / OnTileEdit rejected from tile placement not matching selected item createTile {0} {1} {2} selectedItemID:{3} createTile:{4}" msgstr "Bouncer / OnTileEdit(图格防护)因放置({1})的物块{2}与所持物品{3}的物块{4}不匹配阻止了{0}放置物块。" -#: ../../TShockAPI/Bouncer.cs:776 +#: ../../TShockAPI/Bouncer.cs:800 #, csharp-format msgid "Bouncer / OnTileEdit rejected from using ice rod but not placing ice block {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)因使用了冰块法杖放置的却不是冰块阻止了{0}。{1},{2}" -#: ../../TShockAPI/Bouncer.cs:795 +#: ../../TShockAPI/Bouncer.cs:819 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wall placement not matching selected item createWall {0} {1} {2} selectedItemID:{3} createWall:{4}" msgstr "Bouncer / OnTileEdit(图格防护)因放置({1})的墙壁{2}与所持物品{3}的墙壁{4}不匹配阻止了{0}放置墙壁。" -#: ../../TShockAPI/Bouncer.cs:985 +#: ../../TShockAPI/Bouncer.cs:1009 #, csharp-format msgid "Bouncer / OnTileEdit rejected from weird confusing flow control from {0}" msgstr "Bouncer / OnTileEdit(物块防护)因奇怪的迷惑操作阻止了{0}" -#: ../../TShockAPI/Bouncer.cs:837 +#: ../../TShockAPI/Bouncer.cs:861 #, csharp-format msgid "Bouncer / OnTileEdit rejected from wire cutter from {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)阻止了{0}删除电线。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:632 +#: ../../TShockAPI/Bouncer.cs:657 #, csharp-format msgid "Bouncer / OnTileEdit super accepted from (ice block) {0} {1} {2}" msgstr "Bouncer / OnTileEdit(物块防护)允许了{0}的冰块操作。{1} {2}" -#: ../../TShockAPI/Bouncer.cs:2060 +#: ../../TShockAPI/Bouncer.cs:2116 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected npc home build permission from {0}" msgstr "Bouncer / OnUpdateNPCHome 因npc房屋建造权限而拒绝了{0}" -#: ../../TShockAPI/Bouncer.cs:2070 +#: ../../TShockAPI/Bouncer.cs:2126 #, csharp-format msgid "Bouncer / OnUpdateNPCHome rejected range checks from {0}" msgstr "Bouncer / OnUpdateNPCHome 因范围检查而拒绝了{0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:558 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:420 #, csharp-format msgid "Bouncer / SendTileRect accepted clientside world edit from {0}" msgstr "Bouncer / SendTileRect(矩形图格操作防护)接受了{0}的客户端图格修改请求" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:414 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:475 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:495 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:508 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:522 #, csharp-format -msgid "Bouncer / SendTileRect processing a tile conversion update - [{0}] -> [{1}]" -msgstr "Bouncer / SendTileRect(矩形图格操作防护)正在处理物块转化(从{0}转化为{1})" +msgid "Bouncer / SendTileRect reimplemented from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:429 -#, csharp-format -msgid "Bouncer / SendTileRect processing a wall conversion update - [{0}] -> [{1}]" -msgstr "Bouncer / SendTileRect(矩形图格操作防护)正在处理墙壁转化(从{0}转化为{1})" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:129 -#, csharp-format -msgid "Bouncer / SendTileRect reimplemented from carbonara from {0}" -msgstr "Bouncer / SendTileRect 从图格中重新实现了{0}" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:299 -msgid "Bouncer / SendTileRect rejected for banned tile" -msgstr "Bouncer / SendTileRect 因封禁的图格而拒绝" - -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:578 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:453 #, csharp-format msgid "Bouncer / SendTileRect rejected from being disabled from {0}" msgstr "Bouncer / SendTileRect 因被禁用而拒绝了{0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:293 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:529 #, csharp-format -msgid "Bouncer / SendTileRect rejected from no permission for tile object from {0}" -msgstr "Bouncer / SendTileRect 因 {0} 没有物块对象权限而被拒绝" +msgid "Bouncer / SendTileRect rejected from matches from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:565 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:466 #, csharp-format -msgid "Bouncer / SendTileRect rejected from non-vanilla tilemod from {0}" -msgstr "Bouncer / SendTileRect 拒绝来自 {0} 的非原版图格" +msgid "Bouncer / SendTileRect rejected from out of bounds / build permission from {0}" +msgstr "" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:571 +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:485 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from out of range from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:434 +#, csharp-format +msgid "Bouncer / SendTileRect rejected from size from {0}" +msgstr "" + +#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:443 #, csharp-format msgid "Bouncer / SendTileRect rejected from throttle from {0}" msgstr "Bouncer / SendTileRect 因限流而拒绝了{0}" -#: ../../TShockAPI/Handlers/SendTileRectHandler.cs:610 -msgid "Bouncer / SendTileRectHandler - rejected tile object because object dimensions fall outside the tile rect (excessive size)" -msgstr "Bouncer / SendTileRectHandler(矩形图格操作防护)因操作对象过大超出了矩形范围而阻止了图格操作。" - #: ../../TShockAPI/Utils.cs:136 #, csharp-format msgid "Broadcast: {0}" @@ -2532,27 +2552,27 @@ msgstr "广播: {0}" msgid "Broadcast: {0}: {1}" msgstr "广播: {0}: {1}" -#: ../../TShockAPI/Commands.cs:272 +#: ../../TShockAPI/Commands.cs:277 msgid "Broadcasts a message to everyone on the server." -msgstr "向服务器上的所有人广播一条消息。" +msgstr "向所有在线玩家广播一条消息。" -#: ../../TShockAPI/Commands.cs:6367 +#: ../../TShockAPI/Commands.cs:6383 msgid "Buff Syntax and Example" -msgstr "状态和示例" +msgstr "Buff的用法和示例" -#: ../../TShockAPI/Commands.cs:6010 +#: ../../TShockAPI/Commands.cs:6026 msgid "Butcher Syntax and Example" -msgstr "Butcher语法和示例" +msgstr "指令Butcher的用法和示例" -#: ../../TShockAPI/GetDataHandlers.cs:2619 +#: ../../TShockAPI/GetDataHandlers.cs:2656 msgid "Bypass SSC is enabled for your account. SSC data will not be loaded or saved." msgstr "你拥有不受服务器端存档影响的权限,因此将会使用本地存档,不会保存到服务端。" -#: ../../TShockAPI/Commands.cs:6676 +#: ../../TShockAPI/Commands.cs:6692 msgid "Cactus" msgstr "仙人球" -#: ../../TShockAPI/DB/IQueryBuilder.cs:319 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:78 msgid "Can't set to true SqlColumn.DefaultCurrentTimestamp when the MySqlDbType is not DateTime" msgstr "当MySqlDbType不为DateTime时,不能将SqlColumn.DefaultCurrentTimestamp设置为 true" @@ -2561,79 +2581,79 @@ msgstr "当MySqlDbType不为DateTime时,不能将SqlColumn.DefaultCurrentTimes msgid "Cannot load module {0} as it does not derive from {1}" msgstr "无法加载模块{0},因为它没有继承{1}" -#: ../../TShockAPI/Bouncer.cs:1270 +#: ../../TShockAPI/Bouncer.cs:1326 msgid "Certain projectiles have been ignored for cheat detection." msgstr "某些弹幕已经因防作弊而被忽略。" -#: ../../TShockAPI/Commands.cs:4462 +#: ../../TShockAPI/Commands.cs:4477 #, csharp-format msgid "Changed the maximum spawns to {0}." msgstr "已将最大生成量更改为 {0}。" -#: ../../TShockAPI/Commands.cs:4443 +#: ../../TShockAPI/Commands.cs:4458 msgid "Changed the maximum spawns to 5." msgstr "已将最大生成量改为5。" -#: ../../TShockAPI/Commands.cs:4501 +#: ../../TShockAPI/Commands.cs:4516 #, csharp-format msgid "Changed the spawn rate to {0}." -msgstr "已将生成率更改为 {0}。" +msgstr "已将生成率更改为{0}。" -#: ../../TShockAPI/Commands.cs:4483 +#: ../../TShockAPI/Commands.cs:4498 msgid "Changed the spawn rate to 600." msgstr "将最大生成率更改为600。" -#: ../../TShockAPI/Commands.cs:368 +#: ../../TShockAPI/Commands.cs:373 msgid "Changes the server password." msgstr "更改服务器密码。" -#: ../../TShockAPI/Commands.cs:522 +#: ../../TShockAPI/Commands.cs:527 msgid "Changes the wind speed." msgstr "更改风速。" -#: ../../TShockAPI/Commands.cs:467 +#: ../../TShockAPI/Commands.cs:472 msgid "Changes the world mode." msgstr "更改世界模式。" -#: ../../TShockAPI/Commands.cs:252 +#: ../../TShockAPI/Commands.cs:257 msgid "Changes your account's password." msgstr "更改你的密码。" -#: ../../TShockAPI/Commands.cs:3646 +#: ../../TShockAPI/Commands.cs:3661 #, csharp-format msgid "Chat color for \"{0}\" is \"{1}\"." msgstr "用户组 {0} 的聊天文本颜色是 \"{1}\"。" -#: ../../TShockAPI/Commands.cs:3632 +#: ../../TShockAPI/Commands.cs:3647 #, csharp-format msgid "Chat color for group \"{0}\" set to \"{1}\"." msgstr "用户组 \"{0}\" 的聊天文本颜色已被设置为 \"{1}\"。" -#: ../../TShockAPI/Commands.cs:352 +#: ../../TShockAPI/Commands.cs:357 msgid "Checks for TShock updates." msgstr "检查TShock更新。" -#: ../../TShockAPI/Commands.cs:5186 +#: ../../TShockAPI/Commands.cs:5202 msgid "clear - Clears the temporary region points." -msgstr "clear - 清除临时的区域点" +msgstr "clear - 清除临时的区域点。" -#: ../../TShockAPI/Commands.cs:5814 +#: ../../TShockAPI/Commands.cs:5830 msgid "Clear Syntax" -msgstr "清空语法" +msgstr "Clear用法" -#: ../../TShockAPI/Commands.cs:2531 +#: ../../TShockAPI/Commands.cs:2546 msgid "Cleared all users from the angler quest completion list for today." -msgstr "已清空今日渔夫任务完成列表中的所有用户" +msgstr "已清空今日渔夫任务完成列表中的所有用户。" -#: ../../TShockAPI/Commands.cs:537 +#: ../../TShockAPI/Commands.cs:542 msgid "Clears item drops or projectiles." msgstr "清除掉落物或射弹。" -#: ../../TShockAPI/Commands.cs:3440 +#: ../../TShockAPI/Commands.cs:3455 msgid "color - Changes a group's chat color." msgstr "color <用户组> - 改变用户组聊天文本颜色。" -#: ../../TShockAPI/Commands.cs:5329 +#: ../../TShockAPI/Commands.cs:5345 #, csharp-format msgid "Command aliases: {0}, {1}, {2}" msgstr "指令别名: {0}, {1}, {2}" @@ -2642,20 +2662,20 @@ msgstr "指令别名: {0}, {1}, {2}" msgid "Command failed, check logs for more details." msgstr "指令执行失败,请查看日志获取更多信息。" -#: ../../TShockAPI/Commands.cs:5260 +#: ../../TShockAPI/Commands.cs:5276 msgid "Commands ({{0}}/{{1}}):" msgstr "指令 ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3203 +#: ../../TShockAPI/Commands.cs:3218 msgid "Commands: add, del, hide, list, send, [warpname]." msgstr "命令: add, del, hide, list, send, [传送点名]" -#: ../../TShockAPI/TShock.cs:765 +#: ../../TShockAPI/TShock.cs:771 #, csharp-format msgid "Config path has been set to {0}" msgstr "配置文件读取路径已设置为{0}。" -#: ../../TShockAPI/Commands.cs:4395 +#: ../../TShockAPI/Commands.cs:4410 msgid "Configuration, permissions, and regions reload complete. Some changes may require a server restart." msgstr "配置、权限和区域重新加载完成。有些更改可能需要重新启动服务器。" @@ -2663,20 +2683,20 @@ msgstr "配置、权限和区域重新加载完成。有些更改可能需要重 msgid "Connect to the internet to figure out what to download?" msgstr "是否检查所需的依赖?(选择否将会退出)" -#: ../../TShockAPI/TShock.cs:1329 +#: ../../TShockAPI/TShock.cs:1335 msgid "Connecting via a proxy is not allowed." msgstr "禁止使用代理进入本服务器。" -#: ../../TShockAPI/Commands.cs:1778 +#: ../../TShockAPI/Commands.cs:1792 #, csharp-format msgid "Correct usage: {0}overridessc|{0}ossc " -msgstr "正确用法: {0}overridessc(覆盖SSC存档)|{0}ossc <玩家名>" +msgstr "正确用法: {0}overridessc(覆盖SSC存档)|{0}ossc " -#: ../../TShockAPI/Commands.cs:6641 +#: ../../TShockAPI/Commands.cs:6657 msgid "Corruption Palm" msgstr "腐化棕榈木" -#: ../../TShockAPI/TShock.cs:296 +#: ../../TShockAPI/TShock.cs:300 #, csharp-format msgid "Could not apply the given log path / log format, defaults will be used. Exception details:\n" "{0}" @@ -2688,110 +2708,110 @@ msgstr "无法使用给定的日志路径或格式,已恢复到默认值。异 msgid "Could not find a database library (probably Sqlite3.dll)" msgstr "找不到数据库的库(可能是Sqlite3.dll)" -#: ../../TShockAPI/Commands.cs:3268 +#: ../../TShockAPI/Commands.cs:3283 #, csharp-format msgid "Could not find a warp named {0} to remove." -msgstr "找不到名为{0}的warp传送点" +msgstr "找不到名为{0}的warp传送点。" -#: ../../TShockAPI/Commands.cs:5526 -#: ../../TShockAPI/Commands.cs:5610 -#: ../../TShockAPI/Commands.cs:5635 -#: ../../TShockAPI/Commands.cs:5691 -#: ../../TShockAPI/Commands.cs:5972 +#: ../../TShockAPI/Commands.cs:5542 +#: ../../TShockAPI/Commands.cs:5626 +#: ../../TShockAPI/Commands.cs:5651 +#: ../../TShockAPI/Commands.cs:5707 +#: ../../TShockAPI/Commands.cs:5988 #, csharp-format msgid "Could not find any player named \"{0}\"" msgstr "找不到任何名为\"{0}\"的玩家" -#: ../../TShockAPI/Commands.cs:5928 +#: ../../TShockAPI/Commands.cs:5944 #, csharp-format msgid "Could not find any player named \"{0}\"." msgstr "找不到任何名为\"{0}\"的玩家。" -#: ../../TShockAPI/Commands.cs:5471 +#: ../../TShockAPI/Commands.cs:5487 #, csharp-format msgid "Could not find any players named \"{0}\"" msgstr "找不到任何名为\"{0}\"的玩家" -#: ../../TShockAPI/Commands.cs:1934 +#: ../../TShockAPI/Commands.cs:1948 #, csharp-format msgid "Could not find group {0}" msgstr "找不到{0}组" -#: ../../TShockAPI/Commands.cs:1923 +#: ../../TShockAPI/Commands.cs:1937 #, csharp-format msgid "Could not find player {0}." msgstr "找不到玩家{0}" -#: ../../TShockAPI/Commands.cs:5044 +#: ../../TShockAPI/Commands.cs:5060 msgid "Could not find specified region" -msgstr "找不到指定区域。" +msgstr "找不到指定区域" -#: ../../TShockAPI/Commands.cs:3291 +#: ../../TShockAPI/Commands.cs:3306 msgid "Could not find specified warp." -msgstr "找不到指定warp点" +msgstr "找不到指定warp点。" -#: ../../TShockAPI/Commands.cs:4723 -#: ../../TShockAPI/Commands.cs:4730 -#: ../../TShockAPI/Commands.cs:4749 -#: ../../TShockAPI/Commands.cs:4788 -#: ../../TShockAPI/Commands.cs:4823 -#: ../../TShockAPI/Commands.cs:4858 -#: ../../TShockAPI/Commands.cs:4893 -#: ../../TShockAPI/Commands.cs:4937 +#: ../../TShockAPI/Commands.cs:4739 +#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4765 +#: ../../TShockAPI/Commands.cs:4804 +#: ../../TShockAPI/Commands.cs:4839 +#: ../../TShockAPI/Commands.cs:4874 +#: ../../TShockAPI/Commands.cs:4909 +#: ../../TShockAPI/Commands.cs:4953 #, csharp-format msgid "Could not find the region {0}." msgstr "无法找到领地{0}。" -#: ../../TShockAPI/Commands.cs:1581 +#: ../../TShockAPI/Commands.cs:1595 msgid "Could not find the target specified. Check that you have the correct spelling." -msgstr "找不到特定的目标,请检查您的拼写是否正确" +msgstr "找不到特定的目标,请检查你的拼写是否正确。" -#: ../../TShockAPI/Commands.cs:6200 +#: ../../TShockAPI/Commands.cs:6216 #, csharp-format msgid "Could not rename {0}!" msgstr "无法将{0}重命名!" -#: ../../TShockAPI/TShock.cs:1448 +#: ../../TShockAPI/TShock.cs:1466 msgid "Crash attempt via long chat packet." msgstr "试图通过超长聊天文本进行恶意攻击" -#: ../../TShockAPI/Commands.cs:595 +#: ../../TShockAPI/Commands.cs:600 msgid "Creates a reference tables for Terraria data types and the TShock permission system in the server folder." msgstr "在服务器目录下生成泰拉瑞亚和TShock权限的参考信息表。" -#: ../../TShockAPI/Commands.cs:5414 +#: ../../TShockAPI/Commands.cs:5430 msgid "Creates: with the password as part of the owner group." msgstr "这将会创建一个对应的用户名和密码且权限为服主的用户。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:53 msgid "CreativePowerHandler received permission check request for unknown creative power" -msgstr "CreativePowerHandler 收到了为未知创造力的权限检查请求。" +msgstr "CreativePowerHandler 收到了为未知旅行模式能力的权限检查请求" #: ../../TShockAPI/Handlers/NetModules/CreativeUnlocksHandler.cs:65 #, csharp-format msgid "CreativeUnlocksHandler received non-vanilla unlock request. Random field value: {0} but should be 0 from {1}" msgstr "CreativeUnlocksHandler 收到了来自玩家{1}的异常的研究解锁请求:不明字段值应为0但实际为{0}。" -#: ../../TShockAPI/Commands.cs:6636 +#: ../../TShockAPI/Commands.cs:6652 msgid "Crimson Palm" msgstr "猩红棕榈木" -#: ../../TShockAPI/Commands.cs:4434 +#: ../../TShockAPI/Commands.cs:4449 #, csharp-format msgid "Current maximum spawns: {0}." msgstr "当前最大生成量: {0}。" -#: ../../TShockAPI/Commands.cs:4474 +#: ../../TShockAPI/Commands.cs:4489 #, csharp-format msgid "Current spawn rate: {0}." msgstr "当前生成率: {0}。" -#: ../../TShockAPI/Bouncer.cs:2686 +#: ../../TShockAPI/Bouncer.cs:2750 #, csharp-format msgid "Death Exploit Attempt: Damage {0}" msgstr "试图通过死亡触发安全漏洞:伤害{0}" -#: ../../TShockAPI/Bouncer.cs:2704 +#: ../../TShockAPI/Bouncer.cs:2768 msgid "Death reason outside of normal bounds." msgstr "死亡原因过长。" @@ -2804,87 +2824,90 @@ msgstr "因为死亡而被封禁" msgid "Death results in a kick" msgstr "因为死亡而被踢出" -#: ../../TShockAPI/Commands.cs:5187 +#: ../../TShockAPI/Commands.cs:5203 msgid "define - Defines the region with the given name." -msgstr "define <名称> - 创建一个该名称的区域" +msgstr "define <名称> - 创建一个该名称的区域。" -#: ../../TShockAPI/Commands.cs:3442 +#: ../../TShockAPI/Commands.cs:3457 msgid "del - Deletes a group." -msgstr "del <组名> - 删除一个用户组" +msgstr "del <组名> - 删除一个用户组。" -#: ../../TShockAPI/Commands.cs:3973 +#: ../../TShockAPI/Commands.cs:3988 msgid "del - Deletes an item ban." -msgstr "del - 禁用指定物品" +msgstr "del - 解禁指定物品。" -#: ../../TShockAPI/Commands.cs:4151 +#: ../../TShockAPI/Commands.cs:4166 msgid "del - Deletes an projectile ban." msgstr "del <射弹ID> - 禁用指定射弹。" -#: ../../TShockAPI/Commands.cs:4327 +#: ../../TShockAPI/Commands.cs:4342 msgid "del - Deletes a tile ban." msgstr "add <图格ID> - 禁用指定图格。" -#: ../../TShockAPI/Commands.cs:5188 +#: ../../TShockAPI/Commands.cs:5204 msgid "delete - Deletes the given region." -msgstr "delete - 删除指定的区域" +msgstr "delete - 删除指定的区域。" -#: ../../TShockAPI/Commands.cs:4746 +#: ../../TShockAPI/Commands.cs:4762 #, csharp-format msgid "Deleted region \"{0}\"." msgstr "已删除领地'{0}'。" -#: ../../TShockAPI/Commands.cs:3443 +#: ../../TShockAPI/Commands.cs:3458 msgid "delperm - Removes permissions from a group." msgstr "delperm <组> <权限...> - 移除用户组指定的权限(不会影响继承的权限)" -#: ../../TShockAPI/Commands.cs:6627 +#: ../../TShockAPI/Commands.cs:6643 msgid "Desert Palm" msgstr "沙漠棕榈木" -#: ../../TShockAPI/Commands.cs:2111 +#: ../../TShockAPI/Commands.cs:2126 msgid "destroytokens - Destroys all current REST tokens." -msgstr "destroytokens - 删除当前所有REST令牌" +msgstr "destroytokens - 删除当前所有REST令牌。" -#: ../../TShockAPI/Bouncer.cs:480 -#: ../../TShockAPI/Bouncer.cs:488 -#: ../../TShockAPI/Bouncer.cs:496 +#: ../../TShockAPI/Bouncer.cs:487 +#: ../../TShockAPI/Bouncer.cs:495 +#: ../../TShockAPI/Bouncer.cs:503 +#: ../../TShockAPI/Bouncer.cs:511 +#: ../../TShockAPI/Bouncer.cs:1096 +#: ../../TShockAPI/Bouncer.cs:1104 msgid "Detected DOOM set to ON position." -msgstr "毁灭战士已启动" +msgstr "毁灭战士已启动。" -#: ../../TShockAPI/Commands.cs:6666 +#: ../../TShockAPI/Commands.cs:6682 msgid "Diamond Gemtree" msgstr "钻石宝石树" -#: ../../TShockAPI/Commands.cs:1881 +#: ../../TShockAPI/Commands.cs:1895 msgid "Disabled halloween mode." msgstr "已将万圣模式关闭。" -#: ../../TShockAPI/Commands.cs:1900 +#: ../../TShockAPI/Commands.cs:1914 msgid "Disabled xmas mode." msgstr "已将圣诞模式关闭。" -#: ../../TShockAPI/Bouncer.cs:543 +#: ../../TShockAPI/Bouncer.cs:558 #, csharp-format msgid "Disabled. You need to {0}login to load your saved data." -msgstr "您已被禁止行动,因为您需要{0}登录以载入已保存的数据。" +msgstr "你已被限制行动,因为你需要使用{0}login登录才能加载保存的数据。" -#: ../../TShockAPI/Bouncer.cs:539 +#: ../../TShockAPI/Bouncer.cs:554 msgid "Disabled. You went too far with banned armor." -msgstr "无法行动,因为你穿着被禁用的装备。" +msgstr "你已被限制行动,因为你穿着被禁用的装备。" -#: ../../TShockAPI/Bouncer.cs:535 +#: ../../TShockAPI/Bouncer.cs:550 msgid "Disabled. You went too far with hacked item stacks." -msgstr "您已被限制行动,因为您的物品数量已超过堆叠上限。" +msgstr "你已被限制行动,因为你的物品数量已超过堆叠上限。" -#: ../../TShockAPI/Commands.cs:3974 +#: ../../TShockAPI/Commands.cs:3989 msgid "disallow - Disallows a group from using an item." msgstr "disallow <物品> <用户组> - 取消用户组使用特定物品的豁免权。" -#: ../../TShockAPI/Commands.cs:4152 +#: ../../TShockAPI/Commands.cs:4167 msgid "disallow - Disallows a group from using a projectile." msgstr "disallow <射弹> <用户组> - 取消用户组使用特定射弹的豁免权。" -#: ../../TShockAPI/Commands.cs:4328 +#: ../../TShockAPI/Commands.cs:4343 msgid "disallow - Disallows a group from place a tile." msgstr "disallow <物块> <用户组> - 取消用户组使用特定物块的豁免权。" @@ -2893,598 +2916,608 @@ msgstr "disallow <物块> <用户组> - 取消用户组使用特定物块的豁 msgid "Download and install the given packages?" msgstr "是否下载并安装以上项目?" -#: ../../TShockAPI/Commands.cs:2648 +#: ../../TShockAPI/Commands.cs:2663 msgid "Duke Fishron" msgstr "猪龙鱼公爵" -#: ../../TShockAPI/Commands.cs:6617 +#: ../../TShockAPI/Commands.cs:6633 msgid "Ebonwood Tree" msgstr "乌木树" -#: ../../TShockAPI/Commands.cs:6658 +#: ../../TShockAPI/Commands.cs:6674 msgid "Emerald Gemtree" msgstr "绿宝石树" -#: ../../TShockAPI/Commands.cs:1879 +#: ../../TShockAPI/Commands.cs:1893 msgid "Enabled halloween mode." msgstr "已将万圣模式开启。" -#: ../../TShockAPI/Commands.cs:1898 +#: ../../TShockAPI/Commands.cs:1912 msgid "Enabled xmas mode." msgstr "开启了圣诞模式。" -#: ../../TShockAPI/Commands.cs:488 +#: ../../TShockAPI/Commands.cs:493 msgid "Enables starting and stopping various world events." msgstr "允许你开始或停止各种世界事件。" -#: ../../TShockAPI/DB/GroupManager.cs:665 +#: ../../TShockAPI/DB/GroupManager.cs:701 #, csharp-format msgid "Error on reloading groups: {0}" msgstr "在重新加载用户组时发生了错误:{0}" -#: ../../TShockAPI/Commands.cs:5119 +#: ../../TShockAPI/Commands.cs:5135 msgid "Error: both names are the same." msgstr "新名称和旧名称相同。" -#: ../../TShockAPI/Commands.cs:2777 +#: ../../TShockAPI/Commands.cs:2792 msgid "Everscream" msgstr "常绿尖叫怪" -#: ../../TShockAPI/Commands.cs:1407 +#: ../../TShockAPI/Commands.cs:1421 #, csharp-format msgid "Example usage: {0}" msgstr "示例用法: {0}" -#: ../../TShockAPI/Commands.cs:5463 +#: ../../TShockAPI/Commands.cs:5479 #, csharp-format msgid "Example usage: {0} \"{1}\" \"{2}\"" msgstr "示例用法: {0} \"{1}\"{2}\"" -#: ../../TShockAPI/Commands.cs:6369 +#: ../../TShockAPI/Commands.cs:6385 #, csharp-format msgid "Example usage: {0} \"{1}\" {2}" msgstr "示例用法: {0} \"{1}\" {2}" -#: ../../TShockAPI/Commands.cs:1399 -#: ../../TShockAPI/Commands.cs:1415 -#: ../../TShockAPI/Commands.cs:5330 -#: ../../TShockAPI/Commands.cs:5629 -#: ../../TShockAPI/Commands.cs:5919 -#: ../../TShockAPI/Commands.cs:6012 +#: ../../TShockAPI/Commands.cs:1413 +#: ../../TShockAPI/Commands.cs:1429 +#: ../../TShockAPI/Commands.cs:5346 +#: ../../TShockAPI/Commands.cs:5645 +#: ../../TShockAPI/Commands.cs:5935 +#: ../../TShockAPI/Commands.cs:6028 #, csharp-format msgid "Example usage: {0} {1}" msgstr "示例用法: {0} {1}" -#: ../../TShockAPI/Commands.cs:5520 -#: ../../TShockAPI/Commands.cs:5685 -#: ../../TShockAPI/Commands.cs:5816 -#: ../../TShockAPI/Commands.cs:6309 +#: ../../TShockAPI/Commands.cs:5536 +#: ../../TShockAPI/Commands.cs:5701 +#: ../../TShockAPI/Commands.cs:5832 +#: ../../TShockAPI/Commands.cs:6325 #, csharp-format msgid "Example usage: {0} {1} {2}" msgstr "示例用法: {0} {1} {2}" -#: ../../TShockAPI/Commands.cs:6419 +#: ../../TShockAPI/Commands.cs:6435 #, csharp-format msgid "Example usage: {0} {1} {2} {3}" msgstr "示例用法: {0} {1} {2} {3}" -#: ../../TShockAPI/Commands.cs:1391 +#: ../../TShockAPI/Commands.cs:1405 #, csharp-format msgid "Example usage: {0} {1} {2} {3} {4}" msgstr "示例用法: {0} {1} {2} {3} {4}" -#: ../../TShockAPI/Commands.cs:5601 +#: ../../TShockAPI/Commands.cs:5617 #, csharp-format msgid "Example usage: {0} <{1}> <{2}>" msgstr "示例用法: {0} <{1}> <{2}>" -#: ../../TShockAPI/Commands.cs:2002 +#: ../../TShockAPI/Commands.cs:2016 msgid "Example: /sudo /ban add particles 2d Hacking." -msgstr "例如: /sudo /ban add 迅猛龙 30d SB" +msgstr "例如: /sudo /ban add 迅猛龙 30d 玩舞萌玩的 。" -#: ../../TShockAPI/Commands.cs:3206 +#: ../../TShockAPI/Commands.cs:3221 #, csharp-format msgid "Examples: {0}warp add foobar, {0}warp hide foobar true, {0}warp foobar." -msgstr "举个例子: {0}warp add 鱼鱼真可爱, {0}warp hide 鱼鱼真可爱 true, {0}warp 鱼鱼真可爱" +msgstr "举个例子: {0}warp add 鱼鱼真可爱, {0}warp hide 鱼鱼真可爱 true, {0}warp 鱼鱼真可爱 。" -#: ../../TShockAPI/Commands.cs:328 +#: ../../TShockAPI/Commands.cs:333 msgid "Executes a command as the super admin." msgstr "以超级管理员的身份执行指令。" -#: ../../TShockAPI/GetDataHandlers.cs:4371 +#: ../../TShockAPI/GetDataHandlers.cs:4512 msgid "Exploit attempt detected!" msgstr "检测到恶意攻击" -#: ../../TShockAPI/Commands.cs:1494 +#: ../../TShockAPI/Commands.cs:1508 #, csharp-format msgid "Failed to add ban for identifier: {0}." msgstr "无法添加封禁(匹配代码{0})。" -#: ../../TShockAPI/Rest/RestManager.cs:671 +#: ../../TShockAPI/Rest/RestManager.cs:672 #, csharp-format msgid "Failed to add ban. {0}" msgstr "添加封禁记录失败。{0}" -#: ../../TShockAPI/DB/GroupManager.cs:324 +#: ../../TShockAPI/DB/GroupManager.cs:363 #, csharp-format msgid "Failed to add group {0}." msgstr "添加用户组{0}失败。" -#: ../../TShockAPI/DB/GroupManager.cs:512 -#: ../../TShockAPI/DB/GroupManager.cs:513 +#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:549 #, csharp-format msgid "Failed to delete group {0}." msgstr "删除用户组{0}失败。" -#: ../../TShockAPI/Commands.cs:2524 +#: ../../TShockAPI/Commands.cs:2539 msgid "Failed to find any users by that name on the list." msgstr "指定玩家没有完成今日渔夫任务。" -#: ../../TShockAPI/Commands.cs:1638 -#: ../../TShockAPI/Rest/RestManager.cs:698 +#: ../../TShockAPI/Commands.cs:1652 +#: ../../TShockAPI/Rest/RestManager.cs:699 msgid "Failed to remove ban." msgstr "移除封禁记录失败。" -#: ../../TShockAPI/DB/GroupManager.cs:480 +#: ../../TShockAPI/DB/GroupManager.cs:516 #, csharp-format msgid "Failed to rename group {0}." msgstr "重命名用户组{0}失败。" -#: ../../TShockAPI/Commands.cs:5145 +#: ../../TShockAPI/Commands.cs:5161 msgid "Failed to rename the region." msgstr "重命名领地名失败。" -#: ../../TShockAPI/Bouncer.cs:2685 +#: ../../TShockAPI/Bouncer.cs:2749 msgid "Failed to shade polygon normals." msgstr "多边形法线着色失败。" -#: ../../TShockAPI/DB/GroupManager.cs:369 +#: ../../TShockAPI/DB/GroupManager.cs:409 #, csharp-format msgid "Failed to update group \"{0}\"." msgstr "更新用户组{0}失败。" -#: ../../TShockAPI/Commands.cs:1864 +#: ../../TShockAPI/Commands.cs:1878 msgid "Failed to upload your character data to the server. Are you logged-in to an account?" -msgstr "无法将您的角色数据上传至服务器。您是否登陆了账户?" +msgstr "无法将你的角色数据上传至服务器。你是否登陆了账户?" #: ../../TShockAPI/Rest/Rest.cs:245 msgid "Fatal Startup Exception" -msgstr "致命的启动错误。" +msgstr "启动时发生致命错误" -#: ../../TShockAPI/Extensions/DbExt.cs:79 +#: ../../TShockAPI/Extensions/DbExt.cs:84 msgid "Fatal TShock initialization exception: failed to connect to MySQL database. See inner exception for details." msgstr "致命的TShock初始化错误:连接MySQL失败。查看内部异常以获取详细信息。" -#: ../../TShockAPI/DB/UserManager.cs:218 +#: ../../TShockAPI/DB/UserManager.cs:250 #, csharp-format msgid "FetchHashedPasswordAndGroup SQL returned an error: {0}" msgstr "FetchHashedPasswordAndGroup SQL 返回了一个错误: {0}" -#: ../../TShockAPI/Commands.cs:5683 +#: ../../TShockAPI/Commands.cs:5699 msgid "Firework Syntax" -msgstr "Firework的语法" +msgstr "指令Firework的用法" -#: ../../TShockAPI/Commands.cs:1944 +#: ../../TShockAPI/Commands.cs:1958 msgid "For example, 1d and 10h-30m+2m are both valid time strings, but 2 is not." msgstr "举个例子, 1d 和 10h-30m+2m 都是有效的时间, 但2不是。" -#: ../../TShockAPI/Commands.cs:1374 +#: ../../TShockAPI/Commands.cs:1388 #, csharp-format msgid "For more info, use {0} {1} or {2} {3}" -msgstr "如果你需要了解更多信息,请使用{0}{1}或者{2}{3}" +msgstr "使用{2} {3}查看具体示例,或{0} {1}查看具体子指令的用法。" -#: ../../TShockAPI/Commands.cs:514 +#: ../../TShockAPI/Commands.cs:519 msgid "Forces all liquids to update immediately." msgstr "立即强制更新所有液体。" -#: ../../TShockAPI/Commands.cs:6278 +#: ../../TShockAPI/Commands.cs:6294 #, csharp-format msgid "Gave {0} {1} {2}." msgid_plural "Gave {0} {1} {2}s." -msgstr[0] "给与{0}{1}{2}" +msgstr[0] "已将{1}个{2}给予{0}。" -#: ../../TShockAPI/Commands.cs:6140 +#: ../../TShockAPI/Commands.cs:6156 #, csharp-format msgid "Gave {0} {1}." msgid_plural "Gave {0} {1}s." -msgstr[0] "给与{0}{1}" +msgstr[0] "已将{0}个{1}给予你。" -#: ../../TShockAPI/GetDataHandlers.cs:3796 +#: ../../TShockAPI/GetDataHandlers.cs:3935 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc catch zero {0}" msgstr "GetDataHandlers / HandleCatchNpc 捕获量为零 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3804 +#: ../../TShockAPI/GetDataHandlers.cs:3943 #, csharp-format msgid "GetDataHandlers / HandleCatchNpc rejected catch npc {0}" msgstr "GetDataHandlers / HandleCatchNpc 拒绝了捕获npc {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3119 +#: ../../TShockAPI/GetDataHandlers.cs:3194 #, csharp-format msgid "GetDataHandlers / HandleChestActive rejected build permission and region check {0}" msgstr "GetDataHandlers / HandleChestActive 拒绝了建筑权限和区域检查 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3094 +#: ../../TShockAPI/GetDataHandlers.cs:3169 #, csharp-format msgid "GetDataHandlers / HandleChestItem rejected max stacks {0}" msgstr "GetDataHandlers / HandleChestitems 拒绝了最大堆栈 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2844 +#: ../../TShockAPI/GetDataHandlers.cs:2910 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected door gap check {0}" msgstr "GetDataHandlers / HandleDoorUse 拒绝了门间间隙检查 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2829 +#: ../../TShockAPI/GetDataHandlers.cs:2895 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected out of range door {0}" msgstr "GetDataHandlers / HandleDoorUse 拒绝了超出范围的门 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2835 +#: ../../TShockAPI/GetDataHandlers.cs:2901 #, csharp-format msgid "GetDataHandlers / HandleDoorUse rejected type 0 5 check {0}" msgstr "GetDataHandlers / HandleDoorUse 拒绝了类型为0 5 的检查 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2669 +#: ../../TShockAPI/GetDataHandlers.cs:2707 msgid "GetDataHandlers / HandleGetSection rejected reserve slot" msgstr "GetDataHandlers / HandleGetSection 拒绝了预留位" -#: ../../TShockAPI/GetDataHandlers.cs:4042 +#: ../../TShockAPI/GetDataHandlers.cs:4182 #, csharp-format msgid "GetDataHandlers / HandleKillPortal rejected owner mismatch check {0}" msgstr "GetDataHandlers / KillPortal 拒绝所有者不匹配的检查 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:2989 +#: ../../TShockAPI/GetDataHandlers.cs:2977 +#, csharp-format +msgid "GetDataHandlers / HandleNpcItemStrike surprise packet! Someone tell the TShock team! {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3064 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected Cultist summon from {0}" msgstr "GetDataHandlers / HandleNpcStrike(NPC伤害检测)因没有召唤拜月教徒的权限而阻止了{0}伤害教徒。" -#: ../../TShockAPI/GetDataHandlers.cs:2972 +#: ../../TShockAPI/GetDataHandlers.cs:3047 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected EoL summon from {0}" msgstr "GetDataHandlers / HandleNpcStrike(NPC伤害检测)因没有召唤光之女皇的权限而阻止了{0}伤害蝴蝶。" -#: ../../TShockAPI/GetDataHandlers.cs:2962 +#: ../../TShockAPI/GetDataHandlers.cs:3037 #, csharp-format msgid "GetDataHandlers / HandleNpcStrike rejected npc strike {0}" msgstr "GetDataHandlers / HandleNpcStrike(NPC伤害检测)因保护城镇NPC而阻止了{0}造成的伤害。" -#: ../../TShockAPI/GetDataHandlers.cs:3250 +#: ../../TShockAPI/GetDataHandlers.cs:3509 +#, csharp-format +msgid "GetDataHandlers / HandleNpcStrike rejected Skeletron summon from {0}" +msgstr "GetDataHandlers / HandleNpcStrike(NPC伤害检测)因没有召唤骷髅王的权限而阻止了{0}伤害地牢老人。" + +#: ../../TShockAPI/GetDataHandlers.cs:3329 #, csharp-format msgid "GetDataHandlers / HandleNpcTalk rejected npc talk {0}" msgstr "GetDataHandlers / HandleNpcTalk 拒绝了 NPC 的对话 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4086 +#: ../../TShockAPI/GetDataHandlers.cs:4226 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected not thinking with portals {0}" msgstr "GetDataHandlers / HandleNpcTeleportPortal 拒绝了意料之外的门户 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4079 +#: ../../TShockAPI/GetDataHandlers.cs:4219 #, csharp-format msgid "GetDataHandlers / HandleNpcTeleportPortal rejected null check {0}" msgstr "GetDataHandlers / HandleNpcTeleportPortal 拒绝空检查 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3920 +#: ../../TShockAPI/GetDataHandlers.cs:4059 #, csharp-format msgid "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted surprise packet! Someone tell the TShock team! {0}" msgstr "GetDataHandlers / HandleNumberOfAnglerQuestsCompleted(渔夫任务进度检测)收到了来自{0}的不明数据包,请向TShock报告。" -#: ../../TShockAPI/GetDataHandlers.cs:4144 +#: ../../TShockAPI/GetDataHandlers.cs:4284 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected permissions {0}" msgstr "GetDataHandlers / HandleOldOnesArmy 拒绝权限 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:4138 +#: ../../TShockAPI/GetDataHandlers.cs:4278 #, csharp-format msgid "GetDataHandlers / HandleOldOnesArmy rejected throttled {0}" msgstr "GetDataHandlers / HandleOldOnesArmy 拒绝了节流 {0}" -#: ../../TShockAPI/GetDataHandlers.cs:3622 +#: ../../TShockAPI/GetDataHandlers.cs:3760 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected range check {0}" msgstr "GetDataHandlers / HandlePaintTile(物块涂料检测)因超出范围而阻止了{0}涂物块。" -#: ../../TShockAPI/GetDataHandlers.cs:3640 +#: ../../TShockAPI/GetDataHandlers.cs:3778 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected select consistency {0}" msgstr "GetDataHandlers / HandlePaintTile(物块涂料检测)因工具不匹配而阻止了{0}涂物块。" -#: ../../TShockAPI/GetDataHandlers.cs:3649 +#: ../../TShockAPI/GetDataHandlers.cs:3787 #, csharp-format msgid "GetDataHandlers / HandlePaintTile rejected throttle/permission/range check {0}" msgstr "GetDataHandlers / HandlePaintTile(物块涂料检测)因限流、权限或超出范围而阻止了{0}涂物块。" -#: ../../TShockAPI/GetDataHandlers.cs:3669 +#: ../../TShockAPI/GetDataHandlers.cs:3808 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected range check {0}" msgstr "GetDataHandlers / HandlePaintWall(墙壁涂料检测)因超出范围而阻止了{0}涂墙。" -#: ../../TShockAPI/GetDataHandlers.cs:3687 +#: ../../TShockAPI/GetDataHandlers.cs:3826 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected selector consistency {0}" msgstr "GetDataHandlers / HandlePaintWall(墙壁涂料检测)因工具不匹配而阻止了{0}涂墙。" -#: ../../TShockAPI/GetDataHandlers.cs:3696 +#: ../../TShockAPI/GetDataHandlers.cs:3835 #, csharp-format msgid "GetDataHandlers / HandlePaintWall rejected throttle/permission/range {0}" msgstr "GetDataHandlers / HandlePaintWall(墙壁涂料检测)因限流、权限或超出范围而阻止了{0}涂墙。" -#: ../../TShockAPI/GetDataHandlers.cs:3411 +#: ../../TShockAPI/GetDataHandlers.cs:3491 #, csharp-format msgid "GetDataHandlers / HandlePlayerBuffList handled event and sent data {0}" msgstr "GetDataHandlers / HandlePlayerBuffList(玩家Buff列表检测)正在处理{0}的状态。" -#: ../../TShockAPI/GetDataHandlers.cs:3396 +#: ../../TShockAPI/GetDataHandlers.cs:3476 #, csharp-format -msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state 2 {0} {1}" +msgid "GetDataHandlers / HandlePlayerBuffList zeroed player buff due to below state awaiting player information {0} {1}" msgstr "GetDataHandlers / HandlePlayerBuffList(玩家Buff列表检测)因玩家未完整进入服务器而清除了{0}的{1}状态。" -#: ../../TShockAPI/GetDataHandlers.cs:2777 +#: ../../TShockAPI/GetDataHandlers.cs:2843 #, csharp-format msgid "GetDataHandlers / HandlePlayerHp rejected over max hp {0}" msgstr "GetDataHandlers / HandlePlayerMana(玩家生命检测)因生命超出上限而阻止{0}同步生命值。" -#: ../../TShockAPI/GetDataHandlers.cs:2522 +#: ../../TShockAPI/GetDataHandlers.cs:2558 msgid "GetDataHandlers / HandlePlayerInfo rejected hardcore required" -msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅硬核而阻止了玩家进入服务器。" +msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅硬核而阻止了玩家进入服务器" -#: ../../TShockAPI/GetDataHandlers.cs:2516 +#: ../../TShockAPI/GetDataHandlers.cs:2552 msgid "GetDataHandlers / HandlePlayerInfo rejected mediumcore required" -msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅中核或以上而阻止了玩家进入服务器。" +msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅中核或以上而阻止了玩家进入服务器" -#: ../../TShockAPI/GetDataHandlers.cs:2457 +#: ../../TShockAPI/GetDataHandlers.cs:2493 msgid "GetDataHandlers / HandlePlayerInfo rejected name length 0" -msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因玩家名为空而阻止了玩家进入服务器。" +msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因玩家名为空而阻止了玩家进入服务器" -#: ../../TShockAPI/GetDataHandlers.cs:2450 +#: ../../TShockAPI/GetDataHandlers.cs:2486 #, csharp-format msgid "GetDataHandlers / HandlePlayerInfo rejected plugin phase {0}" msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因插件限制而阻止了{0}进入服务器。" -#: ../../TShockAPI/GetDataHandlers.cs:2510 +#: ../../TShockAPI/GetDataHandlers.cs:2546 msgid "GetDataHandlers / HandlePlayerInfo rejected softcore required" -msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅软核而阻止了玩家进入服务器。" +msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因限制仅软核而阻止了玩家进入服务器" -#: ../../TShockAPI/GetDataHandlers.cs:4210 -#: ../../TShockAPI/GetDataHandlers.cs:4216 +#: ../../TShockAPI/GetDataHandlers.cs:4351 +#: ../../TShockAPI/GetDataHandlers.cs:4357 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 kicked with difficulty {0} {1}" msgstr "GetDataHandlers / HandlePlayerKillMeV2(玩家死亡检测)因中核或硬核模式死亡而踢出了{0}(难度{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:4225 +#: ../../TShockAPI/GetDataHandlers.cs:4366 #, csharp-format msgid "GetDataHandlers / HandlePlayerKillMeV2 ssc delete {0} {1}" msgstr "GetDataHandlers / HandlePlayerKillMeV2(玩家死亡检测)因硬核模式死亡而删除了{0}的存档。" -#: ../../TShockAPI/GetDataHandlers.cs:3289 +#: ../../TShockAPI/GetDataHandlers.cs:3368 #, csharp-format msgid "GetDataHandlers / HandlePlayerMana rejected max mana {0} {1}/{2}" msgstr "GetDataHandlers / HandlePlayerMana(玩家魔力检测)因魔力{1}超出上限{2}而阻止{0}同步魔力值。" -#: ../../TShockAPI/GetDataHandlers.cs:2554 +#: ../../TShockAPI/GetDataHandlers.cs:2590 msgid "GetDataHandlers / HandlePlayerSlot rejected ignore ssc packets" msgstr "GetDataHandlers / HandlePlayerSlot(玩家物品检测)因忽略服务器端存档而阻止了数据更新。" -#: ../../TShockAPI/GetDataHandlers.cs:3316 +#: ../../TShockAPI/GetDataHandlers.cs:3396 #, csharp-format msgid "GetDataHandlers / HandlePlayerTeam rejected team fastswitch {0}" msgstr "GetDataHandlers / HandlePlayerTeam(切换队伍检测)因切换速度过快而阻止了{0}切换队伍。" -#: ../../TShockAPI/GetDataHandlers.cs:2757 +#: ../../TShockAPI/GetDataHandlers.cs:2823 #, csharp-format msgid "GetDataHandlers / HandlePlayerUpdate home position delta {0}" msgstr "GetDataHandlers / HandlePlayerUpdate(玩家更新检测)正在处理{0}的回城数据。" -#: ../../TShockAPI/GetDataHandlers.cs:3144 +#: ../../TShockAPI/GetDataHandlers.cs:3219 msgid "GetDataHandlers / HandlePlayerZone rejected null check" msgstr "GetDataHandlers / HandlePlayerZone(玩家区域环境检测)因玩家或数据不存在而阻止了数据更新。" -#: ../../TShockAPI/GetDataHandlers.cs:3025 +#: ../../TShockAPI/GetDataHandlers.cs:3100 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill permitted skeletron prime exemption {0}" msgstr "GetDataHandlers / HandleProjectileKill(射弹破坏检测)因机械骷髅王例外情况而允许了{0}的行为。" -#: ../../TShockAPI/GetDataHandlers.cs:3029 +#: ../../TShockAPI/GetDataHandlers.cs:3104 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected banned projectile {0}" msgstr "GetDataHandlers / HandleProjectileKill(射弹破坏检测)因对应射弹被封禁而阻止了{0}的行为。" -#: ../../TShockAPI/GetDataHandlers.cs:3014 +#: ../../TShockAPI/GetDataHandlers.cs:3089 #, csharp-format msgid "GetDataHandlers / HandleProjectileKill rejected tombstone {0}" msgstr "GetDataHandlers / HandleProjectileKill(射弹破坏检测)因屏蔽墓碑而阻止了{0}的墓碑射弹。" -#: ../../TShockAPI/GetDataHandlers.cs:3354 +#: ../../TShockAPI/GetDataHandlers.cs:3434 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign on build permission {0}" msgstr "GetDataHandlers / HandleSign(标牌检测)因没有建筑的权限而阻止了{0}操作标牌。" -#: ../../TShockAPI/GetDataHandlers.cs:3361 +#: ../../TShockAPI/GetDataHandlers.cs:3441 #, csharp-format msgid "GetDataHandlers / HandleSign rejected sign range check {0}" msgstr "GetDataHandlers / HandleSign(标牌检测)因超出范围而阻止了{0}操作标牌。" -#: ../../TShockAPI/GetDataHandlers.cs:3334 +#: ../../TShockAPI/GetDataHandlers.cs:3414 #, csharp-format msgid "GetDataHandlers / HandleSignRead rejected out of bounds {0}" msgstr "GetDataHandlers / HandleSignRead(标牌内容获取检测)因目标范围超出地图而阻止了{0}读取标牌。" -#: ../../TShockAPI/GetDataHandlers.cs:2700 +#: ../../TShockAPI/GetDataHandlers.cs:2786 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport 'vanilla spawn' {0}" -msgstr "GetDataHandlers / HandleSpawn(回城检测)正在将{0}传送回城(常规复活点)。" - -#: ../../TShockAPI/GetDataHandlers.cs:2711 -#, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 1 {0}" -msgstr "GetDataHandlers / HandleSpawn(回城检测)正在将{0}传送回城(方案1)。" +msgid "GetDataHandlers / HandleSpawn force ssc teleport for {0} at ({1},{2})" +msgstr "GetDataHandlers / HandleSpawn(回城检测)正在将{0}传送回位于{1}, {2}的复活点。" #: ../../TShockAPI/GetDataHandlers.cs:2720 #, csharp-format -msgid "GetDataHandlers / HandleSpawn force teleport phase 2 {0}" -msgstr "GetDataHandlers / HandleSpawn(回城检测)正在将{0}传送回城(方案2)。" - -#: ../../TShockAPI/GetDataHandlers.cs:2682 -#, csharp-format msgid "GetDataHandlers / HandleSpawn rejected dead player spawn request {0}" msgstr "GetDataHandlers / HandleSpawn(回城检测)因玩家已死亡而阻止了{0}回城。" -#: ../../TShockAPI/GetDataHandlers.cs:3517 +#: ../../TShockAPI/GetDataHandlers.cs:3642 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected boss {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss(召唤Boss与宠物检测)因没有召唤Boss的权限而阻止了{0}召唤{1}。" -#: ../../TShockAPI/GetDataHandlers.cs:3507 +#: ../../TShockAPI/GetDataHandlers.cs:3632 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected bouner throttled {0}" msgstr "GetDataHandlers / HandleSpawnBoss(召唤Boss与宠物检测)因限流而阻止了{0}的行为。" -#: ../../TShockAPI/GetDataHandlers.cs:3524 +#: ../../TShockAPI/GetDataHandlers.cs:3649 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected invasion {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss(召唤Boss与宠物检测)因没有召唤入侵的权限而阻止了{0}召唤{1}。" -#: ../../TShockAPI/GetDataHandlers.cs:3531 +#: ../../TShockAPI/GetDataHandlers.cs:3656 #, csharp-format msgid "GetDataHandlers / HandleSpawnBoss rejected pet {0} {1}" msgstr "GetDataHandlers / HandleSpawnBoss(召唤Boss与宠物检测)因没有召唤宠物的权限而阻止了{0}召唤{1}。" -#: ../../TShockAPI/GetDataHandlers.cs:3442 +#: ../../TShockAPI/GetDataHandlers.cs:3663 +#, csharp-format +msgid "GetDataHandlers / HandleSpawnBoss rejected upgrade {0} {1}" +msgstr "GetDataHandlers / HandleSpawnBoss(召唤Boss与宠物检测)因没有使用永久性强化物品的权限而阻止了{0}使用物品{1}。" + +#: ../../TShockAPI/GetDataHandlers.cs:3560 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission (ForceTime) {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3554 +#, csharp-format +msgid "GetDataHandlers / HandleSpecial rejected enchanted moondial permission {0}" +msgstr "" + +#: ../../TShockAPI/GetDataHandlers.cs:3530 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission (ForceTime) {0}" msgstr "GetDataHandlers / HandleSpecial(特殊数据检测)因时间被锁定而阻止了{0}使用附魔日晷。" -#: ../../TShockAPI/GetDataHandlers.cs:3436 +#: ../../TShockAPI/GetDataHandlers.cs:3524 #, csharp-format msgid "GetDataHandlers / HandleSpecial rejected enchanted sundial permission {0}" msgstr "GetDataHandlers / HandleSpecial(特殊数据检测)因没有使用附魔日晷的权限而阻止了{0}的行为。" -#: ../../TShockAPI/GetDataHandlers.cs:3426 -#, csharp-format -msgid "GetDataHandlers / HandleSpecial rejected type 1 for {0}" -msgstr "GetDataHandlers / HandleSpecial(特殊数据检测)因禁止地牢守卫而阻止了{0}的行为。" - -#: ../../TShockAPI/GetDataHandlers.cs:4005 +#: ../../TShockAPI/GetDataHandlers.cs:4145 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected expert/master mode check {0}" msgstr "GetDataHandlers / HandleSyncExtraValue(NPC附加信息检测)因地图难度错误而阻止了{0}发送更新数据。" -#: ../../TShockAPI/GetDataHandlers.cs:3999 +#: ../../TShockAPI/GetDataHandlers.cs:4139 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected extents check {0}" msgstr "GetDataHandlers / HandleSyncExtraValue(NPC附加信息检测)因目标NPC位置异常而阻止了{0}发送更新数据。" -#: ../../TShockAPI/GetDataHandlers.cs:4011 +#: ../../TShockAPI/GetDataHandlers.cs:4151 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc id out of bounds check - NPC ID: {0}" msgstr "GetDataHandlers / HandleSyncExtraValue(NPC附加信息检测)因目标NPC {0}不存在(越界)而阻止了更新。" -#: ../../TShockAPI/GetDataHandlers.cs:4018 +#: ../../TShockAPI/GetDataHandlers.cs:4158 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected npc is null - NPC ID: {0}" msgstr "GetDataHandlers / HandleSyncExtraValue(NPC附加信息检测)因目标NPC {0}不存在而阻止了更新。" -#: ../../TShockAPI/GetDataHandlers.cs:4025 +#: ../../TShockAPI/GetDataHandlers.cs:4165 #, csharp-format msgid "GetDataHandlers / HandleSyncExtraValue rejected range check {0},{1} vs {2},{3} which is {4}" msgstr "GetDataHandlers / HandleSyncExtraValue(NPC附加信息检测)因{0},{1}到{2},{3}的距离{4}过远而阻止了数据同步。" -#: ../../TShockAPI/GetDataHandlers.cs:4397 +#: ../../TShockAPI/GetDataHandlers.cs:4538 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync {0}" msgstr "GetDataHandlers / HandleSyncLoadout 阻止了{0}切换装备栏" -#: ../../TShockAPI/GetDataHandlers.cs:4388 +#: ../../TShockAPI/GetDataHandlers.cs:4529 #, csharp-format msgid "GetDataHandlers / HandleSyncLoadout rejected loadout index sync out of bounds {0}" msgstr "GetDataHandlers / HandleSyncLoadout 阻止了{0}切换越界的装备栏" -#: ../../TShockAPI/GetDataHandlers.cs:3753 +#: ../../TShockAPI/GetDataHandlers.cs:3892 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected npc teleport {0} {1}" msgstr "GetDataHandlers / HandleTeleport(传送检测)因目标NPC不存在而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:3762 +#: ../../TShockAPI/GetDataHandlers.cs:3901 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p extents {0} {1}" msgstr "GetDataHandlers / HandleTeleport(传送检测)因目标玩家不存在而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:3768 +#: ../../TShockAPI/GetDataHandlers.cs:3907 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected p2p wormhole permission {0} {1}" msgstr "GetDataHandlers / HandleTeleport(传送检测)因没有使用虫洞药水的权限而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:3744 +#: ../../TShockAPI/GetDataHandlers.cs:3883 #, csharp-format msgid "GetDataHandlers / HandleTeleport rejected rod type {0} {1}" msgstr "GetDataHandlers / HandleTeleport(传送检测)因没有使用传送法杖的权限而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:3842 -#: ../../TShockAPI/GetDataHandlers.cs:3858 -#: ../../TShockAPI/GetDataHandlers.cs:3881 -#: ../../TShockAPI/GetDataHandlers.cs:3901 +#: ../../TShockAPI/GetDataHandlers.cs:3981 +#: ../../TShockAPI/GetDataHandlers.cs:3997 +#: ../../TShockAPI/GetDataHandlers.cs:4020 +#: ../../TShockAPI/GetDataHandlers.cs:4040 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected not holding the correct item {0} {1}" msgstr "GetDataHandlers / HandleTeleportationPotion(传送检测)因持有物品与传送种类不对应而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:3832 +#: ../../TShockAPI/GetDataHandlers.cs:3971 #, csharp-format msgid "GetDataHandlers / HandleTeleportationPotion rejected permissions {0} {1}" msgstr "GetDataHandlers / HandleTeleportationPotion(传送检测)因没有对应权限而阻止了{0}传送(种类{1})。" -#: ../../TShockAPI/GetDataHandlers.cs:4126 +#: ../../TShockAPI/GetDataHandlers.cs:4266 #, csharp-format msgid "GetDataHandlers / HandleToggleParty rejected no party {0}" msgstr "GetDataHandlers / HandleToggleParty(派对开关检测)因没有开关派对的权限而阻止了{0}切换开关派对。" -#: ../../TShockAPI/GetDataHandlers.cs:3059 +#: ../../TShockAPI/GetDataHandlers.cs:3134 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected fastswitch {0}" msgstr "GetDataHandlers / HandleTogglePvp(PVP开关检测)因切换速度过快而阻止了{0}改变PVP状态。" -#: ../../TShockAPI/GetDataHandlers.cs:3052 +#: ../../TShockAPI/GetDataHandlers.cs:3127 #, csharp-format msgid "GetDataHandlers / HandleTogglePvp rejected index mismatch {0}" msgstr "GetDataHandlers / HandleTogglePvp(PVP开关检测)因检测到伪造玩家序号而阻止了{0}改变PVP状态。" -#: ../../TShockAPI/GetDataHandlers.cs:2735 +#: ../../TShockAPI/GetDataHandlers.cs:2801 msgid "GetDataHandlers / OnPlayerUpdate rejected from null player." msgstr "GetDataHandlers / OnPlayerUpdate(玩家更新检测)因目标玩家不存在而阻止了更新。" -#: ../../TShockAPI/GetDataHandlers.cs:2464 +#: ../../TShockAPI/GetDataHandlers.cs:2500 msgid "GetDataHandlers / rejecting player for name prefix starting with tsi: or tsn:." msgstr "GetDataHandlers / HandlePlayerInfo(玩家信息检测)因名称以tsi:或tsn:开头而阻止了玩家进入服务器。" -#: ../../TShockAPI/GetDataHandlers.cs:3492 +#: ../../TShockAPI/GetDataHandlers.cs:3616 #, csharp-format msgid "GetDataHandlers / UpdateNPCHome rejected no permission {0}" msgstr "GetDataHandlers / UpdateNPCHome(NPC住所检测)因没有权限而阻止了{0}设置NPC住所。" -#: ../../TShockAPI/DB/UserManager.cs:291 +#: ../../TShockAPI/DB/UserManager.cs:321 #, csharp-format msgid "GetUser SQL returned an error {0}" msgstr "GetUser方法在执行SQL语句时返回了一个错误{0}" -#: ../../TShockAPI/Commands.cs:6417 +#: ../../TShockAPI/Commands.cs:6433 msgid "Give Buff Syntax and Example" -msgstr "给与buff的格式和示例" +msgstr "给予buff的用法和示例" -#: ../../TShockAPI/Commands.cs:541 +#: ../../TShockAPI/Commands.cs:546 msgid "Gives another player a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "给另一位玩家添加一段时间的Buff或Debuff。如果时间为-1会持续约415天。" -#: ../../TShockAPI/Commands.cs:382 +#: ../../TShockAPI/Commands.cs:387 msgid "Gives another player an item." msgstr "给另一位玩家一件物品。" -#: ../../TShockAPI/Commands.cs:533 +#: ../../TShockAPI/Commands.cs:538 msgid "Gives yourself a buff or debuff for an amount of time. Putting -1 for time will set it to 415 days." msgstr "给自己添加一段时间的Buff或Debuff。如果时间为-1会持续约415天。" -#: ../../TShockAPI/Commands.cs:387 +#: ../../TShockAPI/Commands.cs:392 msgid "Gives yourself an item." msgstr "给自己一件物品。" -#: ../../TShockAPI/Commands.cs:6690 +#: ../../TShockAPI/Commands.cs:6706 msgid "Glowing Mushroom Tree" msgstr "种植发光蘑菇树" @@ -3493,163 +3526,163 @@ msgstr "种植发光蘑菇树" msgid "GolfPacketHandler: Player did not have create a golf club projectile the last 5 seconds! - From {0}" msgstr "GolfPacketHandler钩子: 玩家没有在过去5s内创建高尔夫类弹幕!从{0}" -#: ../../TShockAPI/Commands.cs:3506 +#: ../../TShockAPI/Commands.cs:3521 #, csharp-format msgid "Group \"{0}\" has no parent." -msgstr "组 \"{0}\" 没有父组" +msgstr "组 \"{0}\" 没有父组。" -#: ../../TShockAPI/Commands.cs:3596 +#: ../../TShockAPI/Commands.cs:3611 #, csharp-format msgid "Group \"{0}\" has no prefix." -msgstr "组 \"{0}\" 没有前缀" +msgstr "组 \"{0}\" 没有前缀。" -#: ../../TShockAPI/Commands.cs:3551 +#: ../../TShockAPI/Commands.cs:3566 #, csharp-format msgid "Group \"{0}\" has no suffix." -msgstr "组 \"{0}\" 没有后缀" +msgstr "用户组 \"{0}\" 没有后缀。" -#: ../../TShockAPI/DB/GroupManager.cs:646 +#: ../../TShockAPI/DB/GroupManager.cs:682 #, csharp-format msgid "Group \"{0}\" is referencing parent group {1} which is already part of the parent chain. Parent reference removed." msgstr "用户组{1}为{0}的父组,但也同时是它的子组。已删除此父子关系。" -#: ../../TShockAPI/DB/GroupManager.cs:578 +#: ../../TShockAPI/DB/GroupManager.cs:614 msgid "Group \"superadmin\" is defined in the database even though it's a reserved group name." msgstr "数据库中存在superadmin组,但它已被预留,不应存在于数据库中。" -#: ../../TShockAPI/DB/GroupManager.cs:708 +#: ../../TShockAPI/DB/GroupManager.cs:744 #, csharp-format msgid "Group {0} already exists" msgstr "用户组 {0} 已存在" -#: ../../TShockAPI/Rest/RestManager.cs:1158 +#: ../../TShockAPI/Rest/RestManager.cs:1159 #, csharp-format msgid "Group {0} created successfully" msgstr "用户组 {0} 创建成功" -#: ../../TShockAPI/Rest/RestManager.cs:1133 +#: ../../TShockAPI/Rest/RestManager.cs:1134 #, csharp-format msgid "Group {0} deleted successfully" msgstr "用户组 {0} 删除成功" -#: ../../TShockAPI/DB/UserManager.cs:638 -#: ../../TShockAPI/DB/GroupManager.cs:725 +#: ../../TShockAPI/DB/UserManager.cs:679 +#: ../../TShockAPI/DB/GroupManager.cs:761 #, csharp-format msgid "Group {0} does not exist" msgstr "用户组 {0} 不存在" -#: ../../TShockAPI/Commands.cs:1110 +#: ../../TShockAPI/Commands.cs:1120 #, csharp-format msgid "Group {0} does not exist." -msgstr "组{0}不存在!" +msgstr "组{0}不存在。" -#: ../../TShockAPI/Rest/RestManager.cs:1354 +#: ../../TShockAPI/Rest/RestManager.cs:1355 #, csharp-format msgid "Group {0} doesn't exist" msgstr "用户组 {0} 不存在" -#: ../../TShockAPI/DB/GroupManager.cs:495 -#: ../../TShockAPI/DB/GroupManager.cs:525 -#: ../../TShockAPI/DB/GroupManager.cs:548 +#: ../../TShockAPI/DB/GroupManager.cs:531 +#: ../../TShockAPI/DB/GroupManager.cs:561 +#: ../../TShockAPI/DB/GroupManager.cs:584 #, csharp-format msgid "Group {0} doesn't exist." msgstr "用户组 {0} 不存在。" -#: ../../TShockAPI/DB/GroupManager.cs:508 +#: ../../TShockAPI/DB/GroupManager.cs:544 #, csharp-format msgid "Group {0} has been deleted successfully." msgstr "用户组 {0} 已被成功删除。" -#: ../../TShockAPI/DB/GroupManager.cs:463 +#: ../../TShockAPI/DB/GroupManager.cs:501 #, csharp-format msgid "Group {0} has been renamed to {1}." msgstr "用户组 {0} 已重命名成 {1}。" -#: ../../TShockAPI/DB/GroupManager.cs:631 +#: ../../TShockAPI/DB/GroupManager.cs:667 #, csharp-format msgid "Group {0} is referencing a non existent parent group {1}, parent reference was removed." msgstr "用户组{0}的父组为{1},但该用户组不存在。已删除此父子关系。" -#: ../../TShockAPI/DB/GroupManager.cs:637 +#: ../../TShockAPI/DB/GroupManager.cs:673 #, csharp-format msgid "Group {0} is referencing itself as parent group; parent reference was removed." msgstr "用户组{0}的父组为它自己。已删除此父子关系。" -#: ../../TShockAPI/Commands.cs:4862 -#: ../../TShockAPI/Commands.cs:4897 +#: ../../TShockAPI/Commands.cs:4878 +#: ../../TShockAPI/Commands.cs:4913 #, csharp-format msgid "Group {0} not found." -msgstr "组 {0} 没有找到。" +msgstr "用户组 {0} 没有找到。" -#: ../../TShockAPI/Rest/RestManager.cs:1187 +#: ../../TShockAPI/Rest/RestManager.cs:1188 #, csharp-format msgid "Group {0} updated successfully" msgstr "用户组 {0} 更新成功" -#: ../../TShockAPI/Commands.cs:3380 +#: ../../TShockAPI/Commands.cs:3395 #, csharp-format msgid "Group {0} was added successfully." -msgstr "已成功添加组{0}" +msgstr "已成功添加用户组{0}" -#: ../../TShockAPI/Commands.cs:3454 +#: ../../TShockAPI/Commands.cs:3469 msgid "Group Sub-Commands ({{0}}/{{1}}):" msgstr "Group子命令 ({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3745 +#: ../../TShockAPI/Commands.cs:3760 msgid "Groups ({{0}}/{{1}}):" msgstr "用户组({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:476 +#: ../../TShockAPI/Commands.cs:481 msgid "Grows plants at your location." msgstr "在你的位置种下植物。" -#: ../../TShockAPI/Commands.cs:6631 +#: ../../TShockAPI/Commands.cs:6647 msgid "Hallow Palm" msgstr "神圣棕榈木" -#: ../../TShockAPI/GetDataHandlers.cs:4372 +#: ../../TShockAPI/GetDataHandlers.cs:4513 #, csharp-format msgid "HandleSyncCavernMonsterType: Player is trying to modify NPC cavernMonsterType; this is a crafted packet! - From {0}" msgstr "GetDataHandlers / HandleSyncCavernMonsterType(怪物生成列表防护)因检测到伪造怪物刷新列表而阻止了{0}发送数据。" -#: ../../TShockAPI/Commands.cs:2593 +#: ../../TShockAPI/Commands.cs:2608 msgid "Hardmode is disabled in the server configuration file." msgstr "已在服务器配置文件中禁用困难模式。" -#: ../../TShockAPI/Commands.cs:2584 +#: ../../TShockAPI/Commands.cs:2599 msgid "Hardmode is now off." msgstr "困难模式已关闭。" -#: ../../TShockAPI/Commands.cs:2589 +#: ../../TShockAPI/Commands.cs:2604 msgid "Hardmode is now on." msgstr "困难模式已开启。" -#: ../../TShockAPI/Commands.cs:6307 +#: ../../TShockAPI/Commands.cs:6323 msgid "Heal Syntax and Example" -msgstr "生命值和示例" +msgstr "指令Heal的用法和示例" -#: ../../TShockAPI/Bouncer.cs:2097 +#: ../../TShockAPI/Bouncer.cs:2153 msgid "HealOtherPlayer cheat attempt!" msgstr "通过作弊手段治疗友方" -#: ../../TShockAPI/Bouncer.cs:2106 +#: ../../TShockAPI/Bouncer.cs:2162 #, csharp-format msgid "HealOtherPlayer threshold exceeded {0}." msgstr "治疗友方速度超过{0}" -#: ../../TShockAPI/Commands.cs:549 +#: ../../TShockAPI/Commands.cs:554 msgid "Heals a player in HP and MP." msgstr "治愈玩家的血量和魔力。" -#: ../../TShockAPI/Commands.cs:6684 +#: ../../TShockAPI/Commands.cs:6700 msgid "Herb" msgstr "草药" -#: ../../TShockAPI/Commands.cs:4658 +#: ../../TShockAPI/Commands.cs:4674 msgid "Hit a block to get the name of the region." -msgstr "挖掘一个方块以获得该区域的名称" +msgstr "挖掘一个方块以获得该区域的名称。" -#: ../../TShockAPI/Commands.cs:4671 +#: ../../TShockAPI/Commands.cs:4687 #, csharp-format msgid "Hit a block to set point {0}." msgstr "挖掘一个方块来设置点 {0}。" @@ -3660,88 +3693,92 @@ msgstr "挖掘一个方块来设置点 {0}。" msgid "holding banned item: {0}" msgstr "持有被封禁的物品{0}" -#: ../../TShockAPI/Commands.cs:1235 +#: ../../TShockAPI/Commands.cs:1208 +msgid "Hook blocked the attempt to change the user group." +msgstr "一个插件阻止了你修改用户组。" + +#: ../../TShockAPI/Commands.cs:1249 #, csharp-format msgid "ID: {0}" msgstr "ID: {0}" -#: ../../TShockAPI/Commands.cs:6310 +#: ../../TShockAPI/Commands.cs:6326 msgid "If no amount is specified, it will default to healing the target player by their max HP." msgstr "在没有指定时的默认恢复量为该玩家的最大血量。" -#: ../../TShockAPI/Bouncer.cs:1392 +#: ../../TShockAPI/Bouncer.cs:1448 msgid "If this player wasn't hacking, please report the damage threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的伤害上限以便更正。" -#: ../../TShockAPI/Bouncer.cs:2113 +#: ../../TShockAPI/Bouncer.cs:2169 msgid "If this player wasn't hacking, please report the HealOtherPlayer threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的治疗友方速度以便更正。" -#: ../../TShockAPI/Bouncer.cs:1295 +#: ../../TShockAPI/Bouncer.cs:1351 msgid "If this player wasn't hacking, please report the projectile create threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的射弹创建速度上限以便更正。" -#: ../../TShockAPI/Bouncer.cs:927 +#: ../../TShockAPI/Bouncer.cs:951 msgid "If this player wasn't hacking, please report the tile kill threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的物块破坏速度上限以便更正。" -#: ../../TShockAPI/Bouncer.cs:1695 +#: ../../TShockAPI/Bouncer.cs:1751 msgid "If this player wasn't hacking, please report the tile liquid threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的液体放置速度上限以便更正。" -#: ../../TShockAPI/Bouncer.cs:945 +#: ../../TShockAPI/Bouncer.cs:969 msgid "If this player wasn't hacking, please report the tile place threshold they were disabled for to TShock so we can improve this!" msgstr "如果这个玩家没有作弊,请向TShock报告此处的物块放置速度上限以便更正。" -#: ../../TShockAPI/GetDataHandlers.cs:3026 +#: ../../TShockAPI/GetDataHandlers.cs:3101 msgid "If this was not skeletron prime related, please report to TShock what happened." msgstr "如果此信息出现时与机械骷髅王无关,请向TShock报告以便更正。" -#: ../../TShockAPI/Commands.cs:5377 +#: ../../TShockAPI/Commands.cs:5393 msgid "If you are locked out of all admin accounts, ask for help on https://tshock.co/" -msgstr "如果你没有管理员权限,请前往https://tshock.co/或社区寻求帮助。" +msgstr "如果你没有管理员权限,请前往TShock官方QQ群816771079或社区寻求帮助" -#: ../../TShockAPI/Commands.cs:5817 +#: ../../TShockAPI/Commands.cs:5833 #, csharp-format msgid "If you do not specify a radius, it will use a default radius of {0} around your character." msgstr "在没有指定时的默认范围为{0}。" -#: ../../TShockAPI/Commands.cs:6370 +#: ../../TShockAPI/Commands.cs:6386 #, csharp-format msgid "If you don't specify the duration, it will default to {0} seconds." msgstr "在没有指定时的默认持续时间为{0}秒。" -#: ../../TShockAPI/Commands.cs:857 +#: ../../TShockAPI/Commands.cs:867 msgid "If you forgot your password, contact the administrator for help." -msgstr "如果您忘记了密码,请联系管理员以获取帮助。" +msgstr "如果你忘记了密码,请联系管理员以获取帮助。" -#: ../../TShockAPI/Commands.cs:6371 +#: ../../TShockAPI/Commands.cs:6387 #, csharp-format msgid "If you put {0} as the duration, it will use the max possible time of 415 days." msgstr "如果持续时间为{0},那么默认为415天。" -#: ../../TShockAPI/Commands.cs:5416 +#: ../../TShockAPI/Commands.cs:5432 #, csharp-format msgid "If you understand, please {0}login now, and then type {0}setup." msgstr "如果你已经理解了并完成前一步骤,请使用{0}login <用户名> <密码> 进行登录,并在登录后使用{0}setup。" #: ../../TShockPluginManager/NugetCLI.cs:142 msgid "If you want to know which plugins need which dependencies, press E." -msgstr "如果你想查看各个插件的依赖关系,请按E" +msgstr "如果你想查看各个插件的依赖关系,请按E。" #: ../../TShockPluginManager/NugetCLI.cs:162 msgid "If you'd like to see which plugins need which dependencies again, press E." -msgstr "如果你想查看各个插件的依赖关系,请按E" +msgstr "如果你想查看各个插件的依赖关系,请按E。" -#: ../../TShockAPI/Bouncer.cs:986 +#: ../../TShockAPI/Bouncer.cs:1010 msgid "If you're seeing this message and you know what that player did, please report it to TShock for further investigation." -msgstr "如果您看到此消息并且您知道该玩家做了什么,请报告TShock以便进一步调查。" +msgstr "如果你看到此消息并且你知道该玩家做了什么,请报告TShock以便进一步调查。" -#: ../../TShockAPI/Bouncer.cs:1341 +#: ../../TShockAPI/Bouncer.cs:1397 msgid "Ignoring shrapnel per config.." msgstr "正在忽略每个配置项..." -#: ../../TShockAPI/GetDataHandlers.cs:2465 +#: ../../TShockAPI/GetDataHandlers.cs:2501 msgid "Illegal name: prefixes tsi: and tsn: are forbidden." msgstr "玩家名不得以tsi:或tsn:开头。" @@ -3750,207 +3787,207 @@ msgstr "玩家名不得以tsi:或tsn:开头。" msgid "IllegalPerSe: Emoji packet rejected for ID spoofing. Expected {0}, received {1} from {2}." msgstr "IllegalPerse: Emoji 数据包因伪装ID而被拒绝。预计 {0}将从 {1} 收到 {2}。" -#: ../../TShockAPI/Commands.cs:3189 +#: ../../TShockAPI/Commands.cs:3204 msgid "Incoming teleports are now allowed." -msgstr "现在传送(tp)是被允许的" +msgstr "已允许其他玩家传送你。" -#: ../../TShockAPI/Commands.cs:3191 +#: ../../TShockAPI/Commands.cs:3206 msgid "Incoming teleports are now disabled." -msgstr "现在传送(tp)是被禁止的" +msgstr "已禁止其他玩家传送你。" -#: ../../TShockAPI/Commands.cs:5403 +#: ../../TShockAPI/Commands.cs:5419 msgid "Incorrect setup code. This incident has been logged." msgstr "认证代码错误,你的行为已被记录。" -#: ../../TShockAPI/DB/TileManager.cs:223 -#: ../../TShockAPI/DB/ProjectileManager.cs:223 +#: ../../TShockAPI/DB/ProjectileManager.cs:210 +#: ../../TShockAPI/DB/TileManager.cs:220 #, csharp-format msgid "Infinite group parenting ({0})" msgstr "无限递归的父组引用({0})" -#: ../../TShockAPI/Commands.cs:5197 +#: ../../TShockAPI/Commands.cs:5213 msgid "info [-d] - Displays several information about the given region." msgstr "info <区域名> [-d] - 显示给定区域的相关信息。" -#: ../../TShockAPI/Commands.cs:4986 +#: ../../TShockAPI/Commands.cs:5002 #, csharp-format msgid "Information About Region \"{0}\" ({{0}}/{{1}}):" msgstr "有关区域{0}的信息(第{{0}}页,共{{1}}页)" -#: ../../TShockAPI/Commands.cs:1232 +#: ../../TShockAPI/Commands.cs:1246 msgid "Information about the currently running world" -msgstr "获取当前运行的世界信息。" +msgstr "获取当前运行的世界信息" -#: ../../TShockAPI/DB/BanManager.cs:314 +#: ../../TShockAPI/DB/BanManager.cs:309 msgid "Inserting the ban into the database failed." msgstr "将封禁数据载入数据库失败。" #: ../../TShockPluginManager/NugetCLI.cs:39 msgid "Install the plugins as specified in the plugins.json" -msgstr "根据插件列表packages.json文件中的内容安装插件。" +msgstr "根据插件列表packages.json文件中的内容安装插件" -#: ../../TShockAPI/Rest/Rest.cs:426 +#: ../../TShockAPI/Rest/Rest.cs:425 msgid "Internal server error." msgstr "服务器内部错误。" -#: ../../TShockAPI/Commands.cs:1505 +#: ../../TShockAPI/Commands.cs:1519 #, csharp-format msgid "Invalid Ban Add syntax. Refer to {0} for details on how to use the {1} command" -msgstr "无效的ban add语法。请参阅{0}有关于使用{1}命令的帮助" +msgstr "无效的ban add用法。请参阅{0}有关于使用{1}命令的帮助" -#: ../../TShockAPI/Commands.cs:1621 +#: ../../TShockAPI/Commands.cs:1635 #, csharp-format msgid "Invalid Ban Del syntax. Refer to {0} for details on how to use the {1} command" -msgstr "无效的ban del语法。请参阅{0}有关于使用{1}命令的帮助" +msgstr "无效的ban del用法。请参阅{0}有关于使用{1}命令的帮助" -#: ../../TShockAPI/Commands.cs:1680 +#: ../../TShockAPI/Commands.cs:1694 #, csharp-format msgid "Invalid Ban Details syntax. Refer to {0} for details on how to use the {1} command" -msgstr "无效的ban details语法。请参阅{0}有关于使用{1}命令的帮助" +msgstr "无效的ban details用法。请参阅{0}有关于使用{1}命令的帮助" -#: ../../TShockAPI/Commands.cs:1658 +#: ../../TShockAPI/Commands.cs:1672 #, csharp-format msgid "Invalid Ban List syntax. Refer to {0} for details on how to use the {1} command" -msgstr "无效的ban list语法。请参阅{0}有关于使用{1}命令的帮助" +msgstr "无效的ban list用法。请参阅{0}有关于使用{1}命令的帮助" -#: ../../TShockAPI/DB/UserManager.cs:500 +#: ../../TShockAPI/DB/UserManager.cs:527 msgid "Invalid BCrypt work factor in config file! Creating new hash using default work factor." -msgstr "配置文件中无效的 BCrypt 工作因子!使用默认工作因子创建新的 哈希值。" +msgstr "配置文件中的BCrypt工作因子无效!将使用默认工作因子创建新的哈希值。" -#: ../../TShockAPI/Commands.cs:2608 +#: ../../TShockAPI/Commands.cs:2623 msgid "Invalid boss amount." msgstr "无效的boss数量。" -#: ../../TShockAPI/Commands.cs:2821 +#: ../../TShockAPI/Commands.cs:2836 msgid "Invalid boss type!" msgstr "无效的boss类型。" -#: ../../TShockAPI/Commands.cs:6470 +#: ../../TShockAPI/Commands.cs:6486 msgid "Invalid buff ID!" msgstr "找不到这个buffID!" -#: ../../TShockAPI/Commands.cs:680 +#: ../../TShockAPI/Commands.cs:685 #, csharp-format msgid "Invalid command entered. Type {0}help for a list of valid commands." msgstr "输入的命令无效。使用{0}help 获取可用的指令列表。" -#: ../../TShockAPI/Commands.cs:5275 +#: ../../TShockAPI/Commands.cs:5291 msgid "Invalid command." -msgstr "指令不存在!" +msgstr "指令不存在。" -#: ../../TShockAPI/Commands.cs:3131 +#: ../../TShockAPI/Commands.cs:3146 msgid "Invalid destination NPC." msgstr "无效的目标NPC。" -#: ../../TShockAPI/Commands.cs:2941 -#: ../../TShockAPI/Commands.cs:2972 -#: ../../TShockAPI/Commands.cs:3011 -#: ../../TShockAPI/Commands.cs:3084 +#: ../../TShockAPI/Commands.cs:2956 +#: ../../TShockAPI/Commands.cs:2987 +#: ../../TShockAPI/Commands.cs:3026 +#: ../../TShockAPI/Commands.cs:3099 msgid "Invalid destination player." msgstr "无效的目标玩家。" -#: ../../TShockAPI/Commands.cs:2240 +#: ../../TShockAPI/Commands.cs:2255 #, csharp-format msgid "Invalid event type. Valid event types: {0}." msgstr "无效的事件类型。有效事件类型: {0}。" -#: ../../TShockAPI/Commands.cs:2382 +#: ../../TShockAPI/Commands.cs:2397 msgid "Invalid frost moon event wave." msgstr "无效的霜月波数。" -#: ../../TShockAPI/Commands.cs:3765 -#: ../../TShockAPI/Commands.cs:3868 -#: ../../TShockAPI/Commands.cs:3939 -#: ../../TShockAPI/Commands.cs:4058 -#: ../../TShockAPI/Commands.cs:4116 -#: ../../TShockAPI/Commands.cs:4234 -#: ../../TShockAPI/Commands.cs:4292 +#: ../../TShockAPI/Commands.cs:3780 +#: ../../TShockAPI/Commands.cs:3883 +#: ../../TShockAPI/Commands.cs:3954 +#: ../../TShockAPI/Commands.cs:4073 +#: ../../TShockAPI/Commands.cs:4131 +#: ../../TShockAPI/Commands.cs:4249 +#: ../../TShockAPI/Commands.cs:4307 msgid "Invalid group." -msgstr "无效组别" +msgstr "用户组无效。" -#: ../../TShockAPI/Commands.cs:2401 +#: ../../TShockAPI/Commands.cs:2416 #, csharp-format msgid "Invalid invasion type. Valid invasion types: {0}." msgstr "无效的入侵事件类型。有效的类型: {0}。" -#: ../../TShockAPI/Commands.cs:6083 -#: ../../TShockAPI/Commands.cs:6232 -#: ../../TShockAPI/Commands.cs:6295 +#: ../../TShockAPI/Commands.cs:6099 +#: ../../TShockAPI/Commands.cs:6248 +#: ../../TShockAPI/Commands.cs:6311 msgid "Invalid item type!" msgstr "物品不存在!" -#: ../../TShockAPI/Commands.cs:3807 -#: ../../TShockAPI/Commands.cs:3858 -#: ../../TShockAPI/Commands.cs:3903 -#: ../../TShockAPI/Commands.cs:3929 +#: ../../TShockAPI/Commands.cs:3822 +#: ../../TShockAPI/Commands.cs:3873 +#: ../../TShockAPI/Commands.cs:3918 +#: ../../TShockAPI/Commands.cs:3944 msgid "Invalid item." msgstr "无效物品" -#: ../../TShockAPI/Commands.cs:4455 +#: ../../TShockAPI/Commands.cs:4470 #, csharp-format msgid "Invalid maximum spawns. Acceptable range is {0} to {1}." -msgstr "无效的最大生成量。可接受的范围是 {0} 至 {1}。" +msgstr "最大生成量无效。可接受的范围是 {0} 至 {1}。" -#: ../../TShockAPI/Commands.cs:2860 -#: ../../TShockAPI/Commands.cs:6166 +#: ../../TShockAPI/Commands.cs:2875 +#: ../../TShockAPI/Commands.cs:6182 msgid "Invalid mob type!" -msgstr "无效的敌怪类别!" +msgstr "敌怪类别无效!" -#: ../../TShockAPI/Commands.cs:2844 -#: ../../TShockAPI/Commands.cs:2900 +#: ../../TShockAPI/Commands.cs:2859 +#: ../../TShockAPI/Commands.cs:2915 msgid "Invalid mob type." -msgstr "无效的敌怪类别。" +msgstr "敌怪类别无效。" -#: ../../TShockAPI/Commands.cs:2569 +#: ../../TShockAPI/Commands.cs:2584 #, csharp-format msgid "Invalid mode world mode. Valid modes: {0}" msgstr "无效的世界模式。有效模式: {0}" -#: ../../TShockAPI/Commands.cs:1421 +#: ../../TShockAPI/Commands.cs:1435 msgid "Invalid page number. Page number must be numeric." msgstr "无效页码。页码必须是个数字" -#: ../../TShockAPI/DB/GroupManager.cs:309 +#: ../../TShockAPI/DB/GroupManager.cs:342 #, csharp-format msgid "Invalid parent group {0} for group {1}" -msgstr "组 {0} 作为 {1} 的父组是无效的" +msgstr "组{0}作为{1}的父组是无效的" -#: ../../TShockAPI/DB/GroupManager.cs:347 +#: ../../TShockAPI/DB/GroupManager.cs:387 #, csharp-format msgid "Invalid parent group {0} for group {1}." -msgstr "组 {0} 作为 {1} 的父组是无效的。" +msgstr "组{0}作为{1}的父组是无效的。" -#: ../../TShockAPI/Commands.cs:928 +#: ../../TShockAPI/Commands.cs:938 msgid "Invalid password." -msgstr "无效密码" +msgstr "无效密码。" -#: ../../TShockAPI/Commands.cs:6263 -#: ../../TShockAPI/Commands.cs:6718 +#: ../../TShockAPI/Commands.cs:6279 +#: ../../TShockAPI/Commands.cs:6734 msgid "Invalid player!" msgstr "玩家不存在!" -#: ../../TShockAPI/Commands.cs:1255 +#: ../../TShockAPI/Commands.cs:1269 msgid "Invalid player." -msgstr "无效的玩家名" +msgstr "玩家名无效。" -#: ../../TShockAPI/Commands.cs:4040 +#: ../../TShockAPI/Commands.cs:4055 msgid "Invalid projectile ID!" -msgstr "无效的射弹ID!" +msgstr "射弹ID无效!" -#: ../../TShockAPI/Commands.cs:4077 -#: ../../TShockAPI/Commands.cs:4098 -#: ../../TShockAPI/Commands.cs:4136 +#: ../../TShockAPI/Commands.cs:4092 +#: ../../TShockAPI/Commands.cs:4113 +#: ../../TShockAPI/Commands.cs:4151 msgid "Invalid projectile ID." -msgstr "无效的射弹ID。" +msgstr "射弹ID无效。" -#: ../../TShockAPI/Commands.cs:2364 +#: ../../TShockAPI/Commands.cs:2379 msgid "Invalid pumpkin moon event wave." -msgstr "无效的南瓜月波数" +msgstr "南瓜月波数无效。" -#: ../../TShockAPI/Commands.cs:5127 +#: ../../TShockAPI/Commands.cs:5143 #, csharp-format msgid "Invalid region \"{0}\"." -msgstr "无效的区域“{0}”" +msgstr "无效的区域“{0}”。" #: ../../TShockAPI/Rest/Rest.cs:247 #, csharp-format @@ -3958,466 +3995,466 @@ msgid "Invalid REST configuration: \n" "You may already have a REST service bound to port {0}. \n" "Please adjust your configuration and restart the server. \n" "Press any key to exit." -msgstr "REST 配置无效: \n" -"您可能已经有绑定到端口 {0}的REST 服务。 \n" -"请调整您的配置并重启服务器。 \n" +msgstr "REST配置无效: \n" +"你可能已经有绑定到端口{0}的REST服务。 \n" +"请调整你的配置并重启服务器。 \n" "按任意键退出。" -#: ../../TShockAPI/GetDataHandlers.cs:3231 +#: ../../TShockAPI/GetDataHandlers.cs:3310 msgid "Invalid server password." -msgstr "密码错误" +msgstr "密码错误。" -#: ../../TShockAPI/Commands.cs:3782 +#: ../../TShockAPI/Commands.cs:3797 #, csharp-format msgid "Invalid subcommand! Type {0}group help for more information on valid commands." -msgstr "无效的子命令!输入{0}group 获得更多关于此命令的信息" +msgstr "无效的子命令!输入{0}group 获得更多关于此命令的信息。" -#: ../../TShockAPI/Commands.cs:4009 +#: ../../TShockAPI/Commands.cs:4024 #, csharp-format msgid "Invalid subcommand. Type {0}itemban help for more information on valid subcommands." -msgstr "无效的子命令。输入{0}group 获得更多关于此命令的信息" +msgstr "无效的子命令。输入{0}group 获得更多关于此命令的信息。" -#: ../../TShockAPI/Commands.cs:4187 +#: ../../TShockAPI/Commands.cs:4202 #, csharp-format msgid "Invalid subcommand. Type {0}projban help for more information on valid subcommands." msgstr "无效的子命令。输入{0}projban 获得更多关于此命令的信息。" -#: ../../TShockAPI/Commands.cs:4363 +#: ../../TShockAPI/Commands.cs:4378 #, csharp-format msgid "Invalid subcommand. Type {0}tileban help for more information on valid subcommands." -msgstr "无效的子命令。输入{0}tileban 获得更多关于此命令的信息。" +msgstr "无效的子指令。输入{0}tileban 获得更多关于此指令的信息。" -#: ../../TShockAPI/Commands.cs:3641 +#: ../../TShockAPI/Commands.cs:3656 msgid "Invalid syntax for color, expected \"rrr,ggg,bbb\"." -msgstr "颜色语法错误,正确语法\"rrr,ggg,bbb\"。" +msgstr "颜色码输入错误,正确格式\"rrr,ggg,bbb\"。" -#: ../../TShockAPI/Commands.cs:1915 +#: ../../TShockAPI/Commands.cs:1929 msgid "Invalid syntax." msgstr "语法错误。" -#: ../../TShockAPI/Commands.cs:2332 +#: ../../TShockAPI/Commands.cs:2347 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent invasion [invasion type] [invasion wave]." msgstr "格式错误! 正确格式: {0}worldevent invasion [入侵类型] [入侵波数]。" -#: ../../TShockAPI/Commands.cs:1270 -#: ../../TShockAPI/Commands.cs:1304 +#: ../../TShockAPI/Commands.cs:1284 +#: ../../TShockAPI/Commands.cs:1318 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}accountinfo ." msgstr "格式错误。正确格式: {0}accountinfo <用户名>" -#: ../../TShockAPI/Commands.cs:5754 +#: ../../TShockAPI/Commands.cs:5770 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}aliases " -msgstr "语法错误。正确的语法是:{0}aliases " +msgstr "用法错误。正确的格式是:{0}aliases " -#: ../../TShockAPI/Commands.cs:3369 +#: ../../TShockAPI/Commands.cs:3384 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group add [permissions]." msgstr "格式错误! 正确格式: {0}group add <组名> [权限]" -#: ../../TShockAPI/Commands.cs:3398 +#: ../../TShockAPI/Commands.cs:3413 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group addperm ." msgstr "格式错误! 正确格式: {0}group addperm <组名> <权限...>。" -#: ../../TShockAPI/Commands.cs:3606 +#: ../../TShockAPI/Commands.cs:3621 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group color [new color(000,000,000)]." msgstr "格式错误! 正确格式: {0}group color <组名> [聊天颜色(000,000,000)]" -#: ../../TShockAPI/Commands.cs:3679 +#: ../../TShockAPI/Commands.cs:3694 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group del ." msgstr "格式错误! 正确格式: {0}group del <组名>。" -#: ../../TShockAPI/Commands.cs:3703 +#: ../../TShockAPI/Commands.cs:3718 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group delperm ." msgstr "格式错误! 正确格式: {0}group delperm <组名> <权限...>。" -#: ../../TShockAPI/Commands.cs:3756 +#: ../../TShockAPI/Commands.cs:3771 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group listperm [page]." msgstr "格式错误! 正确格式: {0}group listperm <组名> [页码]。" -#: ../../TShockAPI/Commands.cs:3466 +#: ../../TShockAPI/Commands.cs:3481 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group parent [new parent group name]." msgstr "格式错误! 正确格式: {0}group parent <组名> [新的父组名]。" -#: ../../TShockAPI/Commands.cs:3561 +#: ../../TShockAPI/Commands.cs:3576 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group prefix [new prefix]." msgstr "格式错误! 正确格式: {0}group prefix <组名> [新前缀]。" -#: ../../TShockAPI/Commands.cs:3656 +#: ../../TShockAPI/Commands.cs:3671 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group rename ." msgstr "格式错误! 正确格式: {0}group rename <组名> <新组名>。" -#: ../../TShockAPI/Commands.cs:3516 +#: ../../TShockAPI/Commands.cs:3531 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}group suffix [new suffix]." msgstr "格式错误! 正确格式: {0}group suffix <组名> [新后缀]。" -#: ../../TShockAPI/Commands.cs:5241 +#: ../../TShockAPI/Commands.cs:5257 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}help " -msgstr "语法错误。正确的语法是:{0}help " +msgstr "用法错误。正确的格式是:{0}help " -#: ../../TShockAPI/Commands.cs:6058 +#: ../../TShockAPI/Commands.cs:6074 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}item [item amount] [prefix id/name]" -msgstr "语法错误。正确的语法是:{0}item [物品数量][前缀ID/名字]" +msgstr "用法错误。正确的格式是:{0}item [物品数量][前缀ID/名字]" -#: ../../TShockAPI/Commands.cs:3800 +#: ../../TShockAPI/Commands.cs:3815 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban add ." msgstr "格式错误! 正确格式: {0}itemban add <物品名>。" -#: ../../TShockAPI/Commands.cs:3851 +#: ../../TShockAPI/Commands.cs:3866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban allow ." msgstr "格式错误! 正确格式: {0}itemban allow <物品名> <组名>。" -#: ../../TShockAPI/Commands.cs:3896 +#: ../../TShockAPI/Commands.cs:3911 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban del ." msgstr "格式错误! 正确格式: {0}itemban del <物品名>。" -#: ../../TShockAPI/Commands.cs:3922 +#: ../../TShockAPI/Commands.cs:3937 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}itemban disallow ." msgstr "格式错误! 正确格式: {0}itemban disallow <物品名> <组名>。" -#: ../../TShockAPI/Commands.cs:1311 +#: ../../TShockAPI/Commands.cs:1325 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}kick [reason]." msgstr "格式错误!正确格式: {0}kick <玩家名> [理由]。" -#: ../../TShockAPI/Commands.cs:5424 +#: ../../TShockAPI/Commands.cs:5440 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}me " -msgstr "语法错误。正确的语法是:{0}me " +msgstr "用法错误。正确的格式是:{0}me " -#: ../../TShockAPI/Commands.cs:5437 +#: ../../TShockAPI/Commands.cs:5453 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}p " -msgstr "语法错误。正确的语法是:{0}p <聊天内容>" +msgstr "用法错误。正确的格式是:{0}p <聊天内容>" -#: ../../TShockAPI/Commands.cs:4030 +#: ../../TShockAPI/Commands.cs:4045 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban add " msgstr "无效的语法。正确的语法: {0}projban 添加 <射弹ID>" -#: ../../TShockAPI/Commands.cs:4049 +#: ../../TShockAPI/Commands.cs:4064 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban allow ." -msgstr "无效的语法。正确的语法: {0}projban allow <弹射物ID> <组名>" +msgstr "用法错误。正确的格式: {0}projban allow <弹射物ID> <组名> 。" -#: ../../TShockAPI/Commands.cs:4086 +#: ../../TShockAPI/Commands.cs:4101 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban del ." -msgstr "无效的语法。正确的语法: {0}projban del <弹射物ID>" +msgstr "用法错误。正确的格式: {0}projban del <弹射物ID> 。" -#: ../../TShockAPI/Commands.cs:4107 +#: ../../TShockAPI/Commands.cs:4122 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}projban disallow ." -msgstr "无效的语法。正确的语法: {0}projban disallow <射弹> <用户组>" +msgstr "用法错误。正确的格式: {0}projban disallow <射弹> <用户组> 。" -#: ../../TShockAPI/Commands.cs:4796 +#: ../../TShockAPI/Commands.cs:4812 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allow ." msgstr "无效的语法。正确的语法: {0}region allow <玩家名> <领地名>" -#: ../../TShockAPI/Commands.cs:4866 +#: ../../TShockAPI/Commands.cs:4882 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region allowg ." -msgstr "无效的语法。正确的语法: {0}region allowg <组名> <领地名>" +msgstr "用法错误。正确的格式: {0}region allowg <组名> <领地名> 。" -#: ../../TShockAPI/Commands.cs:4710 +#: ../../TShockAPI/Commands.cs:4726 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region define ." -msgstr "格式错误! 正确格式: {0}region define " +msgstr "用法错误! 正确格式: {0}region define 。" -#: ../../TShockAPI/Commands.cs:4752 +#: ../../TShockAPI/Commands.cs:4768 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region delete ." -msgstr "格式错误! 正确格式: {0}region delete " +msgstr "用法错误! 正确格式: {0}region delete 。" -#: ../../TShockAPI/Commands.cs:4925 +#: ../../TShockAPI/Commands.cs:4941 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region info [-d] [page]." -msgstr "格式错误!正确格式: {0}region info [-d] [第几页]" +msgstr "用法错误!正确格式: {0}region info [-d] [第几页]" -#: ../../TShockAPI/Commands.cs:4733 +#: ../../TShockAPI/Commands.cs:4749 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region protect ." -msgstr "格式错误!正确格式: {0}region protect ." +msgstr "用法错误!正确格式: {0}region protect ." -#: ../../TShockAPI/Commands.cs:4831 +#: ../../TShockAPI/Commands.cs:4847 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region remove ." -msgstr "格式错误。正确格式: {0}region remove ." +msgstr "用法错误。正确格式: {0}region remove ." -#: ../../TShockAPI/Commands.cs:4901 +#: ../../TShockAPI/Commands.cs:4917 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region removeg ." -msgstr "格式错误。正确格式: {0}region removeg <组名> <领地名>." +msgstr "用法错误。正确格式: {0}region removeg <组名> <领地名>." -#: ../../TShockAPI/Commands.cs:5109 +#: ../../TShockAPI/Commands.cs:5125 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region rename " -msgstr "格式错误。正确的格式:{0}region rename " +msgstr "用法错误。正确的格式:{0}region rename " -#: ../../TShockAPI/Commands.cs:5099 -#: ../../TShockAPI/Commands.cs:5102 +#: ../../TShockAPI/Commands.cs:5115 +#: ../../TShockAPI/Commands.cs:5118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region resize " -msgstr "格式错误。正确的格式:{0}region resize " +msgstr "用法错误。正确的格式:{0}region resize " -#: ../../TShockAPI/Commands.cs:5159 +#: ../../TShockAPI/Commands.cs:5175 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region tp ." -msgstr "格式错误。正确的格式:{0}region tp 。" +msgstr "用法错误。正确的格式:{0}region tp 。" -#: ../../TShockAPI/Commands.cs:5047 -#: ../../TShockAPI/Commands.cs:5050 +#: ../../TShockAPI/Commands.cs:5063 +#: ../../TShockAPI/Commands.cs:5066 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}region z <#>" -msgstr "格式错误。正确的格式:{0}region z <#>" +msgstr "用法错误。正确的格式:{0}region z <#>" -#: ../../TShockAPI/Commands.cs:1037 +#: ../../TShockAPI/Commands.cs:1047 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}register ." -msgstr "格式错误! 正确格式: {0}register <密码>。" +msgstr "用法错误! 正确格式: {0}register <密码>。" -#: ../../TShockAPI/Commands.cs:6157 +#: ../../TShockAPI/Commands.cs:6173 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}renameNPC " -msgstr "格式错误。正确的格式:{0}renameNPC " +msgstr "用法错误。正确的格式:{0}renameNPC " -#: ../../TShockAPI/Commands.cs:4402 +#: ../../TShockAPI/Commands.cs:4417 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}serverpassword \"\"." -msgstr "格式错误。正确格式:{0}serverpassword \"<新的服务器密码>\"" +msgstr "用法错误。正确格式:{0}serverpassword \"<新的服务器密码>\" 。" -#: ../../TShockAPI/Commands.cs:4583 +#: ../../TShockAPI/Commands.cs:4598 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}slap [damage]." -msgstr "格式错误。正确格式:{0}slap <玩家名> [一巴掌的伤害值]" +msgstr "用法错误。正确格式:{0}slap <玩家名> [一巴掌的伤害值]" -#: ../../TShockAPI/Commands.cs:2601 +#: ../../TShockAPI/Commands.cs:2616 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnboss [amount]." -msgstr "格式错误! 正确格式: {0}spawnboss [生成数量]。" +msgstr "用法错误! 正确格式: {0}spawnboss [生成数量]。" -#: ../../TShockAPI/Commands.cs:2839 -#: ../../TShockAPI/Commands.cs:2851 +#: ../../TShockAPI/Commands.cs:2854 +#: ../../TShockAPI/Commands.cs:2866 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}spawnmob [amount]." -msgstr "格式错误! 正确格式: {0}spawnmob [生成数量]" +msgstr "用法错误! 正确格式: {0}spawnmob [生成数量]" -#: ../../TShockAPI/Commands.cs:4206 +#: ../../TShockAPI/Commands.cs:4221 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban add ." -msgstr "格式错误。正确格式:{0}tileban add <图格ID>" +msgstr "用法错误。正确用法:{0}tileban add <物块ID> 。" -#: ../../TShockAPI/Commands.cs:4225 +#: ../../TShockAPI/Commands.cs:4240 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban allow ." -msgstr "格式错误。正确格式:{0}tileban allow <图格ID> <组名>" +msgstr "用法错误。正确格式:{0}tileban allow <图格ID> <组名> 。" -#: ../../TShockAPI/Commands.cs:4262 +#: ../../TShockAPI/Commands.cs:4277 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban del ." -msgstr "格式错误。正确格式:{0}tileban del <图格ID>" +msgstr "用法错误。正确格式:{0}tileban del <图格ID> 。" -#: ../../TShockAPI/Commands.cs:4283 +#: ../../TShockAPI/Commands.cs:4298 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tileban disallow ." -msgstr "格式错误。正确的格式:{0}tileban disallow 。" +msgstr "用法错误。正确的格式:{0}tileban disallow 。" -#: ../../TShockAPI/Commands.cs:2931 +#: ../../TShockAPI/Commands.cs:2946 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp [player 2]." msgstr "格式错误! 正确格式: {0}tp <玩家> [玩家2]" -#: ../../TShockAPI/Commands.cs:2933 +#: ../../TShockAPI/Commands.cs:2948 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tp ." -msgstr "格式错误! 正确格式: {0}tp <玩家>" +msgstr "用法错误! 正确格式: {0}tp <玩家> 。" -#: ../../TShockAPI/Commands.cs:3058 +#: ../../TShockAPI/Commands.cs:3073 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." msgstr "格式错误! 正确格式: {0}tphere <玩家名>" -#: ../../TShockAPI/Commands.cs:3056 +#: ../../TShockAPI/Commands.cs:3071 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tphere ." -msgstr "格式错误! 正确格式: {0}tphere <玩家名|*>" +msgstr "用法错误! 正确格式: {0}tphere <玩家名|*> 。" -#: ../../TShockAPI/Commands.cs:3103 +#: ../../TShockAPI/Commands.cs:3118 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tpnpc ." msgstr "格式错误! 正确格式: {0}tpnpc " -#: ../../TShockAPI/Commands.cs:3167 +#: ../../TShockAPI/Commands.cs:3182 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}tppos ." msgstr "格式错误! 正确格式: {0}tppos " -#: ../../TShockAPI/Commands.cs:1249 +#: ../../TShockAPI/Commands.cs:1263 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}userinfo ." msgstr "格式错误! 正确格式: {0}userinfo <玩家名>" -#: ../../TShockAPI/Commands.cs:3202 +#: ../../TShockAPI/Commands.cs:3217 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [command] [arguments]." msgstr "指令warp的用法错误,应为{0}warp [子命令] [参数]" -#: ../../TShockAPI/Commands.cs:3211 +#: ../../TShockAPI/Commands.cs:3226 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp [name] or {0}warp list ." -msgstr "格式错误! 正确格式: {0}warp [传送点名] 或 {0}warp list <页码>" +msgstr "用法错误! 正确格式: {0}warp [传送点名] 或 {0}warp list <页码> 。" -#: ../../TShockAPI/Commands.cs:3254 +#: ../../TShockAPI/Commands.cs:3269 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp add [name]." msgstr "格式错误! 正确格式: {0}warp add [传送点名]" -#: ../../TShockAPI/Commands.cs:3271 +#: ../../TShockAPI/Commands.cs:3286 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp del [name]." msgstr "格式错误! 正确格式: {0}warp del [传送点名]" -#: ../../TShockAPI/Commands.cs:3294 -#: ../../TShockAPI/Commands.cs:3297 +#: ../../TShockAPI/Commands.cs:3309 +#: ../../TShockAPI/Commands.cs:3312 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp hide [name] ." msgstr "格式错误! 正确格式: {0}warp hide [传送点名] ." -#: ../../TShockAPI/Commands.cs:3305 +#: ../../TShockAPI/Commands.cs:3320 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}warp send [player] [warpname]." msgstr "格式错误! 正确格式: {0}warp send [角色名] [传送点名]" -#: ../../TShockAPI/Commands.cs:4625 +#: ../../TShockAPI/Commands.cs:4640 #, csharp-format -msgid "Invalid syntax. Proper syntax: {0}wind ." -msgstr "格式错误。正确格式:{0}wind <风速>" +msgid "Invalid syntax. Proper syntax: {0}wind ." +msgstr "用法错误。正确格式:{0}wind <风速> 。" -#: ../../TShockAPI/Commands.cs:2146 +#: ../../TShockAPI/Commands.cs:2161 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldevent ." msgstr "格式错误! 正确格式: {0}worldevent <事件类型>" -#: ../../TShockAPI/Commands.cs:2548 +#: ../../TShockAPI/Commands.cs:2563 #, csharp-format msgid "Invalid syntax. Proper syntax: {0}worldmode ." -msgstr "格式错误! 正确格式: {0}worldmode <世界难度>。" +msgstr "用法错误! 正确格式: {0}worldmode <世界难度>。" -#: ../../TShockAPI/Commands.cs:4736 +#: ../../TShockAPI/Commands.cs:4752 #, csharp-format msgid "Invalid syntax. Proper syntax: /region protect ." -msgstr "格式错误。正确格式:/region protect <领地名> " +msgstr "用法错误。正确格式:/region protect <领地名> 。" -#: ../../TShockAPI/Commands.cs:4676 +#: ../../TShockAPI/Commands.cs:4692 msgid "Invalid syntax. Proper syntax: /region set <1/2>." -msgstr "格式错误。正确格式:/region set <1/2>" +msgstr "用法错误。正确格式:/region set <1/2> 。" -#: ../../TShockAPI/Commands.cs:3151 -#: ../../TShockAPI/Commands.cs:3312 -#: ../../TShockAPI/Commands.cs:4589 -#: ../../TShockAPI/Commands.cs:4597 +#: ../../TShockAPI/Commands.cs:3166 +#: ../../TShockAPI/Commands.cs:3327 +#: ../../TShockAPI/Commands.cs:4604 +#: ../../TShockAPI/Commands.cs:4612 msgid "Invalid target player." msgstr "目标玩家无效。" -#: ../../TShockAPI/Commands.cs:1627 -#: ../../TShockAPI/Commands.cs:1686 +#: ../../TShockAPI/Commands.cs:1641 +#: ../../TShockAPI/Commands.cs:1700 #, csharp-format msgid "Invalid Ticket Number. Refer to {0} for details on how to use the {1} command" -msgstr "回执号码无效。你可以通过{0}来了解如何使用{1}指令。" +msgstr "回执号码无效。你可以通过{0}来了解如何使用{1}指令" -#: ../../TShockAPI/Commands.cs:4216 -#: ../../TShockAPI/Commands.cs:4253 -#: ../../TShockAPI/Commands.cs:4274 -#: ../../TShockAPI/Commands.cs:4312 +#: ../../TShockAPI/Commands.cs:4231 +#: ../../TShockAPI/Commands.cs:4268 +#: ../../TShockAPI/Commands.cs:4289 +#: ../../TShockAPI/Commands.cs:4327 msgid "Invalid tile ID." -msgstr "无效的图格ID" +msgstr "图格ID无效。" -#: ../../TShockAPI/Commands.cs:1943 +#: ../../TShockAPI/Commands.cs:1957 msgid "Invalid time string! Proper format: _d_h_m_s, with at least one time specifier." msgstr "时间无效! 正确格式: _d_h_m_s, 至少需要一个时间单位。" -#: ../../TShockAPI/Commands.cs:4548 -#: ../../TShockAPI/Commands.cs:4557 +#: ../../TShockAPI/Commands.cs:4563 +#: ../../TShockAPI/Commands.cs:4572 msgid "Invalid time string. Proper format: hh:mm, in 24-hour time." msgstr "无效的时间字符串。正确格式: hh:mm,24小时制时间。" -#: ../../TShockAPI/Rest/RestManager.cs:1332 +#: ../../TShockAPI/Rest/RestManager.cs:1333 #, csharp-format msgid "Invalid Type: '{0}'" msgstr "无效类型:“{0}”" -#: ../../TShockAPI/Commands.cs:1079 -#: ../../TShockAPI/Commands.cs:1212 +#: ../../TShockAPI/Commands.cs:1089 +#: ../../TShockAPI/Commands.cs:1226 #, csharp-format msgid "Invalid user syntax. Try {0}user help." msgstr "指令user的用法错误,使用{0}user help查看帮助。" -#: ../../TShockAPI/Commands.cs:3242 +#: ../../TShockAPI/Commands.cs:3257 msgid "Invalid warp name. The names 'list', 'hide', 'del' and 'add' are reserved for commands." msgstr "传送点名无效。 'list', 'hide', 'del' 和 'add' 等已被保留。" -#: ../../TShockAPI/Commands.cs:4632 -msgid "Invalid wind speed." -msgstr "无效的风速。" +#: ../../TShockAPI/Commands.cs:4647 +msgid "Invalid wind speed (must be between -40 and 40)." +msgstr "风速错误,应在正负40之间。" -#: ../../TShockAPI/Commands.cs:2559 +#: ../../TShockAPI/Commands.cs:2574 #, csharp-format msgid "Invalid world mode. Valid world modes: {0}" msgstr "无效的世界模式。有效世界模式: {0}" -#: ../../TShockAPI/Commands.cs:1260 +#: ../../TShockAPI/Commands.cs:1274 #, csharp-format msgid "IP Address: {0}." msgstr "IP地址:{0}。" -#: ../../TShockAPI/Commands.cs:3981 +#: ../../TShockAPI/Commands.cs:3996 msgid "Item Ban Sub-Commands ({{0}}/{{1}}):" msgstr "封禁物品的子命令({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:3999 +#: ../../TShockAPI/Commands.cs:4014 msgid "Item bans ({{0}}/{{1}}):" msgstr "封禁物品 ({{0}}/{{1}}):" -#: ../../TShockAPI/TSPlayer.cs:1920 +#: ../../TShockAPI/TSPlayer.cs:2072 #, csharp-format msgid "Kicked {0} for : '{1}'" msgstr "踢出 {0} 因为:'{1}'" -#: ../../TShockAPI/Rest/RestManager.cs:1049 +#: ../../TShockAPI/Rest/RestManager.cs:1050 msgid "Kicked via web" msgstr "通过网络踢出" -#: ../../TShockAPI/TSPlayer.cs:1919 +#: ../../TShockAPI/TSPlayer.cs:2071 #, csharp-format msgid "Kicked: {0}" msgstr "踢出:{0}" -#: ../../TShockAPI/Commands.cs:5917 +#: ../../TShockAPI/Commands.cs:5933 msgid "Kill syntax and example" -msgstr "Kill的语法和示例" +msgstr "Kill的用法和示例" -#: ../../TShockAPI/Commands.cs:553 +#: ../../TShockAPI/Commands.cs:558 msgid "Kills another player." msgstr "杀死另一名玩家。" -#: ../../TShockAPI/Commands.cs:393 +#: ../../TShockAPI/Commands.cs:398 msgid "Kills hostile NPCs or NPCs of a certain type." msgstr "击杀敌对NPC或者一种指定类型的NPC。" @@ -4446,108 +4483,108 @@ msgstr "LandGolfBallInCupHandler:在数据包中的图格位置 X:{0} Y:{1 msgid "LandGolfBallInCupHandler: X and Y position is out of world bounds! - From {0}" msgstr "LandGolfBallInCupHandler: 位置 X 和 Y 超越了世界边界! - 从 {0}" -#: ../../TShockAPI/Commands.cs:2493 +#: ../../TShockAPI/Commands.cs:2508 msgid "Lanterns are now down." msgstr "灯笼夜结束了。" -#: ../../TShockAPI/Commands.cs:2489 +#: ../../TShockAPI/Commands.cs:2504 msgid "Lanterns are now up." msgstr "灯笼夜开始了。" -#: ../../TShockAPI/Commands.cs:4423 +#: ../../TShockAPI/Commands.cs:4438 msgid "Liquids are already settling." -msgstr "液体已经安置完毕" +msgstr "液体已平衡。" -#: ../../TShockAPI/Commands.cs:5191 +#: ../../TShockAPI/Commands.cs:5207 msgid "list - Lists all regions." msgstr "列表 - 列出所有区域。" -#: ../../TShockAPI/Commands.cs:3975 +#: ../../TShockAPI/Commands.cs:3990 msgid "list [page] - Lists all item bans." msgstr "list [页码] - 列出所有被禁用的物品." -#: ../../TShockAPI/Commands.cs:4153 +#: ../../TShockAPI/Commands.cs:4168 msgid "list [page] - Lists all projectile bans." msgstr "list [页码] - 列出所有被禁用的射弹。" -#: ../../TShockAPI/Commands.cs:4329 +#: ../../TShockAPI/Commands.cs:4344 msgid "list [page] - Lists all tile bans." msgstr "list [页码] - 列出所有被禁用的方块。" -#: ../../TShockAPI/Commands.cs:3444 +#: ../../TShockAPI/Commands.cs:3459 msgid "list [page] - Lists groups." msgstr "list [页码] - 列出所有组." -#: ../../TShockAPI/Commands.cs:5327 +#: ../../TShockAPI/Commands.cs:5343 msgid "List Online Players Syntax" msgstr "展示在线玩家" -#: ../../TShockAPI/TShock.cs:828 +#: ../../TShockAPI/TShock.cs:834 #, csharp-format msgid "Listening on IP {0}." msgstr "监听IP在{0}。" -#: ../../TShockAPI/TShock.cs:809 +#: ../../TShockAPI/TShock.cs:815 #, csharp-format msgid "Listening on port {0}." msgstr "监听端口在{0}。" -#: ../../TShockAPI/Commands.cs:3445 +#: ../../TShockAPI/Commands.cs:3460 msgid "listperm [page] - Lists a group's permissions." msgstr "listperm <组名> [页码] - 列出一个组的权限." -#: ../../TShockAPI/Commands.cs:613 +#: ../../TShockAPI/Commands.cs:618 msgid "Lists commands or gives help on them." msgstr "列出指令或显示指令的帮助信息。" -#: ../../TShockAPI/Commands.cs:2110 +#: ../../TShockAPI/Commands.cs:2125 msgid "listusers - Lists all REST users and their current active tokens." msgstr "listusers - 列出所有临时REST用户和它们的令牌。" -#: ../../TShockAPI/TShock.cs:798 +#: ../../TShockAPI/TShock.cs:804 #, csharp-format msgid "Loading dedicated config file: {0}" msgstr "正在加载配置文件: {0}" -#: ../../TShockAPI/Commands.cs:3159 +#: ../../TShockAPI/Commands.cs:3174 #, csharp-format msgid "Location of {0} is ({1}, {2})." msgstr "当前 {0} 的坐标为({1}, {2})。" -#: ../../TShockAPI/Commands.cs:1750 +#: ../../TShockAPI/Commands.cs:1764 msgid "Log display disabled." msgstr "你现在不再收到服务器日志。" -#: ../../TShockAPI/Commands.cs:1746 +#: ../../TShockAPI/Commands.cs:1760 msgid "Log display enabled." msgstr "你现在将会收到服务器日志。" -#: ../../TShockAPI/TShock.cs:785 +#: ../../TShockAPI/TShock.cs:791 #, csharp-format msgid "Log path has been set to {0}" msgstr "日志文件路径已设置为 {0}。" -#: ../../TShockAPI/Commands.cs:874 +#: ../../TShockAPI/Commands.cs:884 msgid "Login attempt failed - see the message above." msgstr "尝试登录失败 - 请查看上面的信息。" -#: ../../TShockAPI/TShock.cs:980 +#: ../../TShockAPI/TShock.cs:986 msgid "Login before join enabled. Users may be prompted for an account specific password instead of a server password on connect." -msgstr "DisableLoginBeforeJoin(禁止进入游戏前自动登录)已关闭,已注册的玩家在进入服务器前需要在服务器密码栏中输入账号密码。" +msgstr "你开启了进入游戏前自动登录,因此已注册的玩家将需要在进入服务器前输入他们账号的密码。" -#: ../../TShockAPI/TShock.cs:985 +#: ../../TShockAPI/TShock.cs:991 msgid "Login using UUID enabled. Users automatically login via UUID." msgstr "DisableUUIDLogin(禁止UUID自动登录)已关闭,UUID匹配的玩家将自动登录。" -#: ../../TShockAPI/Commands.cs:240 +#: ../../TShockAPI/Commands.cs:245 msgid "Logs you into an account." msgstr "登录一个账号。" -#: ../../TShockAPI/Commands.cs:246 +#: ../../TShockAPI/Commands.cs:251 msgid "Logs you out of your current account." msgstr "从当前账号登出。" -#: ../../TShockAPI/Commands.cs:1227 +#: ../../TShockAPI/Commands.cs:1241 #, csharp-format msgid "Machine name: {0}" msgstr "机器名称:{0}" @@ -4556,7 +4593,7 @@ msgstr "机器名称:{0}" msgid "Make sure that you trust the plugins you're installing." msgstr "请注意,插件可以做很多事情(包括恶意行为),建议只安装你信任的插件。" -#: ../../TShockAPI/Bouncer.cs:2471 +#: ../../TShockAPI/Bouncer.cs:2532 msgid "Malicious portal attempt." msgstr "试图伪造传送其他玩家" @@ -4564,102 +4601,102 @@ msgstr "试图伪造传送其他玩家" msgid "Manage plugins and their requirements" msgstr "管理插件及依赖项" -#: ../../TShockAPI/Commands.cs:280 +#: ../../TShockAPI/Commands.cs:285 msgid "Manages groups." msgstr "管理用户组。" -#: ../../TShockAPI/Commands.cs:284 +#: ../../TShockAPI/Commands.cs:289 msgid "Manages item bans." msgstr "管理物品封禁。" -#: ../../TShockAPI/Commands.cs:268 +#: ../../TShockAPI/Commands.cs:273 msgid "Manages player bans." msgstr "管理玩家封禁。" -#: ../../TShockAPI/Commands.cs:288 +#: ../../TShockAPI/Commands.cs:293 msgid "Manages projectile bans." msgstr "管理弹幕封禁。" -#: ../../TShockAPI/Commands.cs:296 +#: ../../TShockAPI/Commands.cs:301 msgid "Manages regions." msgstr "管理区域。" -#: ../../TShockAPI/Commands.cs:570 +#: ../../TShockAPI/Commands.cs:575 msgid "Manages the REST API." msgstr "管理REST API。" -#: ../../TShockAPI/Commands.cs:376 +#: ../../TShockAPI/Commands.cs:381 msgid "Manages the server whitelist." msgstr "管理服务器白名单。" -#: ../../TShockAPI/Commands.cs:292 +#: ../../TShockAPI/Commands.cs:297 msgid "Manages tile bans." msgstr "管理物块封禁。" -#: ../../TShockAPI/Commands.cs:232 +#: ../../TShockAPI/Commands.cs:237 msgid "Manages user accounts." msgstr "管理用户账号。" -#: ../../TShockAPI/Bouncer.cs:1775 +#: ../../TShockAPI/Bouncer.cs:1831 msgid "Manipulating unknown liquid type" msgstr "液体种类不明" -#: ../../TShockAPI/Commands.cs:4721 +#: ../../TShockAPI/Commands.cs:4737 #, csharp-format msgid "Marked region {0} as protected." -msgstr "标记区域{0}为受保护区" +msgstr "标记区域{0}为受保护区。" -#: ../../TShockAPI/Commands.cs:4728 +#: ../../TShockAPI/Commands.cs:4744 #, csharp-format msgid "Marked region {0} as unprotected." -msgstr "区域{0}并没有被保护" +msgstr "区域{0}并没有被保护。" -#: ../../TShockAPI/Commands.cs:1222 +#: ../../TShockAPI/Commands.cs:1236 #, csharp-format msgid "Memory usage: {0}" msgstr "内存占用:{0}" -#: ../../TShockAPI/SqlLog.cs:39 +#: ../../TShockAPI/SqlLog.cs:40 #, csharp-format msgid "Message: {0}: {1}: {2}" msgstr "消息: {0}: {1}: {2}" -#: ../../TShockAPI/Rest/RestManager.cs:874 +#: ../../TShockAPI/Rest/RestManager.cs:875 msgid "Meteor has been spawned" msgstr "陨石已生成" -#: ../../TShockAPI/Commands.cs:1334 +#: ../../TShockAPI/Commands.cs:1348 msgid "Misbehaviour." msgstr "不当行为。" -#: ../../TShockAPI/Commands.cs:6214 +#: ../../TShockAPI/Commands.cs:6230 msgid "Missing item name/id." -msgstr "缺少物品名/Id" +msgstr "缺少物品名或ID。" -#: ../../TShockAPI/Rest/RestManager.cs:1274 +#: ../../TShockAPI/Rest/RestManager.cs:1275 #, csharp-format msgid "Missing or empty {0} parameter" msgstr "{0}参数缺失或为空" -#: ../../TShockAPI/Rest/RestManager.cs:1284 +#: ../../TShockAPI/Rest/RestManager.cs:1285 #, csharp-format msgid "Missing or invalid {0} parameter" msgstr "{0}参数缺失或无效" -#: ../../TShockAPI/Commands.cs:6219 +#: ../../TShockAPI/Commands.cs:6235 msgid "Missing player name." -msgstr "缺少玩家名" +msgstr "缺少玩家名。" -#: ../../TShockAPI/Commands.cs:1237 +#: ../../TShockAPI/Commands.cs:1251 #, csharp-format msgid "Mode: {0}" msgstr "模式:{0}" -#: ../../TShockAPI/TSPlayer.cs:1966 +#: ../../TShockAPI/TSPlayer.cs:2118 msgid "More than one match found -- unable to decide which is correct: " msgstr "找到多个匹配项-无法判断哪个是正确的:" -#: ../../TShockAPI/Commands.cs:2767 +#: ../../TShockAPI/Commands.cs:2782 msgid "Mourning Wood" msgstr "哀木" @@ -4667,24 +4704,24 @@ msgstr "哀木" msgid "Msg ID not implemented" msgstr "Msg ID 尚未实现" -#: ../../TShockAPI/DB/UserManager.cs:294 +#: ../../TShockAPI/DB/UserManager.cs:324 #, csharp-format msgid "Multiple user accounts found for {0} '{1}'" msgstr "为 {0} '{1}' 找到多个用户帐户" -#: ../../TShockAPI/Commands.cs:5461 +#: ../../TShockAPI/Commands.cs:5477 msgid "Mute Syntax" -msgstr "禁言的语法" +msgstr "禁言的用法" -#: ../../TShockAPI/Commands.cs:1293 +#: ../../TShockAPI/Commands.cs:1307 msgid "N/A" msgstr "N/A" -#: ../../TShockAPI/Commands.cs:5189 +#: ../../TShockAPI/Commands.cs:5205 msgid "name [-u][-z][-p] - Shows the name of the region at the given point." msgstr "name [-u][-z][-p] - 显示给定点所在的区域名称。" -#: ../../TShockAPI/Commands.cs:1233 +#: ../../TShockAPI/Commands.cs:1247 #, csharp-format msgid "Name: {0}" msgstr "名称:{0}" @@ -4694,77 +4731,77 @@ msgstr "名称:{0}" msgid "NetModuleHandler received attempt to unlock sacrifice while not in journey mode from {0}" msgstr "NetModuleHandler 接收到在非旅行模式下解锁祭祀的尝试,来自 {0}" -#: ../../TShockAPI/Commands.cs:1474 +#: ../../TShockAPI/Commands.cs:1488 msgid "Never." msgstr "永久" -#: ../../TShockAPI/Commands.cs:6176 +#: ../../TShockAPI/Commands.cs:6192 msgid "New name is too large!" -msgstr "新名称太大了!" +msgstr "新名称太长了!" -#: ../../TShockAPI/TShock.cs:864 +#: ../../TShockAPI/TShock.cs:870 #, csharp-format msgid "New worlds will be generated with the {0} world evil type!" -msgstr "地图生成时的邪恶类型已设为{0}。" +msgstr "地图生成时的邪恶类型已设为{0}!" -#: ../../TShockAPI/Permissions.cs:547 +#: ../../TShockAPI/Permissions.cs:545 msgid "No associated commands." msgstr "没有相关的指令。" -#: ../../TShockAPI/Commands.cs:1694 +#: ../../TShockAPI/Commands.cs:1708 msgid "No bans found matching the provided ticket number." msgstr "没有找到对应回执号码的封禁。" -#: ../../TShockAPI/Commands.cs:5784 +#: ../../TShockAPI/Commands.cs:5800 #, csharp-format msgid "No command or command alias matching \"{0}\" found." msgstr "没有找到{0}所对应的指令或别名 。" -#: ../../TShockAPI/Permissions.cs:530 +#: ../../TShockAPI/Permissions.cs:537 msgid "No description available." msgstr "没有描述。" #: ../../TShockAPI/Commands.cs:145 msgid "No help available." -msgstr "没有可用的帮助" +msgstr "没有可用的帮助。" -#: ../../TShockAPI/Rest/RestManager.cs:721 +#: ../../TShockAPI/Rest/RestManager.cs:722 msgid "No matching bans found." -msgstr "未发现匹配的封禁项目!" +msgstr "未发现匹配的封禁项目。" -#: ../../TShockAPI/Commands.cs:1829 +#: ../../TShockAPI/Commands.cs:1843 #, csharp-format msgid "No player was found matching '{0}'." msgstr "没有找到名为 '{0}' 的玩家。" -#: ../../TShockAPI/Commands.cs:1786 +#: ../../TShockAPI/Commands.cs:1800 #, csharp-format msgid "No players matched \"{0}\"." msgstr "没有找到与 “{0}” 匹配的玩家。" -#: ../../TShockAPI/Commands.cs:6123 +#: ../../TShockAPI/Commands.cs:6139 #, csharp-format msgid "No prefix matched \"{0}\"." msgstr "没有找到与\"{0}\"匹配的前缀。" -#: ../../TShockAPI/Commands.cs:5492 +#: ../../TShockAPI/Commands.cs:5508 msgid "No reason specified." msgstr "没有明确原因。" -#: ../../TShockAPI/Rest/RestManager.cs:1224 +#: ../../TShockAPI/Rest/RestManager.cs:1225 msgid "No special permissions are required for this route." msgstr "不需要特殊权限。" -#: ../../TShockAPI/Commands.cs:3474 -#: ../../TShockAPI/Commands.cs:3483 -#: ../../TShockAPI/Commands.cs:3524 -#: ../../TShockAPI/Commands.cs:3569 -#: ../../TShockAPI/Commands.cs:3614 +#: ../../TShockAPI/Commands.cs:3489 +#: ../../TShockAPI/Commands.cs:3498 +#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3629 #, csharp-format msgid "No such group \"{0}\"." msgstr "没有名为 “{0}” 的用户组。" -#: ../../TShockAPI/DB/IQueryBuilder.cs:345 +#: ../../TShockAPI/DB/Queries/GenericQueryBuilder.cs:94 msgid "No values supplied" msgstr "未提供值" @@ -4776,9 +4813,9 @@ msgstr "未授权:该授权令牌所对应的用户组已不存在,请创建 msgid "Not authorized. The specified API endpoint requires a token, but the provided token was not valid." msgstr "未授权:指定的API端点需要授权令牌,但使用的令牌无效。" +#: ../../TShockAPI/Rest/SecureRest.cs:180 #: ../../TShockAPI/Rest/RestCommand.cs:95 #: ../../TShockAPI/Rest/RestCommand.cs:101 -#: ../../TShockAPI/Rest/SecureRest.cs:180 msgid "Not authorized. The specified API endpoint requires a token." msgstr "未授权。指定的 API 终结点需要一个令牌。" @@ -4787,17 +4824,17 @@ msgstr "未授权。指定的 API 终结点需要一个令牌。" msgid "Not authorized. User \"{0}\" has no access to use the specified API endpoint." msgstr "未授权。用户 \"{0}\" 没有权限使用指定的 API 终结点。" -#: ../../TShockAPI/Commands.cs:991 +#: ../../TShockAPI/Commands.cs:1001 #, csharp-format msgid "Not logged in or Invalid syntax. Proper syntax: {0}password ." -msgstr "未登录或语法错误。正确用法: {0}password <旧密码> <新密码>" +msgstr "未登录或用法错误。正确用法: {0}password <旧密码> <新密码> 。" -#: ../../TShockAPI/DB/UserManager.cs:468 +#: ../../TShockAPI/DB/UserManager.cs:495 msgid "Not upgrading work factor because bcrypt hash in an invalid format." msgstr "没有升级Work Factor,因为BCrypt的哈希值格式有误。" -#: ../../TShockAPI/Bouncer.cs:1383 -#: ../../TShockAPI/Bouncer.cs:1387 +#: ../../TShockAPI/Bouncer.cs:1439 +#: ../../TShockAPI/Bouncer.cs:1443 #, csharp-format msgid "NPC damage exceeded {0}." msgstr "对NPC造成的伤害高于{0}" @@ -4806,22 +4843,27 @@ msgstr "对NPC造成的伤害高于{0}" msgid "One moment..." msgstr "请稍候..." -#: ../../TShockAPI/DB/RegionManager.cs:102 +#: ../../TShockAPI/DB/RegionManager.cs:98 #, csharp-format msgid "One of your UserIDs is not a usable integer: {0}" -msgstr "您的一个用户ID不是可用整数: {0}" +msgstr "你的一个用户ID不是可用整数: {0}" -#: ../../TShockAPI/Commands.cs:5344 +#: ../../TShockAPI/Commands.cs:5360 #, csharp-format msgid "Online Players ({0}/{1})" msgstr "在线的玩家({0}/{1})" -#: ../../TShockAPI/Commands.cs:1225 +#: ../../TShockAPI/TShock.cs:1156 +#, csharp-format +msgid "OnSecondUpdate / initial ssc spawn for {0} at ({1}, {2})" +msgstr "" + +#: ../../TShockAPI/Commands.cs:1239 #, csharp-format msgid "Operating system: {0}" msgstr "操作系统: {0}" -#: ../../TShockAPI/Commands.cs:308 +#: ../../TShockAPI/Commands.cs:313 msgid "Overrides serverside characters for a player, temporarily." msgstr "临时覆盖玩家的SSC存档。" @@ -4829,177 +4871,177 @@ msgstr "临时覆盖玩家的SSC存档。" msgid "Page {{0}} of {{1}}" msgstr "第{{0}}页,共{{1}}页" -#: ../../TShockAPI/Commands.cs:3446 +#: ../../TShockAPI/Commands.cs:3461 msgid "parent - Changes a group's parent group." -msgstr "parent <组> <父组> - 更改一个组的父组" +msgstr "parent <组> <父组> - 更改一个组的父组 。" -#: ../../TShockAPI/Commands.cs:3504 +#: ../../TShockAPI/Commands.cs:3519 #, csharp-format msgid "Parent of \"{0}\" is \"{1}\"." -msgstr "用户组 “{0}” 的前缀是 “{1}”。" +msgstr "用户组 \"{1}\" 的父组是 \"{0}\" 。" -#: ../../TShockAPI/Commands.cs:3492 +#: ../../TShockAPI/Commands.cs:3507 #, csharp-format msgid "Parent of group \"{0}\" set to \"{1}\"." -msgstr "组 \"{0}\" 的父组已设置为组 \"{1}\"" +msgstr "组 \"{0}\" 的父组已设置为组 \"{1}\" 。" -#: ../../TShockAPI/DB/GroupManager.cs:356 +#: ../../TShockAPI/DB/GroupManager.cs:396 #, csharp-format msgid "Parenting group {0} to {1} would cause loops in the parent chain." msgstr "父组 {0} 到 {1} 会导致父组的循环。" -#: ../../TShockAPI/Commands.cs:1163 +#: ../../TShockAPI/Commands.cs:1173 #, csharp-format msgid "Password change attempt for {0} failed for an unknown reason. Check the server console for more details." msgstr "{0} 的密码更改失败,原因不明。请检查服务器控制台了解更多详情。" -#: ../../TShockAPI/Commands.cs:1155 +#: ../../TShockAPI/Commands.cs:1165 #, csharp-format msgid "Password change succeeded for {0}." msgstr "{0} 的密码更改成功。" -#: ../../TShockAPI/DB/UserManager.cs:492 -#: ../../TShockAPI/DB/UserManager.cs:513 +#: ../../TShockAPI/DB/UserManager.cs:519 +#: ../../TShockAPI/DB/UserManager.cs:540 #, csharp-format msgid "Password must be at least {0} characters." msgstr "密码至少需要 {0} 个字符。" -#: ../../TShockAPI/Commands.cs:980 -#: ../../TShockAPI/Commands.cs:1017 -#: ../../TShockAPI/Commands.cs:1031 -#: ../../TShockAPI/Commands.cs:1097 -#: ../../TShockAPI/Commands.cs:1168 +#: ../../TShockAPI/Commands.cs:990 +#: ../../TShockAPI/Commands.cs:1027 +#: ../../TShockAPI/Commands.cs:1041 +#: ../../TShockAPI/Commands.cs:1107 +#: ../../TShockAPI/Commands.cs:1178 #, csharp-format msgid "Password must be greater than or equal to {0} characters." msgstr "密码长度必须大于或等于 {0} 个字符。" -#: ../../TShockAPI/Commands.cs:997 +#: ../../TShockAPI/Commands.cs:1007 #, csharp-format msgid "PasswordUser returned an error: {0}." msgstr "更改用户密码时出现了一个错误:{0}。" -#: ../../TShockAPI/Commands.cs:1238 +#: ../../TShockAPI/Commands.cs:1252 #, csharp-format msgid "Path: {0}" -msgstr "Path: {0}" +msgstr "路径: {0}" -#: ../../TShockAPI/Commands.cs:6622 +#: ../../TShockAPI/Commands.cs:6638 msgid "Pearlwood Tree" msgstr "珍珠树" -#: ../../TShockAPI/Commands.cs:3774 +#: ../../TShockAPI/Commands.cs:3789 #, csharp-format msgid "Permissions for {0} ({{0}}/{{1}}):" msgstr "{0}的权限是({{0}}/{{1}})" -#: ../../TShockAPI/Commands.cs:2680 +#: ../../TShockAPI/Commands.cs:2695 msgid "Plantera" msgstr "世纪之花" -#: ../../TShockAPI/Commands.cs:1803 +#: ../../TShockAPI/Commands.cs:1817 #, csharp-format msgid "Player \"{0}\" has to perform a /login attempt first." -msgstr "玩家 \"{0}\" 必须执行一次/login" +msgstr "玩家 \"{0}\" 必须执行一次/login 。" -#: ../../TShockAPI/Commands.cs:1808 +#: ../../TShockAPI/Commands.cs:1822 #, csharp-format msgid "Player \"{0}\" has to reconnect first, because they need to delete their trash." -msgstr "玩家\"{0}\"需要重新连接,因为要删除他们的缓存" +msgstr "玩家\"{0}\"需要重新连接,因为他们要删除他们的缓存。" -#: ../../TShockAPI/Commands.cs:1798 +#: ../../TShockAPI/Commands.cs:1812 #, csharp-format msgid "Player \"{0}\" is already logged in." msgstr "玩家 {0} 已经登录。" -#: ../../TShockAPI/TSPlayer.cs:1883 -#: ../../TShockAPI/TSPlayer.cs:1887 +#: ../../TShockAPI/TSPlayer.cs:2035 +#: ../../TShockAPI/TSPlayer.cs:2039 #, csharp-format msgid "Player {0} has been disabled for {1}." msgstr "玩家{0}因为{1}而被限制行动。" -#: ../../TShockAPI/Rest/RestManager.cs:1394 +#: ../../TShockAPI/Rest/RestManager.cs:1395 #, csharp-format msgid "Player {0} has been muted" msgstr "玩家{0}已被禁言" -#: ../../TShockAPI/Rest/RestManager.cs:1399 +#: ../../TShockAPI/Rest/RestManager.cs:1400 #, csharp-format msgid "Player {0} has been unmuted" msgstr "玩家{0}已被解除禁言" -#: ../../TShockAPI/Rest/RestManager.cs:1307 +#: ../../TShockAPI/Rest/RestManager.cs:1308 #, csharp-format msgid "Player {0} matches {1} player" msgid_plural "Player {0} matches {1} players" msgstr[0] "{0}对应了{1}个玩家" -#: ../../TShockAPI/Commands.cs:4792 -#: ../../TShockAPI/Commands.cs:4827 +#: ../../TShockAPI/Commands.cs:4808 +#: ../../TShockAPI/Commands.cs:4843 #, csharp-format msgid "Player {0} not found." -msgstr "并不存在“{0}”这个玩家" +msgstr "并不存在“{0}”这个玩家。" -#: ../../TShockAPI/Bouncer.cs:1140 +#: ../../TShockAPI/Bouncer.cs:1180 #, csharp-format msgid "Player {0} tried to sneak {1} onto the server!" msgstr "玩家{0}试图将{1}偷偷带入服务器!" -#: ../../TShockAPI/Rest/RestManager.cs:1069 +#: ../../TShockAPI/Rest/RestManager.cs:1070 #, csharp-format msgid "Player {0} was killed" msgstr "玩家{0}被杀死了" -#: ../../TShockAPI/Rest/RestManager.cs:1305 +#: ../../TShockAPI/Rest/RestManager.cs:1306 #, csharp-format msgid "Player {0} was not found" msgstr "未找到玩家{0}" -#: ../../TShockAPI/Bouncer.cs:2604 -#: ../../TShockAPI/Bouncer.cs:2611 +#: ../../TShockAPI/Bouncer.cs:2665 +#: ../../TShockAPI/Bouncer.cs:2672 #, csharp-format msgid "Player damage exceeded {0}." msgstr "对玩家造成的伤害高于{0}" -#: ../../TShockAPI/Commands.cs:6289 +#: ../../TShockAPI/Commands.cs:6305 msgid "Player does not have free slots!" msgstr "玩家没有空闲的背包空间!" -#: ../../TShockAPI/Bouncer.cs:1182 +#: ../../TShockAPI/Bouncer.cs:1238 #, csharp-format msgid "Player does not have permission to create projectile {0}." msgstr "没有创建射弹{0}的权限" -#: ../../TShockAPI/Commands.cs:1324 +#: ../../TShockAPI/Commands.cs:1338 msgid "Player not found. Unable to kick the player." msgstr "未找到该玩家。无法踢出。" -#: ../../TShockAPI/TShock.cs:1696 +#: ../../TShockAPI/TShock.cs:1714 #, csharp-format msgid "Please {0}register or {0}login to play!" msgstr "请用{0}register和{0}login 注册并登录你的账号!" -#: ../../TShockAPI/Commands.cs:951 +#: ../../TShockAPI/Commands.cs:961 msgid "Please close NPC windows before logging out." msgstr "请在登出之前关闭NPC对话框。" -#: ../../TShockAPI/Commands.cs:5761 +#: ../../TShockAPI/Commands.cs:5777 msgid "Please enter a proper command name or alias." msgstr "请输入正确的指令名或别名。" -#: ../../TShockAPI/Commands.cs:1063 +#: ../../TShockAPI/Commands.cs:1073 msgid "Please try a different username." -msgstr "请尝试其他用户名" +msgstr "请尝试其他用户名。" -#: ../../TShockAPI/Commands.cs:5415 +#: ../../TShockAPI/Commands.cs:5431 #, csharp-format msgid "Please use {0}login after this process." msgstr "在完成前一步之后,请使用{0}login <用户名> <密码> 来登录。" -#: ../../TShockAPI/Commands.cs:5412 +#: ../../TShockAPI/Commands.cs:5428 msgid "Please use the following to create a permanent account for you." msgstr "请根据以下指示创建永久的管理员账号。" -#: ../../TShockAPI/TShock.cs:895 +#: ../../TShockAPI/TShock.cs:901 #, csharp-format msgid "Port overridden by startup argument. Set to {0}" msgstr "命令行参数指定的端口覆盖了配置文件中设置的端口,目前使用端口{0}。" @@ -5007,122 +5049,122 @@ msgstr "命令行参数指定的端口覆盖了配置文件中设置的端口, #: ../../TShockAPI/DB/ResearchDatastore.cs:53 #: ../../TShockAPI/DB/BanManager.cs:81 msgid "Possible problem with your database - is Sqlite3.dll present?" -msgstr "您的数据库可能存在问题:Sqlite3.dll是否存在?" +msgstr "你的数据库可能存在问题:Sqlite3.dll是否存在?" -#: ../../TShockAPI/Commands.cs:3447 +#: ../../TShockAPI/Commands.cs:3462 msgid "prefix - Changes a group's prefix." -msgstr "prefix <组> <前缀> - 改变一个组的前缀" +msgstr "prefix <组> <前缀> - 改变一个组的前缀。" -#: ../../TShockAPI/Commands.cs:3594 +#: ../../TShockAPI/Commands.cs:3609 #, csharp-format msgid "Prefix of \"{0}\" is \"{1}\"." msgstr "用户组 “{0}” 的前缀是 “{1}”。" -#: ../../TShockAPI/Commands.cs:3582 +#: ../../TShockAPI/Commands.cs:3597 #, csharp-format msgid "Prefix of group \"{0}\" set to \"{1}\"." msgstr "用户组 \"{0}\" 的前缀已设置为 \"{1}\"。" -#: ../../TShockAPI/Commands.cs:304 +#: ../../TShockAPI/Commands.cs:309 msgid "Prevents a player from talking." -msgstr "阻止一名玩家发言" +msgstr "阻止一名玩家发言。" -#: ../../TShockAPI/Commands.cs:1226 +#: ../../TShockAPI/Commands.cs:1240 #, csharp-format msgid "Proc count: {0}" -msgstr "进程数量:{0}" +msgstr "处理器数量:{0}" -#: ../../TShockAPI/Commands.cs:4065 -#: ../../TShockAPI/Commands.cs:4123 +#: ../../TShockAPI/Commands.cs:4080 +#: ../../TShockAPI/Commands.cs:4138 #, csharp-format msgid "Projectile {0} is not banned." msgstr "射弹 {0} 未被禁止。" -#: ../../TShockAPI/Commands.cs:4159 +#: ../../TShockAPI/Commands.cs:4174 msgid "Projectile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "封禁射弹的子命令({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4177 +#: ../../TShockAPI/Commands.cs:4192 msgid "Projectile bans ({{0}}/{{1}}):" msgstr "封禁射弹 ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:1286 +#: ../../TShockAPI/Bouncer.cs:1342 #, csharp-format msgid "Projectile create threshold exceeded {0}." msgstr "射弹创建速度超过每秒{0}个" -#: ../../TShockAPI/Bouncer.cs:1192 +#: ../../TShockAPI/Bouncer.cs:1248 #, csharp-format msgid "Projectile damage is higher than {0}." msgstr "射弹的伤害高于{0}" -#: ../../TShockAPI/Commands.cs:5198 +#: ../../TShockAPI/Commands.cs:5214 msgid "protect - Sets whether the tiles inside the region are protected or not." -msgstr "protect <区域名> - 是否保护特定区域中的图格不受更改" +msgstr "protect <区域名> - 是否保护特定区域中的图格不受更改。" #: ../../TShockAPI/RegionHandler.cs:159 msgid "Protected regions at this point: " msgstr "当前点的区域保护: " -#: ../../TShockAPI/Commands.cs:4950 +#: ../../TShockAPI/Commands.cs:4966 #, csharp-format msgid "Protected: {0}." msgstr "{0}已受保护。" -#: ../../TShockAPI/Commands.cs:1373 +#: ../../TShockAPI/Commands.cs:1387 #, csharp-format msgid "Quick usage: {0} {1} \"Griefing\"" msgstr "快速使用: {0} {1} \"恶意捣乱\"" -#: ../../TShockAPI/TSPlayer.cs:758 +#: ../../TShockAPI/TSPlayer.cs:809 #, csharp-format msgid "Rangecheck failed for {0} ({1}, {2}) (rg: {3}/{5}, {4}/{5})" msgstr "{0}的范围检查失败({1},{2})(范围:{3}/{5},{4}/{5})" -#: ../../TShockAPI/TShock.cs:1196 +#: ../../TShockAPI/TShock.cs:1202 msgid "Reached HealOtherPlayer threshold" msgstr "治疗友方速度过快" -#: ../../TShockAPI/Bouncer.cs:2110 +#: ../../TShockAPI/Bouncer.cs:2166 msgid "Reached HealOtherPlayer threshold." msgstr "治疗友方速度过快" -#: ../../TShockAPI/TShock.cs:1187 +#: ../../TShockAPI/TShock.cs:1193 msgid "Reached paint threshold" msgstr "涂料染色速度过快" -#: ../../TShockAPI/Bouncer.cs:1290 +#: ../../TShockAPI/Bouncer.cs:1346 msgid "Reached projectile create threshold." msgstr "射弹创建速度过快" -#: ../../TShockAPI/TShock.cs:1178 +#: ../../TShockAPI/TShock.cs:1184 msgid "Reached projectile threshold" msgstr "射弹创建速度过快" -#: ../../TShockAPI/Bouncer.cs:922 -#: ../../TShockAPI/TShock.cs:1108 +#: ../../TShockAPI/Bouncer.cs:946 +#: ../../TShockAPI/TShock.cs:1114 msgid "Reached TileKill threshold." msgstr "物块破坏速度过快" -#: ../../TShockAPI/TShock.cs:1169 +#: ../../TShockAPI/TShock.cs:1175 msgid "Reached TileLiquid threshold" msgstr "液体放置速度过快" -#: ../../TShockAPI/Bouncer.cs:1686 +#: ../../TShockAPI/Bouncer.cs:1742 #, csharp-format msgid "Reached TileLiquid threshold {0}." msgstr "液体放置速度超过{0}" -#: ../../TShockAPI/Bouncer.cs:1690 +#: ../../TShockAPI/Bouncer.cs:1746 msgid "Reached TileLiquid threshold." msgstr "液体放置速度过快" -#: ../../TShockAPI/TShock.cs:1125 +#: ../../TShockAPI/TShock.cs:1131 msgid "Reached TilePlace threshold" msgstr "物块破坏速度过快" -#: ../../TShockAPI/Bouncer.cs:940 -#: ../../TShockAPI/Bouncer.cs:2376 +#: ../../TShockAPI/Bouncer.cs:964 +#: ../../TShockAPI/Bouncer.cs:2432 msgid "Reached TilePlace threshold." msgstr "物块破坏速度过快" @@ -5130,62 +5172,62 @@ msgstr "物块破坏速度过快" msgid "Read the message below to find out more." msgstr "以下为不兼容的具体信息:" -#: ../../TShockAPI/Commands.cs:1495 +#: ../../TShockAPI/Commands.cs:1509 #, csharp-format msgid "Reason: {0}." msgstr "原因:{0}。" -#: ../../TShockAPI/Extensions/DbExt.cs:254 +#: ../../TShockAPI/Extensions/DbExt.cs:265 #, csharp-format msgid "Received type '{0}', however column '{1}' expects type '{2}'" msgstr "收到类型 '{0}',但列'{1}的类型是 '{2}'" -#: ../../TShockAPI/Commands.cs:5135 +#: ../../TShockAPI/Commands.cs:5151 #, csharp-format msgid "Region \"{0}\" already exists." msgstr "已经存在名为{0}的区域。" -#: ../../TShockAPI/Commands.cs:5167 +#: ../../TShockAPI/Commands.cs:5183 #, csharp-format msgid "Region \"{0}\" does not exist." msgstr "不存在名为{0}的区域。" -#: ../../TShockAPI/Commands.cs:4701 +#: ../../TShockAPI/Commands.cs:4717 #, csharp-format msgid "Region {0} already exists." -msgstr "领地{0}已经存在" +msgstr "区域{0}已经存在。" -#: ../../TShockAPI/Commands.cs:4980 +#: ../../TShockAPI/Commands.cs:4996 msgid "Region is not shared with any groups." msgstr "区域不与任何用户组共享。" -#: ../../TShockAPI/Commands.cs:4969 +#: ../../TShockAPI/Commands.cs:4985 msgid "Region is not shared with any users." msgstr "区域不与任何用户共享。" -#: ../../TShockAPI/Commands.cs:4949 +#: ../../TShockAPI/Commands.cs:4965 #, csharp-format msgid "Region owner: {0}." msgstr "领地所有者: {0}。" -#: ../../TShockAPI/Commands.cs:4706 +#: ../../TShockAPI/Commands.cs:4722 msgid "Region points need to be defined first. Use /region set 1 and /region set 2." msgstr "领地需要先确定左上角和右下角的方块。请使用 /region set 1 和 /region set 2 完成设置。" -#: ../../TShockAPI/Commands.cs:5141 +#: ../../TShockAPI/Commands.cs:5157 msgid "Region renamed successfully!" -msgstr "区域重命名成功。" +msgstr "区域重命名成功!" -#: ../../TShockAPI/Commands.cs:5095 +#: ../../TShockAPI/Commands.cs:5111 msgid "Region Resized Successfully!" -msgstr "区域大小调整成功。" +msgstr "区域大小调整成功!" -#: ../../TShockAPI/Commands.cs:5042 +#: ../../TShockAPI/Commands.cs:5058 #, csharp-format msgid "Region's z is now {0}" msgstr "区域的z轴现在是{0}。" -#: ../../TShockAPI/Commands.cs:4915 +#: ../../TShockAPI/Commands.cs:4931 msgid "Regions ({{0}}/{{1}}):" msgstr "区域({{0}}/{{1}}):" @@ -5193,62 +5235,62 @@ msgstr "区域({{0}}/{{1}}):" msgid "Regions at this point: " msgstr "在此点的区域: " -#: ../../TShockAPI/Commands.cs:258 +#: ../../TShockAPI/Commands.cs:263 msgid "Registers you an account." msgstr "注册一个账号。" -#: ../../TShockAPI/Commands.cs:1070 +#: ../../TShockAPI/Commands.cs:1080 #, csharp-format msgid "RegisterUser returned an error: {0}." msgstr "注册用户时出现了一个错误:{0}。" -#: ../../TShockAPI/Bouncer.cs:2161 +#: ../../TShockAPI/Bouncer.cs:2217 msgid "Released critter was not from its item." msgstr "释放的小动物并非来自它对应的物品。" -#: ../../TShockAPI/Commands.cs:364 +#: ../../TShockAPI/Commands.cs:369 msgid "Reloads the server configuration file." msgstr "重新加载服务器配置文件。" -#: ../../TShockAPI/Commands.cs:5194 +#: ../../TShockAPI/Commands.cs:5210 msgid "remove - Removes a user from a region." -msgstr "remove - 删除一个用户进入领地的权限" +msgstr "remove - 删除一个用户进入领地的权限。" -#: ../../TShockAPI/Commands.cs:2521 +#: ../../TShockAPI/Commands.cs:2536 #, csharp-format msgid "Removed {0} players from the angler quest completion list for today." -msgstr "已从今日渔夫任务完成列表移除了 {0} 名玩家" +msgstr "已从今日渔夫任务完成列表移除了{0}名玩家。" -#: ../../TShockAPI/Commands.cs:4890 +#: ../../TShockAPI/Commands.cs:4906 #, csharp-format msgid "Removed group {0} from {1}" msgstr "已从{1}中移除用户组{0}" -#: ../../TShockAPI/Commands.cs:3494 +#: ../../TShockAPI/Commands.cs:3509 #, csharp-format msgid "Removed parent of group \"{0}\"." msgstr "已删除 “{0}” 的父组 。" -#: ../../TShockAPI/Commands.cs:3584 +#: ../../TShockAPI/Commands.cs:3599 #, csharp-format msgid "Removed prefix of group \"{0}\"." msgstr "已删除组 “{0}” 的前缀 。" -#: ../../TShockAPI/Commands.cs:3539 +#: ../../TShockAPI/Commands.cs:3554 #, csharp-format msgid "Removed suffix of group \"{0}\"." -msgstr "已移除组\"{0}\"的后缀" +msgstr "已移除组\"{0}\"的后缀。" -#: ../../TShockAPI/Commands.cs:4820 +#: ../../TShockAPI/Commands.cs:4836 #, csharp-format msgid "Removed user {0} from {1}." msgstr "已从 {0} 中删除玩家 {1}。" -#: ../../TShockAPI/Commands.cs:5196 +#: ../../TShockAPI/Commands.cs:5212 msgid "removeg - Removes a user group from a region." -msgstr "removeg <用户组名> <领地名> - 删除一个组进入领地的权限" +msgstr "removeg <用户组> <区域> - 移除用户组在该区域的建造权限。" -#: ../../TShockAPI/Commands.cs:300 +#: ../../TShockAPI/Commands.cs:305 msgid "Removes a player from the server." msgstr "将一名玩家踢出服务器。" @@ -5256,21 +5298,21 @@ msgstr "将一名玩家踢出服务器。" msgid "RemoveUser SQL returned an error" msgstr "RemoveUser 方法在执行SQL语句时返回了一个错误" -#: ../../TShockAPI/Commands.cs:3441 +#: ../../TShockAPI/Commands.cs:3456 msgid "rename - Changes a group's name." msgstr "rename <组名> <新组名> - 重命名一个组" -#: ../../TShockAPI/Commands.cs:5190 +#: ../../TShockAPI/Commands.cs:5206 msgid "rename - Renames the given region." -msgstr "rename <领地名> <新的领地名> - 给领地重新命名" +msgstr "rename <领地名> <新的领地名> - 给领地重新命名。" -#: ../../TShockAPI/Commands.cs:397 +#: ../../TShockAPI/Commands.cs:402 msgid "Renames an NPC." msgstr "重命名一个NPC" -#: ../../TShockAPI/Commands.cs:566 +#: ../../TShockAPI/Commands.cs:571 msgid "Replies to a PM sent to you." -msgstr "回复私聊" +msgstr "回复私聊。" #: ../../TShockAPI/Rest/SecureRest.cs:93 msgid "Requested token was successfully destroyed." @@ -5281,7 +5323,7 @@ msgstr "请求的令牌已经被成功地销毁。" msgid "RequestTileEntityInteractionHandler: Rejected packet due to lack of building permissions! - From {0} | Position X:{1} Y:{2}, TileEntity type: {3}, Tile type: {4}" msgstr "RequestTileEntityInteractionHandler:由于缺少构建权限而拒绝数据包! - 从 {0} | 位置 X:{1} Y:{2}, 图格实体类型: {3}, 图格类型: {4}" -#: ../../TShockAPI/Commands.cs:419 +#: ../../TShockAPI/Commands.cs:424 msgid "Resets the list of users who have completed an angler quest that day." msgstr "重置当天已完成渔夫任务的用户列表。" @@ -5290,11 +5332,11 @@ msgstr "重置当天已完成渔夫任务的用户列表。" msgid "resetTime {0}, direct {1}" msgstr "设置时间{0}至{1}" -#: ../../TShockAPI/Commands.cs:5192 +#: ../../TShockAPI/Commands.cs:5208 msgid "resize - Resizes a region." msgstr "resize <领地名> <大小> - 调整一个区域的大小。" -#: ../../TShockAPI/Commands.cs:603 +#: ../../TShockAPI/Commands.cs:608 msgid "Respawn yourself or another player." msgstr "复活你自己或其他玩家。" @@ -5302,43 +5344,43 @@ msgstr "复活你自己或其他玩家。" msgid "Retrying in 5 minutes." msgstr "将在 5 分钟后重试。" -#: ../../TShockAPI/Commands.cs:456 +#: ../../TShockAPI/Commands.cs:461 msgid "Returns the user's or specified user's current position." msgstr "返回你或指定用户当前的位置。" -#: ../../TShockAPI/Commands.cs:6600 +#: ../../TShockAPI/Commands.cs:6616 msgid "Rich Mahogany" msgstr "红木" -#: ../../TShockAPI/Commands.cs:5627 +#: ../../TShockAPI/Commands.cs:5643 msgid "Rocket Syntax" -msgstr "使用火箭的语法" +msgstr "使用火箭的用法" -#: ../../TShockAPI/Commands.cs:342 +#: ../../TShockAPI/Commands.cs:347 msgid "Rockets a player upwards. Requires SSC." msgstr "把一名玩家射上天。需要启用服务端存档。" -#: ../../TShockAPI/Commands.cs:6662 +#: ../../TShockAPI/Commands.cs:6678 msgid "Ruby Gemtree" msgstr "红玉宝石树" -#: ../../TShockAPI/Commands.cs:6604 +#: ../../TShockAPI/Commands.cs:6620 msgid "Sakura Tree" msgstr "樱花树" -#: ../../TShockAPI/Commands.cs:2783 +#: ../../TShockAPI/Commands.cs:2798 msgid "Santa-NK1" msgstr "圣诞坦克" -#: ../../TShockAPI/Commands.cs:6654 +#: ../../TShockAPI/Commands.cs:6670 msgid "Sapphire Gemtree" msgstr "蓝玉宝石树" -#: ../../TShockAPI/Commands.cs:312 +#: ../../TShockAPI/Commands.cs:317 msgid "Saves all serverside characters." msgstr "保存所有玩家的服务端存档。" -#: ../../TShockAPI/Commands.cs:500 +#: ../../TShockAPI/Commands.cs:505 msgid "Saves the world file." msgstr "保存世界文件。" @@ -5346,38 +5388,38 @@ msgstr "保存世界文件。" msgid "Saving world..." msgstr "正在保存世界…" -#: ../../TShockAPI/Commands.cs:1236 +#: ../../TShockAPI/Commands.cs:1250 #, csharp-format msgid "Seed: {0}" msgstr "地图种子:{0}" -#: ../../TShockAPI/Commands.cs:562 +#: ../../TShockAPI/Commands.cs:567 msgid "Sends a message to everyone on your team." -msgstr "向您的团队中的每个人发送一条消息。" +msgstr "向你的团队中的每个人发送一条消息。" -#: ../../TShockAPI/Commands.cs:586 +#: ../../TShockAPI/Commands.cs:591 msgid "Sends a PM to a player." msgstr "给玩家发送一条私聊消息" -#: ../../TShockAPI/Commands.cs:599 +#: ../../TShockAPI/Commands.cs:604 msgid "Sends all tiles from the server to the player to resync the client with the actual world state." msgstr "重新发送玩家附近的物块信息,使玩家与服务器同步当前的地图状态。" -#: ../../TShockAPI/Commands.cs:557 +#: ../../TShockAPI/Commands.cs:562 msgid "Sends an action message to everyone." msgstr "向所有人发送一个动作消息。" -#: ../../TShockAPI/Commands.cs:431 +#: ../../TShockAPI/Commands.cs:436 msgid "Sends you to the world's spawn point." msgstr "将你传送到世界的出生点。" -#: ../../TShockAPI/Commands.cs:426 +#: ../../TShockAPI/Commands.cs:431 msgid "Sends you to your spawn point." msgstr "将你传送到你的出生点。" -#: ../../TShockAPI/TShock.cs:738 +#: ../../TShockAPI/TShock.cs:744 msgid "Server console interrupted!" -msgstr "服务器后台中断关服。" +msgstr "服务器后台中断关服!" #: ../../TShockAPI/Configuration/TShockConfig.cs:337 msgid "Server is full" @@ -5387,55 +5429,55 @@ msgstr "服务器已满" msgid "Server is full. No reserved slots open." msgstr "服务器已满(包括预留空间)。" -#: ../../TShockAPI/TShock.cs:1300 +#: ../../TShockAPI/TShock.cs:1306 msgid "Server is shutting down..." -msgstr "服务器正在关闭中" +msgstr "服务器正在关闭中..." #: ../../TShockAPI/BackupManager.cs:73 msgid "Server map saving..." msgstr "正在保存服务器地图..." -#: ../../TShockAPI/Commands.cs:4407 +#: ../../TShockAPI/Commands.cs:4422 #, csharp-format msgid "Server password has been changed to: {0}." msgstr "服务器语言已更改为: {0}。" -#: ../../TShockAPI/Commands.cs:2040 -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2054 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down: " msgstr "正在关闭服务器:" -#: ../../TShockAPI/Commands.cs:2040 +#: ../../TShockAPI/Commands.cs:2054 msgid "Server shutting down!" msgstr "正在关闭服务器!" -#: ../../TShockAPI/Commands.cs:2046 +#: ../../TShockAPI/Commands.cs:2060 msgid "Server shutting down." msgstr "正在关闭服务器。" -#: ../../TShockAPI/Commands.cs:959 +#: ../../TShockAPI/Commands.cs:969 msgid "Server side characters are enabled. You need to be logged-in to play." -msgstr "服务器角色存档(ssc)已启用。您需要登录才能游玩。" +msgstr "服务器角色存档(ssc)已启用。你需要登录才能游玩。" -#: ../../TShockAPI/TShock.cs:1691 +#: ../../TShockAPI/TShock.cs:1709 #, csharp-format msgid "Server side characters is enabled! Please {0}register or {0}login to play!" -msgstr "服务器端存档已启用,请使用{0}register 注册或使用{0}login 登录游玩。" +msgstr "服务器端存档已启用,请使用{0}register 注册或使用{0}login 登录游玩!" -#: ../../TShockAPI/Commands.cs:1813 +#: ../../TShockAPI/Commands.cs:1827 #, csharp-format msgid "Server-side character data from \"{0}\" has been replaced by their current local data." -msgstr "\"{0}\" 的SSC云存档已被成功替换为本地角色数据" +msgstr "\"{0}\" 的SSC云存档已被成功替换为本地角色数据。" -#: ../../TShockAPI/Commands.cs:1773 +#: ../../TShockAPI/Commands.cs:1787 msgid "Server-side characters is disabled." msgstr "服务端存档已被禁用。" -#: ../../TShockAPI/Commands.cs:5185 +#: ../../TShockAPI/Commands.cs:5201 msgid "set <1/2> - Sets the temporary region points." -msgstr "set <1/2> - 设置临时的区域点" +msgstr "set <1/2> - 设置临时的区域点。" -#: ../../TShockAPI/Commands.cs:4697 +#: ../../TShockAPI/Commands.cs:4713 #, csharp-format msgid "Set region {0}." msgstr "设置领地{0}." @@ -5445,31 +5487,32 @@ msgstr "设置领地{0}." msgid "Set temp point {0}." msgstr "设置临时的点{0}。" -#: ../../TShockAPI/Commands.cs:510 +#: ../../TShockAPI/Commands.cs:515 msgid "Sets the dungeon's position to your location." msgstr "把地牢的位置设置为你的位置。" -#: ../../TShockAPI/Commands.cs:401 +#: ../../TShockAPI/Commands.cs:406 msgid "Sets the maximum number of NPCs." msgstr "设置NPC的最大数量。" -#: ../../TShockAPI/Commands.cs:415 +#: ../../TShockAPI/Commands.cs:420 msgid "Sets the spawn rate of NPCs." msgstr "设置NPC的生成率。" -#: ../../TShockAPI/Commands.cs:518 +#: ../../TShockAPI/Commands.cs:523 msgid "Sets the world time." msgstr "设置世界时间。" -#: ../../TShockAPI/Commands.cs:505 +#: ../../TShockAPI/Commands.cs:510 msgid "Sets the world's spawn point to your location." msgstr "将世界的出生点设置为你的位置。" -#: ../../TShockAPI/Commands.cs:4427 +#: ../../TShockAPI/Commands.cs:4442 msgid "Settling liquids." msgstr "清理液体。" -#: ../../TShockAPI/DB/UserManager.cs:182 +#: ../../TShockAPI/DB/UserManager.cs:185 +#: ../../TShockAPI/DB/UserManager.cs:216 msgid "SetUserGroup SQL returned an error" msgstr "SetUserGroup 方法在执行 SQL 语句时返回了一个错误" @@ -5481,256 +5524,256 @@ msgstr "SetUserPassword 方法在执行SQL语句时发生了一个错误" msgid "SetUserUUID SQL returned an error" msgstr "SetUserUUID 方法在执行 SQL 语句时发生了一个错误" -#: ../../TShockAPI/Commands.cs:6612 +#: ../../TShockAPI/Commands.cs:6628 msgid "Shadewood Tree" msgstr "乌木树" -#: ../../TShockAPI/Commands.cs:5386 +#: ../../TShockAPI/Commands.cs:5402 msgid "Share your server, talk with admins, and chill on GitHub & Discord. -- https://tshock.co/" -msgstr "在GitHub & Discord上分享您的服务器,还可以与管理员沟通。 --https://tshock.co/" +msgstr "在GitHub & Discord上分享你的服务器,还可以与管理员沟通。 --https://tshock.co/" -#: ../../TShockAPI/Commands.cs:4975 +#: ../../TShockAPI/Commands.cs:4991 msgid "Shared with groups: " msgstr "分享至用户组: " -#: ../../TShockAPI/Commands.cs:4964 +#: ../../TShockAPI/Commands.cs:4980 msgid "Shared with: " msgstr "已分享给: " -#: ../../TShockAPI/Commands.cs:609 +#: ../../TShockAPI/Commands.cs:614 msgid "Shows a command's aliases." msgstr "显示指令的别名。" -#: ../../TShockAPI/Commands.cs:332 +#: ../../TShockAPI/Commands.cs:337 msgid "Shows information about a player." msgstr "显示一个玩家的信息。" -#: ../../TShockAPI/Commands.cs:262 +#: ../../TShockAPI/Commands.cs:267 msgid "Shows information about a user." msgstr "显示一个用户的信息。" -#: ../../TShockAPI/Commands.cs:526 +#: ../../TShockAPI/Commands.cs:531 msgid "Shows information about the current world." msgstr "显示当前世界的信息。" -#: ../../TShockAPI/Commands.cs:621 +#: ../../TShockAPI/Commands.cs:626 msgid "Shows the currently connected players." msgstr "显示当前在线的玩家。" -#: ../../TShockAPI/Commands.cs:617 +#: ../../TShockAPI/Commands.cs:622 msgid "Shows the message of the day." msgstr "显示MOTD。" -#: ../../TShockAPI/Commands.cs:578 +#: ../../TShockAPI/Commands.cs:583 msgid "Shows the server information." msgstr "显示服务器信息。" -#: ../../TShockAPI/Commands.cs:625 +#: ../../TShockAPI/Commands.cs:630 msgid "Shows the server's rules." msgstr "显示服务器规则。" -#: ../../TShockAPI/Commands.cs:372 +#: ../../TShockAPI/Commands.cs:377 msgid "Shows the TShock version." msgstr "显示TShock版本。" -#: ../../TShockAPI/Commands.cs:356 +#: ../../TShockAPI/Commands.cs:361 msgid "Shuts down the server while saving." msgstr "保存并关闭服务器" -#: ../../TShockAPI/Commands.cs:360 +#: ../../TShockAPI/Commands.cs:365 msgid "Shuts down the server without saving." msgstr "关闭服务器但不保存数据。" -#: ../../TShockAPI/TShock.cs:735 +#: ../../TShockAPI/TShock.cs:741 msgid "Shutting down safely. To force shutdown, send SIGINT (CTRL + C) again." msgstr "正在进行安全关闭。如果希望强制关闭,请发送SIGINT信号(例如按下Ctrl+C快捷键)。" -#: ../../TShockAPI/Commands.cs:1234 +#: ../../TShockAPI/Commands.cs:1248 #, csharp-format msgid "Size: {0}x{1}" msgstr "大小:{0}x{1}" -#: ../../TShockAPI/Commands.cs:2699 +#: ../../TShockAPI/Commands.cs:2714 msgid "Skeletron" msgstr "骷髅王" -#: ../../TShockAPI/Commands.cs:2687 +#: ../../TShockAPI/Commands.cs:2702 msgid "Skeletron Prime" msgstr "机械骷髅王" -#: ../../TShockAPI/TSPlayer.cs:1069 +#: ../../TShockAPI/TSPlayer.cs:1126 #, csharp-format msgid "Skipping SSC save (due to tshock.ignore.ssc) for {0}" msgstr "由于{0}拥有tshock.ignore.ssc权限,跳过服务端存档" -#: ../../TShockAPI/Commands.cs:574 +#: ../../TShockAPI/Commands.cs:579 msgid "Slaps a player, dealing damage." msgstr "击打一名玩家,造成伤害。" -#: ../../TShockAPI/Commands.cs:2446 +#: ../../TShockAPI/Commands.cs:2461 msgid "Slime rain cannot be activated during normal rain. Stop the normal rainstorm and try again." msgstr "在下普通的雨时不能开启史莱姆雨。请在停止下雨后再次尝试。" -#: ../../TShockAPI/Commands.cs:1062 +#: ../../TShockAPI/Commands.cs:1072 #, csharp-format msgid "Sorry, {0} was already taken by another person." msgstr "抱歉,{0}已被他人占用。" -#: ../../TShockAPI/Commands.cs:996 -#: ../../TShockAPI/Commands.cs:1069 +#: ../../TShockAPI/Commands.cs:1006 +#: ../../TShockAPI/Commands.cs:1079 #, csharp-format msgid "Sorry, an error occurred: {0}." msgstr "抱歉,一个错误发生了: {0}" -#: ../../TShockAPI/Commands.cs:4378 +#: ../../TShockAPI/Commands.cs:4393 msgid "Spawn has now been set at your location." msgstr "世界的生成点已设置在你的位置。" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now open." msgstr "出生点已经开放。" -#: ../../TShockAPI/Commands.cs:5230 +#: ../../TShockAPI/Commands.cs:5246 msgid "Spawn is now protected." msgstr "出生点现在已经被保护了。" -#: ../../TShockAPI/Commands.cs:2874 +#: ../../TShockAPI/Commands.cs:2889 #, csharp-format msgid "Spawned {0} {1} time." msgid_plural "Spawned {0} {1} times." -msgstr[0] "生成了 {0} {1} 次" +msgstr[0] "生成了 {0} {1} 次。" -#: ../../TShockAPI/Commands.cs:2891 +#: ../../TShockAPI/Commands.cs:2906 msgid "Spawned a Wall of Flesh." msgstr "生成了血肉墙。" -#: ../../TShockAPI/Commands.cs:406 -msgid "Spawns a number of bosses around you." -msgstr "在您的周围生成一些Boss。" - #: ../../TShockAPI/Commands.cs:411 -msgid "Spawns a number of mobs around you." -msgstr "在您的周围生成一些生物。" +msgid "Spawns a number of bosses around you." +msgstr "在你的周围生成一些Boss。" -#: ../../TShockAPI/Commands.cs:346 +#: ../../TShockAPI/Commands.cs:416 +msgid "Spawns a number of mobs around you." +msgstr "在你的周围生成一些生物。" + +#: ../../TShockAPI/Commands.cs:351 msgid "Spawns fireworks at a player." msgstr "在一个玩家身上生成烟花。" -#: ../../TShockAPI/Rest/Rest.cs:433 +#: ../../TShockAPI/Rest/Rest.cs:432 msgid "Specified API endpoint doesn't exist. Refer to the documentation for a list of valid endpoints." msgstr "指定的API端点不存在。请参阅文档以获取有效的端点列表。" -#: ../../TShockAPI/SqlLog.cs:346 +#: ../../TShockAPI/SqlLog.cs:344 #, csharp-format msgid "SQL log failed at: {0}. {1}" msgstr "SQL 日志失败: {0}. {1}" -#: ../../TShockAPI/SqlLog.cs:317 +#: ../../TShockAPI/SqlLog.cs:315 #, csharp-format msgid "SQL Log insert query failed: {0}" msgstr "SQL 日志插入查询失败: {0}" -#: ../../TShockAPI/Commands.cs:5667 +#: ../../TShockAPI/Commands.cs:5683 msgid "SSC must be enabled to use this command." msgstr "只有在启用服务器端存档后才可以使用这个指令。" -#: ../../TShockAPI/TSPlayer.cs:434 +#: ../../TShockAPI/TSPlayer.cs:485 #, csharp-format msgid "Stack cheat detected. Remove armor {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除盔甲 {0}({1}),然后重新加入" +msgstr "检测到物品堆叠作弊.请移除盔甲 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:577 +#: ../../TShockAPI/TSPlayer.cs:628 #, csharp-format msgid "Stack cheat detected. Remove Defender's Forge item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除护卫熔炉内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除护卫熔炉内物品 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:454 +#: ../../TShockAPI/TSPlayer.cs:505 #, csharp-format msgid "Stack cheat detected. Remove dye {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除染料 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除染料 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:414 -#: ../../TShockAPI/TSPlayer.cs:474 +#: ../../TShockAPI/TSPlayer.cs:465 +#: ../../TShockAPI/TSPlayer.cs:525 #, csharp-format msgid "Stack cheat detected. Remove item {0} ({1}) and then rejoin." msgstr "检测到物品堆叠作弊。请移除物品 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:494 +#: ../../TShockAPI/TSPlayer.cs:545 #, csharp-format msgid "Stack cheat detected. Remove item dye {0} ({1}) and then rejoin." msgstr "检测到物品堆叠作弊。请移除物品染料 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:618 -#: ../../TShockAPI/TSPlayer.cs:638 +#: ../../TShockAPI/TSPlayer.cs:669 +#: ../../TShockAPI/TSPlayer.cs:689 #, csharp-format msgid "Stack cheat detected. Remove Loadout 1 item {0} ({1}) and then rejoin." msgstr "检测到物品堆叠作弊。请移除装备栏1内物品 {0}({1}),然后重新加入。" -#: ../../TShockAPI/TSPlayer.cs:658 -#: ../../TShockAPI/TSPlayer.cs:678 +#: ../../TShockAPI/TSPlayer.cs:709 +#: ../../TShockAPI/TSPlayer.cs:729 #, csharp-format msgid "Stack cheat detected. Remove Loadout 2 item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除装备栏2内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除装备栏2内物品 {0}({1}),然后重新加入." -#: ../../TShockAPI/TSPlayer.cs:698 -#: ../../TShockAPI/TSPlayer.cs:718 +#: ../../TShockAPI/TSPlayer.cs:749 +#: ../../TShockAPI/TSPlayer.cs:769 #, csharp-format msgid "Stack cheat detected. Remove Loadout 3 item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除装备栏3内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除装备栏3内物品 {0}({1}),然后重新加入." -#: ../../TShockAPI/TSPlayer.cs:515 +#: ../../TShockAPI/TSPlayer.cs:566 #, csharp-format msgid "Stack cheat detected. Remove piggy-bank item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除存钱罐内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除存钱罐内物品 {0}({1}),然后重新加入." -#: ../../TShockAPI/TSPlayer.cs:536 +#: ../../TShockAPI/TSPlayer.cs:587 #, csharp-format msgid "Stack cheat detected. Remove safe item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除保险箱内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除保险箱内物品 {0}({1}),然后重新加入." -#: ../../TShockAPI/TSPlayer.cs:556 +#: ../../TShockAPI/TSPlayer.cs:607 #, csharp-format msgid "Stack cheat detected. Remove trash item {0} ({1}) and then rejoin." -msgstr "检测到物品堆叠作弊.请移除垃圾桶内物品 {0}({1}),然后重新加入." +msgstr "检测到物品堆叠作弊。请移除垃圾桶内物品 {0}({1}),然后重新加入." -#: ../../TShockAPI/TSPlayer.cs:598 +#: ../../TShockAPI/TSPlayer.cs:649 #, csharp-format msgid "Stack cheat detected. Remove Void Vault item {0} ({1}) and then rejoin." msgstr "检测到物品堆叠作弊。请移除虚空储物柜内物品 {0}({1}),然后重新加入。" -#: ../../TShockAPI/Commands.cs:2279 +#: ../../TShockAPI/Commands.cs:2294 msgid "Started a blood moon event." msgstr " 开启了血月。" -#: ../../TShockAPI/Commands.cs:2264 +#: ../../TShockAPI/Commands.cs:2279 msgid "Started a full moon event." -msgstr " 开启了满月。" +msgstr "已开启满月。" -#: ../../TShockAPI/Commands.cs:2306 +#: ../../TShockAPI/Commands.cs:2321 msgid "Started an eclipse." -msgstr " 开启了日食。" +msgstr "已开启日食。" -#: ../../TShockAPI/TShock.cs:927 +#: ../../TShockAPI/TShock.cs:933 msgid "Startup parameter overrode maximum player slot configuration value." msgstr "启动参数覆盖最大玩家数配置。" -#: ../../TShockAPI/TShock.cs:909 +#: ../../TShockAPI/TShock.cs:915 msgid "Startup parameter overrode REST enable." -msgstr "启动参数覆盖 REST 启用状态。" +msgstr "启动参数覆盖REST启用状态。" -#: ../../TShockAPI/TShock.cs:918 +#: ../../TShockAPI/TShock.cs:924 msgid "Startup parameter overrode REST port." -msgstr "启动参数覆盖 REST 端口。" +msgstr "启动参数覆盖REST端口。" -#: ../../TShockAPI/TShock.cs:901 +#: ../../TShockAPI/TShock.cs:907 msgid "Startup parameter overrode REST token." -msgstr "启动参数覆盖 REST 令牌。" +msgstr "启动参数覆盖REST令牌。" -#: ../../TShockAPI/Commands.cs:2310 +#: ../../TShockAPI/Commands.cs:2325 msgid "Stopped an eclipse." msgstr "关闭了日食。" -#: ../../TShockAPI/Commands.cs:2283 +#: ../../TShockAPI/Commands.cs:2298 msgid "Stopped the current blood moon event." msgstr "关闭了血月。" @@ -5738,213 +5781,209 @@ msgstr "关闭了血月。" msgid "Successful login" msgstr "登录成功" -#: ../../TShockAPI/Commands.cs:3448 +#: ../../TShockAPI/Commands.cs:3463 msgid "suffix - Changes a group's suffix." msgstr "suffix <组名> <后缀> - 修改一个组的聊天后缀." -#: ../../TShockAPI/Commands.cs:3549 +#: ../../TShockAPI/Commands.cs:3564 #, csharp-format msgid "Suffix of \"{0}\" is \"{1}\"." -msgstr "组\"{0}\"的聊天后缀 \"{1}\"" +msgstr "组\"{0}\"的聊天后缀 \"{1}\"。" -#: ../../TShockAPI/Commands.cs:3537 +#: ../../TShockAPI/Commands.cs:3552 #, csharp-format msgid "Suffix of group \"{0}\" set to \"{1}\"." -msgstr "组\"{0}\"的聊天后缀已被设为\"{1}\"" +msgstr "组\"{0}\"的聊天后缀已被设为\"{1}\"。" -#: ../../TShockAPI/Commands.cs:5798 +#: ../../TShockAPI/Commands.cs:5814 msgid "Sync'd!" -msgstr "已同步!" +msgstr "已同步周围图格!" #: ../../TShockAPI/Handlers/SyncTilePickingHandler.cs:23 #, csharp-format msgid "SyncTilePickingHandler: X and Y position is out of world bounds! - From {0}" msgstr "SyncTilePickingHander: X 和 Y 位置超越了世界边界! - 来自 {0}" -#: ../../TShockAPI/Commands.cs:3029 +#: ../../TShockAPI/Commands.cs:3044 #, csharp-format msgid "Teleported {0} to {1}." msgstr "已将{0}传送至{1}。" -#: ../../TShockAPI/Commands.cs:3094 +#: ../../TShockAPI/Commands.cs:3109 #, csharp-format msgid "Teleported {0} to yourself." msgstr "已将 {0} 传送至你的位置." -#: ../../TShockAPI/Commands.cs:3008 +#: ../../TShockAPI/Commands.cs:3023 #, csharp-format msgid "Teleported everyone to {0}." msgstr "已将所有人传送至 {0}。" -#: ../../TShockAPI/Commands.cs:3081 +#: ../../TShockAPI/Commands.cs:3096 msgid "Teleported everyone to yourself." msgstr "所有人已被传送至你的位置." -#: ../../TShockAPI/Commands.cs:3183 +#: ../../TShockAPI/Commands.cs:3198 #, csharp-format msgid "Teleported to {0}, {1}." msgstr "已将你传送至坐标({0}, {1})" -#: ../../TShockAPI/Commands.cs:2954 +#: ../../TShockAPI/Commands.cs:2969 #, csharp-format msgid "Teleported to {0}." msgstr "成功传送至 {0}." -#: ../../TShockAPI/Commands.cs:3137 +#: ../../TShockAPI/Commands.cs:3152 #, csharp-format msgid "Teleported to the '{0}'." -msgstr "成功传送至 '{0}' 附近" +msgstr "成功传送至 '{0}' 附近。" -#: ../../TShockAPI/Commands.cs:2923 +#: ../../TShockAPI/Commands.cs:2938 msgid "Teleported to the map's spawn point." msgstr "已传送至地图的出生点。" -#: ../../TShockAPI/Commands.cs:2917 +#: ../../TShockAPI/Commands.cs:2932 msgid "Teleported to your spawn point (home)." msgstr "已传送到你的出生点(家)。" -#: ../../TShockAPI/Commands.cs:436 +#: ../../TShockAPI/Commands.cs:441 msgid "Teleports a player to another player." msgstr "将一个玩家传送至另一个玩家。" -#: ../../TShockAPI/Commands.cs:441 -msgid "Teleports a player to yourself." -msgstr "将一个玩家传送到您。" - -#: ../../TShockAPI/Commands.cs:582 -msgid "Teleports you to a warp point or manages warps." -msgstr "将您传送到一个传送点或者管理传送点。" - #: ../../TShockAPI/Commands.cs:446 -msgid "Teleports you to an npc." -msgstr "将您传送到一个npc。" +msgid "Teleports a player to yourself." +msgstr "将一个玩家传送到你。" + +#: ../../TShockAPI/Commands.cs:587 +msgid "Teleports you to a warp point or manages warps." +msgstr "将你传送到一个传送点或者管理传送点。" #: ../../TShockAPI/Commands.cs:451 +msgid "Teleports you to an npc." +msgstr "将你传送到一个npc。" + +#: ../../TShockAPI/Commands.cs:456 msgid "Teleports you to tile coordinates." -msgstr "将您传送到一个图格坐标。" +msgstr "将你传送到一个图格坐标。" -#: ../../TShockAPI/Commands.cs:324 +#: ../../TShockAPI/Commands.cs:329 msgid "Temporarily elevates you to Super Admin." -msgstr "暂时将您提升为超级管理员。" +msgstr "暂时将你提升为超级管理员。" -#: ../../TShockAPI/Commands.cs:320 +#: ../../TShockAPI/Commands.cs:325 msgid "Temporarily sets another player's group." msgstr "暂时设置另外的组。" -#: ../../TShockAPI/Commands.cs:4759 +#: ../../TShockAPI/Commands.cs:4775 msgid "Temporary region set points have been removed." msgstr "临时领地设置点已被删除。" -#: ../../TShockAPI/Commands.cs:5411 +#: ../../TShockAPI/Commands.cs:5427 msgid "Temporary system access has been given to you, so you can run one command." msgstr "你已获得临时最高权限。" -#: ../../TShockAPI/Commands.cs:5387 +#: ../../TShockAPI/Commands.cs:5403 msgid "Thank you for using TShock for Terraria!" msgstr "欢迎使用泰拉瑞亚TShock服务器!" -#: ../../TShockAPI/Commands.cs:1190 +#: ../../TShockAPI/Commands.cs:1200 msgid "That group does not exist." msgstr "此用户组不存在。" -#: ../../TShockAPI/DB/BanManager.cs:258 +#: ../../TShockAPI/DB/BanManager.cs:256 msgid "The ban is invalid because a current ban for this identifier already exists." msgstr "目前已经封禁了符合这个匹配代码的玩家,无法再次封禁。" -#: ../../TShockAPI/DB/BanManager.cs:295 +#: ../../TShockAPI/DB/BanManager.cs:293 msgid "The ban was not valid for an unknown reason." msgstr "封禁无效,因为没有确切的原因。" -#: ../../TShockAPI/Commands.cs:2634 +#: ../../TShockAPI/Commands.cs:2649 msgid "the Brain of Cthulhu" msgstr "克苏鲁之脑" -#: ../../TShockAPI/Commands.cs:4522 +#: ../../TShockAPI/Commands.cs:4537 #, csharp-format msgid "The current time is {0}:{1:D2}." -msgstr "当前时间是 {0}:{1:D2}。" +msgstr "当前时间是{0}:{1:D2}。" -#: ../../TShockAPI/DB/GroupManager.cs:218 +#: ../../TShockAPI/DB/GroupManager.cs:251 msgid "The default usergroup could not be found." msgstr "未找到默认用户组(default)。" -#: ../../TShockAPI/DB/GroupManager.cs:217 +#: ../../TShockAPI/DB/GroupManager.cs:250 msgid "The default usergroup could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "未找到默认用户组(默认为default)。这可能是配置文件中出现了错别字,也可能是该用户组已被重命名或删除。" -#: ../../TShockAPI/Commands.cs:3174 +#: ../../TShockAPI/Commands.cs:3189 msgid "The destination coordinates provided don't look like valid numbers." msgstr "提供的目的地坐标不是有效的数字." -#: ../../TShockAPI/Commands.cs:3334 #: ../../TShockAPI/Commands.cs:3349 +#: ../../TShockAPI/Commands.cs:3364 #, csharp-format msgid "The destination warp, {0}, was not found." msgstr "没有找到目标传送点 {0}" -#: ../../TShockAPI/Commands.cs:2641 +#: ../../TShockAPI/Commands.cs:2656 msgid "the Destroyer" msgstr "毁灭者" -#: ../../TShockAPI/GetDataHandlers.cs:3427 -msgid "The Dungeon Guardian returned you to your spawn point." -msgstr "地牢守卫将你送回出生点。" - -#: ../../TShockAPI/Commands.cs:4386 +#: ../../TShockAPI/Commands.cs:4401 msgid "The dungeon's position has now been set at your location." -msgstr "地狱的位置已经设置在你的位置。" +msgstr "地牢的位置已经设置在你的位置。" -#: ../../TShockAPI/Commands.cs:2655 +#: ../../TShockAPI/Commands.cs:2670 msgid "the Eater of Worlds" msgstr "世界吞噬怪" -#: ../../TShockAPI/Commands.cs:2736 +#: ../../TShockAPI/Commands.cs:2751 msgid "the Empress of Light" msgstr "光之女皇" -#: ../../TShockAPI/Commands.cs:2663 +#: ../../TShockAPI/Commands.cs:2678 msgid "the Eye of Cthulhu" msgstr "克苏鲁之眼" -#: ../../TShockAPI/Commands.cs:2762 +#: ../../TShockAPI/Commands.cs:2777 msgid "the Flying Dutchman" msgstr "荷兰飞盗船" -#: ../../TShockAPI/Commands.cs:2668 +#: ../../TShockAPI/Commands.cs:2683 msgid "the Golem" msgstr "石巨人" -#: ../../TShockAPI/DB/GroupManager.cs:595 +#: ../../TShockAPI/DB/GroupManager.cs:631 #, csharp-format msgid "The group {0} appeared more than once. Keeping current group settings." -msgstr "用户组 {0} 出现了多次。保持当前用户组设置。" +msgstr "数据库中的用户组\"{0}\"重复出现了多次,将使用最早出现的数据。" -#: ../../TShockAPI/DB/GroupManager.cs:212 +#: ../../TShockAPI/DB/GroupManager.cs:245 msgid "The guest group could not be found." msgstr "未找到访客(guest)用户组。" -#: ../../TShockAPI/DB/GroupManager.cs:211 +#: ../../TShockAPI/DB/GroupManager.cs:244 msgid "The guest group could not be found. This may indicate a typo in the configuration file, or that the group was renamed or deleted." msgstr "未找到访客用户组(默认为guest)。这可能是配置文件中出现了错别字,也可能是该用户组已被重命名或删除。" -#: ../../TShockAPI/Commands.cs:2788 +#: ../../TShockAPI/Commands.cs:2803 msgid "the Ice Queen" msgstr "冰雪女王" -#: ../../TShockAPI/Commands.cs:5376 +#: ../../TShockAPI/Commands.cs:5392 msgid "The initial setup system is disabled. This incident has been logged." msgstr "管理认证系统已关闭,你的行为已被记录。" -#: ../../TShockAPI/Commands.cs:6097 +#: ../../TShockAPI/Commands.cs:6113 #, csharp-format msgid "The item type {0} is invalid." -msgstr "物品类型{0}是无效的" +msgstr "物品类型{0}是无效的。" -#: ../../TShockAPI/Commands.cs:2675 +#: ../../TShockAPI/Commands.cs:2690 msgid "the King Slime" msgstr "史莱姆王" -#: ../../TShockAPI/Commands.cs:2750 +#: ../../TShockAPI/Commands.cs:2765 msgid "the Lunatic Cultist" msgstr "拜月教邪教徒" @@ -5956,31 +5995,31 @@ msgstr "属性LineFormatter中的代码抛出了异常,查看异常以获取 msgid "The method represented by termFormatter has thrown an exception. See inner exception for details." msgstr "参数termFormater中的代码抛出了异常,查看异常以获取详情。" -#: ../../TShockAPI/Commands.cs:2729 +#: ../../TShockAPI/Commands.cs:2744 msgid "the Moon Lord" msgstr "月亮领主" -#: ../../TShockAPI/Commands.cs:3410 +#: ../../TShockAPI/Commands.cs:3425 msgid "The permissions have been added to all of the groups in the system." -msgstr "已添加该权限到系统中的所有组" +msgstr "已添加该权限到系统中的所有组。" -#: ../../TShockAPI/Commands.cs:3715 +#: ../../TShockAPI/Commands.cs:3730 msgid "The permissions have been removed from all of the groups in the system." -msgstr "已移除系统中所有组的该权限" +msgstr "已移除系统中所有组的该权限。" -#: ../../TShockAPI/Commands.cs:1860 +#: ../../TShockAPI/Commands.cs:1874 msgid "The player's character data was successfully uploaded from their initial connection." -msgstr "玩家来自最初连接的角色数据上传成功" +msgstr "玩家来自最初连接的角色数据上传成功。" -#: ../../TShockAPI/Commands.cs:2772 +#: ../../TShockAPI/Commands.cs:2787 msgid "the Pumpking" msgstr "南瓜王" -#: ../../TShockAPI/Commands.cs:2693 +#: ../../TShockAPI/Commands.cs:2708 msgid "the Queen Bee" msgstr "蜂王" -#: ../../TShockAPI/Commands.cs:2742 +#: ../../TShockAPI/Commands.cs:2757 msgid "the Queen Slime" msgstr "史莱姆皇后" @@ -5992,7 +6031,7 @@ msgstr "REST 授权令牌" msgid "The server is out of date. Latest version: " msgstr "服务器版本更新,最新版为 " -#: ../../TShockAPI/Commands.cs:4495 +#: ../../TShockAPI/Commands.cs:4510 msgid "The spawn rate you provided is out-of-range or not a number." msgstr "你提供的生成率已超出范围或不是数字。" @@ -6000,26 +6039,26 @@ msgstr "你提供的生成率已超出范围或不是数字。" msgid "The specified token queued for destruction failed to be deleted." msgstr "指定销毁队列中的令牌未能被删除。" -#: ../../TShockAPI/Commands.cs:1869 +#: ../../TShockAPI/Commands.cs:1883 msgid "The target player has not logged in yet." msgstr "目标玩家尚未登录" -#: ../../TShockAPI/Commands.cs:1849 +#: ../../TShockAPI/Commands.cs:1863 msgid "The targeted user cannot have their data uploaded, because they are not a player." msgstr "不能上传目标用户的数据, 因为目标用户不是玩家." -#: ../../TShockAPI/Commands.cs:2707 +#: ../../TShockAPI/Commands.cs:2722 msgid "the Twins" msgstr "双子魔眼" -#: ../../TShockAPI/Commands.cs:1136 +#: ../../TShockAPI/Commands.cs:1146 #, csharp-format msgid "The user {0} does not exist! Therefore, the account was not deleted." -msgstr "没有找到名为 {0} 的用户! 所以该账号没有被删除" +msgstr "没有找到名为 {0} 的用户! 所以该账号没有被删除。" #: ../../TShockAPI/PaginationTools.cs:95 msgid "The value has to be greater than or equal to zero." -msgstr "值应大于等于0" +msgstr "值应大于等于0。" #: ../../TShockAPI/PaginationTools.cs:81 msgid "The value has to be greater than zero." @@ -6029,52 +6068,52 @@ msgstr "该值因大于零。" msgid "The versions of plugins you requested aren't compatible with eachother." msgstr "你所选择的插件版本不兼容。" -#: ../../TShockAPI/Commands.cs:2722 +#: ../../TShockAPI/Commands.cs:2737 msgid "the Wall of Flesh" msgstr "血肉墙" -#: ../../TShockAPI/Bouncer.cs:805 +#: ../../TShockAPI/Bouncer.cs:829 msgid "The world's chest limit has been reached - unable to place more." msgstr "当前世界宝箱数量已达上限,无法放置更多宝箱。" -#: ../../TShockAPI/Commands.cs:1672 +#: ../../TShockAPI/Commands.cs:1686 msgid "There are currently no active bans." msgstr "目前没有被封禁的玩家。" -#: ../../TShockAPI/Commands.cs:2093 +#: ../../TShockAPI/Commands.cs:2108 msgid "There are currently no active REST users." msgstr "当前没有任何有效的临时REST用户。" -#: ../../TShockAPI/Commands.cs:1434 +#: ../../TShockAPI/Commands.cs:1448 msgid "There are currently no available identifiers." msgstr "目前没有可选的匹配代码。" -#: ../../TShockAPI/Commands.cs:4001 +#: ../../TShockAPI/Commands.cs:4016 msgid "There are currently no banned items." msgstr "服务器目前还没有被禁用的物品。" -#: ../../TShockAPI/Commands.cs:4179 +#: ../../TShockAPI/Commands.cs:4194 msgid "There are currently no banned projectiles." -msgstr "目前还没有被禁用的弹射物。" +msgstr "目前还没有被禁用的射弹。" -#: ../../TShockAPI/Commands.cs:4355 +#: ../../TShockAPI/Commands.cs:4370 msgid "There are currently no banned tiles." msgstr "服务器目前还没有被禁用的方块。" -#: ../../TShockAPI/Commands.cs:3776 +#: ../../TShockAPI/Commands.cs:3791 #, csharp-format msgid "There are currently no permissions for {0}." -msgstr "目前还没有{0}的权限" +msgstr "目前还没有{0}的权限。" -#: ../../TShockAPI/Commands.cs:5341 +#: ../../TShockAPI/Commands.cs:5357 msgid "There are currently no players online." msgstr "目前没有在线的玩家。" -#: ../../TShockAPI/Commands.cs:4917 +#: ../../TShockAPI/Commands.cs:4933 msgid "There are currently no regions defined." msgstr "服务器没有设置任何领地。" -#: ../../TShockAPI/Commands.cs:3230 +#: ../../TShockAPI/Commands.cs:3245 msgid "There are currently no warps defined." msgstr "服务器没有设置任何传送点。" @@ -6086,13 +6125,13 @@ msgstr "这个位置没有受到保护的区域。" msgid "There are no regions at this point." msgstr "目前还没有任何区域在这个点。" -#: ../../TShockAPI/Commands.cs:2713 +#: ../../TShockAPI/Commands.cs:2728 msgid "There is already a Wall of Flesh." msgstr "血肉墙已存在。" -#: ../../TShockAPI/Commands.cs:936 +#: ../../TShockAPI/Commands.cs:946 msgid "There was an error processing your login or authentication related request." -msgstr "处理你的登录或认证请求时出错" +msgstr "处理你的登录或认证请求时出错。" #: ../../TShockPluginManager/NugetCLI.cs:121 msgid "There was an issue figuring out what to download." @@ -6108,349 +6147,362 @@ msgid "This is the plugin you requested to install." msgid_plural "These are the plugins you requested to install" msgstr[0] "以上为即将安装的插件。" -#: ../../TShockAPI/TShock.cs:1013 -#: ../../TShockAPI/TShock.cs:1023 +#: ../../TShockAPI/TShock.cs:1019 +#: ../../TShockAPI/TShock.cs:1029 #, csharp-format msgid "This token will display until disabled by verification. ({0}setup)" -msgstr "此令牌将在验证之前一直显示。({0}setup )" +msgstr "在{0}setup认证系统生效期间,你将一直能看到这个认证代码。" -#: ../../TShockAPI/Commands.cs:4241 -#: ../../TShockAPI/Commands.cs:4299 +#: ../../TShockAPI/Commands.cs:4256 +#: ../../TShockAPI/Commands.cs:4314 #, csharp-format msgid "Tile {0} is not banned." -msgstr "方块{0}未被禁止" +msgstr "方块{0}未被禁止。" -#: ../../TShockAPI/Commands.cs:4335 +#: ../../TShockAPI/Commands.cs:4350 msgid "Tile Ban Sub-Commands ({{0}}/{{1}}):" msgstr "封禁物块的子命令({{0}}/{{1}}):" -#: ../../TShockAPI/Commands.cs:4353 +#: ../../TShockAPI/Commands.cs:4368 msgid "Tile bans ({{0}}/{{1}}):" msgstr "封禁物块 ({{0}}/{{1}}):" -#: ../../TShockAPI/Bouncer.cs:918 +#: ../../TShockAPI/Bouncer.cs:942 #, csharp-format msgid "Tile kill threshold exceeded {0}." msgstr "物块破坏速度超过每秒{0}个" -#: ../../TShockAPI/Bouncer.cs:936 +#: ../../TShockAPI/Bouncer.cs:960 #, csharp-format msgid "Tile place threshold exceeded {0}." msgstr "物块放置速度超过每秒{0}个" -#: ../../TShockAPI/Commands.cs:6420 +#: ../../TShockAPI/Commands.cs:6436 #, csharp-format msgid "To buff a player without them knowing, use {0} instead of {1}" msgstr "如果想隐藏给对方的提示,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:6015 -#: ../../TShockAPI/Commands.cs:6311 +#: ../../TShockAPI/Commands.cs:6031 +#: ../../TShockAPI/Commands.cs:6327 #, csharp-format msgid "To execute this command silently, use {0} instead of {1}" msgstr "如果想隐藏给别人的提示消息,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:6014 +#: ../../TShockAPI/Commands.cs:6030 #, csharp-format msgid "To get rid of NPCs without making them drop items, use the {0} command instead." msgstr "如果想清除NPC且不掉落物品,你可以使用{0}指令。" -#: ../../TShockAPI/Commands.cs:5464 +#: ../../TShockAPI/Commands.cs:5480 #, csharp-format msgid "To mute a player without broadcasting to chat, use the command with {0} instead of {1}" msgstr "如果想禁言时隐藏全服通报,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/TShock.cs:1012 -#: ../../TShockAPI/TShock.cs:1022 +#: ../../TShockAPI/TShock.cs:1018 +#: ../../TShockAPI/TShock.cs:1028 #, csharp-format msgid "To setup the server, join the game and type {0}setup {1}" msgstr "进入游戏后输入{0}setup {1}来查看如何获取服主权限。" -#: ../../TShockAPI/Commands.cs:471 +#: ../../TShockAPI/Commands.cs:476 msgid "Toggles build protection." msgstr "切换建造保护。" -#: ../../TShockAPI/Commands.cs:484 +#: ../../TShockAPI/Commands.cs:489 msgid "Toggles christmas mode (present spawning, santa, etc)." msgstr "切换圣诞模式(当前生成速度,圣诞老人,等)。" -#: ../../TShockAPI/Commands.cs:545 +#: ../../TShockAPI/Commands.cs:550 msgid "Toggles godmode on a player." msgstr "切换一个玩家的无敌模式。" -#: ../../TShockAPI/Commands.cs:480 +#: ../../TShockAPI/Commands.cs:485 msgid "Toggles halloween mode (goodie bags, pumpkins, etc)." msgstr "切换万圣节模式(口袋,南瓜,等)。" -#: ../../TShockAPI/Commands.cs:496 +#: ../../TShockAPI/Commands.cs:501 msgid "Toggles spawn protection." msgstr "启用或关闭出生点保护。" -#: ../../TShockAPI/Commands.cs:492 +#: ../../TShockAPI/Commands.cs:497 msgid "Toggles the world's hardmode status." msgstr "启用或关闭困难模式。" -#: ../../TShockAPI/Commands.cs:591 +#: ../../TShockAPI/Commands.cs:596 msgid "Toggles to either ignore or recieve whispers from other players." msgstr "开关是否接收他人的私聊。" -#: ../../TShockAPI/Commands.cs:461 +#: ../../TShockAPI/Commands.cs:466 msgid "Toggles whether other people can teleport you." -msgstr "是否允许他人传送至您。" +msgstr "是否允许他人传送至你。" -#: ../../TShockAPI/Commands.cs:276 +#: ../../TShockAPI/Commands.cs:281 msgid "Toggles whether you receive server logs." msgstr "开关是否接收服务器日志。" -#: ../../TShockAPI/Commands.cs:777 +#: ../../TShockAPI/Commands.cs:787 msgid "Too many invalid login attempts." -msgstr "尝试登录次数超过上限!" +msgstr "尝试登录次数超过上限。" -#: ../../TShockAPI/Commands.cs:6646 +#: ../../TShockAPI/Commands.cs:6662 msgid "Topaz Gemtree" msgstr "黄玉宝石树" -#: ../../TShockAPI/Commands.cs:1224 +#: ../../TShockAPI/Commands.cs:1238 #, csharp-format msgid "Total processor time: {0}" msgstr "处理器运行总时间:{0}" -#: ../../TShockAPI/Commands.cs:5202 +#: ../../TShockAPI/Commands.cs:5218 msgid "tp - Teleports you to the given region's center." -msgstr "tp - 将您传送到指定的区域" +msgstr "tp - 将你传送到指定的区域。" -#: ../../TShockAPI/Commands.cs:6511 +#: ../../TShockAPI/Commands.cs:6527 msgid "Trees types & misc available to use. ({{0}}/{{1}}):" msgstr "可选的树的种类 {{0}}/{{1}}" -#: ../../TShockAPI/Commands.cs:6700 +#: ../../TShockAPI/Commands.cs:6716 #, csharp-format msgid "Tried to grow a {0}." msgstr "尝试在此处种下一颗{0}。" -#: ../../TShockAPI/TShock.cs:399 +#: ../../TShockAPI/TShock.cs:375 #, csharp-format msgid "TShock {0} ({1}) now running." msgstr "TShock {0} ({1}) 正在运行。" -#: ../../TShockAPI/Commands.cs:1367 +#: ../../TShockAPI/Commands.cs:1381 msgid "TShock Ban Help" msgstr "TShock Ban帮助" -#: ../../TShockAPI/TShock.cs:449 +#: ../../TShockAPI/TShock.cs:452 msgid "TShock comes with no warranty & is free software." msgstr "TShock是自由软件与免费软件,不提供任何担保。" -#: ../../TShockAPI/TShock.cs:461 +#: ../../TShockAPI/TShock.cs:464 msgid "TShock encountered a problem from which it cannot recover. The following message may help diagnose the problem." msgstr "TShock遇到了无法自动恢复的严重异常,以下消息或许有助于分析原因。" -#: ../../TShockAPI/TShock.cs:1021 +#: ../../TShockAPI/TShock.cs:1027 msgid "TShock Notice: setup-code.txt is still present, and the code located in that file will be used." msgstr "TShock提醒:已从setup-code.txt中读取认证代码。" -#: ../../TShockAPI/TShock.cs:353 +#: ../../TShockAPI/TShock.cs:329 msgid "TShock was improperly shut down. Please use the exit command in the future to prevent this." msgstr "TShock被强制关闭。建议使用exit指令进行正常安全关闭。" -#: ../../TShockAPI/TShock.cs:997 +#: ../../TShockAPI/TShock.cs:1003 msgid "TShock will now disable the initial setup system and remove setup-code.txt as it is no longer needed." msgstr "TShock已禁用初始认证系统并删除setup-code.txt。" -#: ../../TShockAPI/Commands.cs:5299 +#: ../../TShockAPI/Commands.cs:5315 #, csharp-format msgid "TShock: {0} {1}." msgstr "TShock: {0}{1}。" -#: ../../TShockAPI/Commands.cs:1433 +#: ../../TShockAPI/Commands.cs:1447 #, csharp-format msgid "Type {0}ban help identifiers {{0}} for more." msgstr "输入 {0}ban help identifiers {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:1671 +#: ../../TShockAPI/Commands.cs:1685 #, csharp-format msgid "Type {0}ban list {{0}} for more." msgstr "输入 {0}ban list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:3455 +#: ../../TShockAPI/Commands.cs:3470 #, csharp-format msgid "Type {0}group help {{0}} for more sub-commands." msgstr "输入 {0}group help {{0}} 获取更多子命令。" -#: ../../TShockAPI/Commands.cs:3746 +#: ../../TShockAPI/Commands.cs:3761 #, csharp-format msgid "Type {0}group list {{0}} for more." msgstr "输入 {0}group list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:3775 +#: ../../TShockAPI/Commands.cs:3790 #, csharp-format msgid "Type {0}group listperm {1} {{0}} for more." msgstr "输入 {0}group listperm {1} {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:6512 +#: ../../TShockAPI/Commands.cs:6528 #, csharp-format msgid "Type {0}grow help {{0}} for more sub-commands." msgstr "输入 {0}grow help {{0}} 获取更多子命令。" -#: ../../TShockAPI/Commands.cs:5261 +#: ../../TShockAPI/Commands.cs:5277 #, csharp-format msgid "Type {0}help {{0}} for more." msgstr "输入 {0}help {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:3982 +#: ../../TShockAPI/Commands.cs:3997 #, csharp-format msgid "Type {0}itemban help {{0}} for more sub-commands." msgstr "输入 {0}itemban help {{0}} 获得更多子命令。" -#: ../../TShockAPI/Commands.cs:4000 +#: ../../TShockAPI/Commands.cs:4015 #, csharp-format msgid "Type {0}itemban list {{0}} for more." msgstr "输入 {0}itemban list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:1053 +#: ../../TShockAPI/Commands.cs:1063 #, csharp-format msgid "Type {0}login \"{1}\" {2} to log-in to your account." msgstr "输入 {0}login \"{1}\" {2} 登录" -#: ../../TShockAPI/Commands.cs:1055 +#: ../../TShockAPI/Commands.cs:1065 #, csharp-format msgid "Type {0}login {1} to log-in to your account." msgstr "输入 {0}login {1} 登录" -#: ../../TShockAPI/Commands.cs:1050 +#: ../../TShockAPI/Commands.cs:1060 #, csharp-format msgid "Type {0}login to log-in to your account using your UUID." msgstr "输入{0}login 以你的UUID作为凭证登录." -#: ../../TShockAPI/Commands.cs:4160 +#: ../../TShockAPI/Commands.cs:4175 #, csharp-format msgid "Type {0}projban help {{0}} for more sub-commands." msgstr "输入 {0}projban help {{0}} 获得更多子命令。" -#: ../../TShockAPI/Commands.cs:4178 +#: ../../TShockAPI/Commands.cs:4193 #, csharp-format msgid "Type {0}projban list {{0}} for more." msgstr "输入 {0}projban list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:5209 +#: ../../TShockAPI/Commands.cs:5225 #, csharp-format msgid "Type {0}region {{0}} for more sub-commands." msgstr "输入 {0}region {{0}} 获得更多子命令。" -#: ../../TShockAPI/Commands.cs:4987 +#: ../../TShockAPI/Commands.cs:5003 #, csharp-format msgid "Type {0}region info {1} {{0}} for more information." msgstr "输入 {0}region info {1} {{0}} 了解更多信息。" -#: ../../TShockAPI/Commands.cs:4916 +#: ../../TShockAPI/Commands.cs:4932 #, csharp-format msgid "Type {0}region list {{0}} for more." msgstr "输入 {0}region list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:2095 +#: ../../TShockAPI/Commands.cs:2110 #, csharp-format msgid "Type {0}rest listusers {{0}} for more." msgstr "输入 {0}rest listusers {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:4336 +#: ../../TShockAPI/Commands.cs:4351 #, csharp-format msgid "Type {0}tileban help {{0}} for more sub-commands." msgstr "输入 {0}tileban {{0}} 获得更多子命令。" -#: ../../TShockAPI/Commands.cs:4354 +#: ../../TShockAPI/Commands.cs:4369 #, csharp-format msgid "Type {0}tileban list {{0}} for more." msgstr "输入 {0}tileban list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:3229 +#: ../../TShockAPI/Commands.cs:3244 #, csharp-format msgid "Type {0}warp list {{0}} for more." msgstr "输入 {0}warp list {{0}} 了解更多。" -#: ../../TShockAPI/Commands.cs:5367 +#: ../../TShockAPI/Commands.cs:5383 #, csharp-format msgid "Type {0}who {1} for more." -msgstr "输入 {0}who {1} 了解更多" +msgstr "输入 {0}who {1} 了解更多。" #: ../../TShockAPI/PaginationTools.cs:108 msgid "Type / {{0}} for more." -msgstr "输入/ {{0}}获取更多信息" +msgstr "输入/ {{0}}获取更多信息。" -#: ../../TShockAPI/Commands.cs:6444 +#: ../../TShockAPI/Commands.cs:6460 #, csharp-format msgid "Unable to find any buff named \"{0}\"" msgstr "无法找到任何名为\"{0}\"的状态" -#: ../../TShockAPI/Commands.cs:6385 +#: ../../TShockAPI/Commands.cs:6401 #, csharp-format msgid "Unable to find any buffs named \"{0}\"" msgstr "无法找到任何名为\"{0}\"的状态" -#: ../../TShockAPI/Commands.cs:6429 +#: ../../TShockAPI/Commands.cs:6445 #, csharp-format msgid "Unable to find any player named \"{0}\"" msgstr "无法找到任何名为\"{0}\"的玩家" -#: ../../TShockAPI/Commands.cs:6323 +#: ../../TShockAPI/Commands.cs:6339 #, csharp-format msgid "Unable to find any players named \"{0}\"" msgstr "无法找到任何名为\"{0}\"的玩家" -#: ../../TShockAPI/Commands.cs:5670 +#: ../../TShockAPI/Commands.cs:5686 #, csharp-format msgid "Unable to launch {0} because he is not logged in." msgstr "{0}未登录,无法将他发射到空中。" -#: ../../TShockAPI/Commands.cs:5672 +#: ../../TShockAPI/Commands.cs:5688 #, csharp-format msgid "Unable to launch {0} because she is not logged in." msgstr "{0}未登录,无法将她发射到空中。" -#: ../../TShockAPI/TShock.cs:1484 +#: ../../TShockAPI/TShock.cs:1502 msgid "Unable to parse command '{0}' from player {1}." msgstr "无法解析{1}的指令{0}。" -#: ../../TShockAPI/TShock.cs:1483 +#: ../../TShockAPI/TShock.cs:1501 msgid "Unable to parse command. Please contact an administrator for assistance." msgstr "无法解析指令,请联系管理员以获取帮助。" -#: ../../TShockAPI/Commands.cs:2885 +#: ../../TShockAPI/Commands.cs:2900 msgid "Unable to spawn a Wall of Flesh based on its current state or your current location." msgstr "无法生成血肉墙,因为它已经存在或你不在地狱层。" -#: ../../TShockAPI/DB/UserManager.cs:450 +#: ../../TShockAPI/DB/UserManager.cs:665 +#, csharp-format +msgid "Unable to update group of user {0}." +msgstr "无法更新 {0} 所在的用户组。" + +#: ../../TShockAPI/DB/UserManager.cs:477 #, csharp-format msgid "Unable to verify the password hash for user {0} ({1})" msgstr "无法验证用户{0}({1})的密码哈希值" -#: ../../TShockAPI/Commands.cs:3912 +#: ../../TShockAPI/Commands.cs:3927 #, csharp-format msgid "Unbanned {0}." msgstr "物品 {0} 已被允许使用." -#: ../../TShockAPI/Commands.cs:4094 +#: ../../TShockAPI/Commands.cs:4109 #, csharp-format msgid "Unbanned projectile {0}." msgstr "射弹已被解除封禁{0}。" -#: ../../TShockAPI/Commands.cs:4270 +#: ../../TShockAPI/Commands.cs:4285 #, csharp-format msgid "Unbanned tile {0}." msgstr "图格已被解除封禁{0}。" -#: ../../TShockAPI/Commands.cs:1455 +#: ../../TShockAPI/Commands.cs:1469 #, csharp-format msgid "Unknown ban command. Try {0} {1}, {2}, {3}, {4}, {5}, or {6}." msgstr "未知的封禁指令。尝试{0} {1}, {2}, {3}, {4}, {5}, 或者{6}。" -#: ../../TShockAPI/Commands.cs:6694 +#: ../../TShockAPI/Commands.cs:6710 msgid "Unknown plant!" msgstr "未知的植物!" -#: ../../TShockAPI/Bouncer.cs:246 +#: ../../TShockAPI/Bouncer.cs:247 msgid "Unrecognized player direction" msgstr "无效的玩家方向" -#: ../../TShockAPI/TShock.cs:462 +#: ../../TShockAPI/GetDataHandlers.cs:3573 +msgid "Unrecognized special effect (Packet 51). Please report this to the TShock developers." +msgstr "遇到了无法识别的特殊效果(51号包),请向 TShock 开发者报告此事。" + +#: ../../TShockAPI/DB/GroupManager.cs:354 +msgid "Unsupported database type." +msgstr "尚不支持这种数据库。" + +#: ../../TShockAPI/TShock.cs:465 msgid "Until the problem is resolved, TShock will not be able to start (and will crash on startup)." msgstr "重新启动TShock很有可能仍然会遇到此异常崩溃。" @@ -6459,7 +6511,7 @@ msgstr "重新启动TShock很有可能仍然会遇到此异常崩溃。" msgid "Update server did not respond with an OK. Server message: [error {0}] {1}" msgstr "检查更新服务器出现异常。服务器响应状态码{0}({1})。" -#: ../../TShockAPI/DB/UserManager.cs:197 +#: ../../TShockAPI/DB/UserManager.cs:231 msgid "UpdateLogin SQL returned an error" msgstr "更新登录日志时, 数据库返回了一个错误。" @@ -6469,78 +6521,78 @@ msgstr "更新登录日志时, 数据库返回了一个错误。" msgid "UpdateManager warning: {0}" msgstr "自动检查更新时出现异常:{0}" -#: ../../TShockAPI/Commands.cs:316 +#: ../../TShockAPI/Commands.cs:321 msgid "Upload the account information when you joined the server as your Server Side Character data." msgstr "上传并使用加入服务器时的本地存档来覆盖服务器端存档。" -#: ../../TShockAPI/Commands.cs:1916 +#: ../../TShockAPI/Commands.cs:1930 #, csharp-format msgid "Usage: {0}tempgroup [time]" msgstr "用法: {0}tempgroup <用户名> <新组> [有效时间]" -#: ../../TShockAPI/Commands.cs:2001 +#: ../../TShockAPI/Commands.cs:2015 msgid "Usage: /sudo [command]." msgstr "用法:/sudo [指令]" -#: ../../TShockAPI/Commands.cs:1844 -#: ../../TShockAPI/Commands.cs:1850 +#: ../../TShockAPI/Commands.cs:1858 +#: ../../TShockAPI/Commands.cs:1864 msgid "Usage: /uploadssc [playername]." msgstr "用法:/uploadssc [玩家名]" -#: ../../TShockAPI/Commands.cs:2441 +#: ../../TShockAPI/Commands.cs:2456 #, csharp-format msgid "Use \"{0}worldevent rain slime\" to start slime rain!" msgstr "使用 {0}worldevent rain slime 开始一场史莱姆雨!" -#: ../../TShockAPI/TSPlayer.cs:1971 +#: ../../TShockAPI/TSPlayer.cs:2123 msgid "Use \"my query\" for items with spaces." -msgstr "用\"半角双引号\"包裹关键字来搜索名字带有空格的物品" +msgstr "用\"半角双引号\"包裹关键字来搜索名字带有空格的物品。" -#: ../../TShockAPI/TSPlayer.cs:1972 +#: ../../TShockAPI/TSPlayer.cs:2124 msgid "Use tsi:[number] or tsn:[username] to distinguish between user IDs and usernames." msgstr "使用 tsi:序号 或者 tsn:名称 来区分含有数字的名称。" -#: ../../TShockAPI/Commands.cs:227 +#: ../../TShockAPI/Commands.cs:232 msgid "Used to authenticate as superadmin when first setting up TShock." msgstr "首次设置 TShock时用作超级管理员身份验证。" -#: ../../TShockAPI/Rest/RestManager.cs:1341 +#: ../../TShockAPI/Rest/RestManager.cs:1342 #, csharp-format msgid "User {0} '{1}' doesn't exist" msgstr "用户 {0} “{1}”不存在" -#: ../../TShockAPI/Commands.cs:1114 +#: ../../TShockAPI/Commands.cs:1124 #, csharp-format msgid "User {0} already exists." msgstr "用户 {0} 已经存在。" -#: ../../TShockAPI/Commands.cs:1118 +#: ../../TShockAPI/Commands.cs:1128 #, csharp-format msgid "User {0} could not be added, check console for details." msgstr "无法添加用户{0},请查看控制台获取更多信息。" -#: ../../TShockAPI/Commands.cs:1198 +#: ../../TShockAPI/Commands.cs:1212 #, csharp-format msgid "User {0} could not be added. Check console for details." msgstr "无法添加用户{0}。请查看控制台获取更多信息。" -#: ../../TShockAPI/Commands.cs:1194 -#: ../../TShockAPI/Commands.cs:1302 +#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1316 #, csharp-format msgid "User {0} does not exist." msgstr "用户 {0} 不存在。" -#: ../../TShockAPI/DB/UserManager.cs:612 +#: ../../TShockAPI/DB/UserManager.cs:639 #, csharp-format msgid "User account {0} already exists" msgstr "账号“{0}”已存在" -#: ../../TShockAPI/DB/UserManager.cs:625 +#: ../../TShockAPI/DB/UserManager.cs:652 #, csharp-format msgid "User account {0} does not exist" msgstr "用户“{0}”不存在" -#: ../../TShockAPI/Commands.cs:1204 +#: ../../TShockAPI/Commands.cs:1218 msgid "User management command help:" msgstr "用户管理指令帮助信息:" @@ -6550,130 +6602,130 @@ msgstr "用户管理指令帮助信息:" msgid "Username or password may be incorrect or this account may not have sufficient privileges." msgstr "用户名或密码错误,也可能是该用户没有足够的权限。" -#: ../../TShockAPI/TShock.cs:390 -#: ../../TShockAPI/TShock.cs:394 +#: ../../TShockAPI/TShock.cs:366 +#: ../../TShockAPI/TShock.cs:370 #, csharp-format msgid "Using {0} for tile implementation" msgstr "图格内部实现:{0}" -#: ../../TShockAPI/Bouncer.cs:1794 +#: ../../TShockAPI/Bouncer.cs:1850 #, csharp-format msgid "Using {0} on non-honey" -msgstr "{0}只能用于蜂蜜。" +msgstr "{0}只能用于蜂蜜" -#: ../../TShockAPI/Bouncer.cs:1803 +#: ../../TShockAPI/Bouncer.cs:1859 #, csharp-format msgid "Using {0} on non-lava" -msgstr "{0}只能用于岩浆。" +msgstr "{0}只能用于岩浆" -#: ../../TShockAPI/Bouncer.cs:1810 +#: ../../TShockAPI/Bouncer.cs:1866 #, csharp-format msgid "Using {0} on non-shimmer" -msgstr "{0}只能用于微光。" +msgstr "{0}只能用于微光" -#: ../../TShockAPI/Bouncer.cs:1785 +#: ../../TShockAPI/Bouncer.cs:1841 #, csharp-format msgid "Using {0} on non-water" -msgstr "{0}只能用于水。" +msgstr "{0}只能用于水" -#: ../../TShockAPI/Bouncer.cs:1817 +#: ../../TShockAPI/Bouncer.cs:1873 #, csharp-format msgid "Using {0} on non-water or shimmer" -msgstr "{0}只能用于水或微光。" +msgstr "{0}只能用于水或微光" -#: ../../TShockAPI/Bouncer.cs:1825 +#: ../../TShockAPI/Bouncer.cs:1881 #, csharp-format msgid "Using {0} to manipulate unknown liquid {1}" msgstr "无法使用{0}来更改不明液体{1}。" -#: ../../TShockAPI/Bouncer.cs:1740 +#: ../../TShockAPI/Bouncer.cs:1796 #, csharp-format msgid "Using banned {0} to manipulate liquid" -msgstr "没有使用{0}的权限,无法更改地图上的液体。" +msgstr "没有权限使用{0},无法更改地图上的液体" -#: ../../TShockAPI/Bouncer.cs:1763 +#: ../../TShockAPI/Bouncer.cs:1819 msgid "Using banned honey bucket without permissions" msgstr "没有使用蜂蜜桶的权限" -#: ../../TShockAPI/Bouncer.cs:1756 +#: ../../TShockAPI/Bouncer.cs:1812 msgid "Using banned lava bucket without permissions" msgstr "没有使用岩浆桶的权限" -#: ../../TShockAPI/Bouncer.cs:1770 +#: ../../TShockAPI/Bouncer.cs:1826 msgid "Using banned shimmering water bucket without permissions" msgstr "没有使用微光桶的权限" -#: ../../TShockAPI/Bouncer.cs:1749 +#: ../../TShockAPI/Bouncer.cs:1805 msgid "Using banned water bucket without permissions" msgstr "没有使用水桶的权限" -#: ../../TShockAPI/Commands.cs:924 +#: ../../TShockAPI/Commands.cs:934 msgid "UUID does not match this character." msgstr "UUID与该角色不匹配。" -#: ../../TShockAPI/Commands.cs:2147 +#: ../../TShockAPI/Commands.cs:2162 #, csharp-format msgid "Valid event types: {0}." msgstr "有效的事件类型: {0}。" -#: ../../TShockAPI/Commands.cs:2148 +#: ../../TShockAPI/Commands.cs:2163 #, csharp-format msgid "Valid invasion types if spawning an invasion: {0}." msgstr "当你生成入侵时,有效的入侵类型:{0}。" -#: ../../TShockAPI/Commands.cs:2333 +#: ../../TShockAPI/Commands.cs:2348 #, csharp-format msgid "Valid invasion types: {0}." msgstr "有效的入侵类型: {0}。" -#: ../../TShockAPI/Commands.cs:2549 +#: ../../TShockAPI/Commands.cs:2564 #, csharp-format msgid "Valid world modes: {0}" msgstr "有效的世界模式:{0}" -#: ../../TShockAPI/Commands.cs:3250 +#: ../../TShockAPI/Commands.cs:3265 #, csharp-format msgid "Warp {0} already exists." msgstr "传送点 {0} 已存在。" -#: ../../TShockAPI/Commands.cs:3286 +#: ../../TShockAPI/Commands.cs:3301 #, csharp-format msgid "Warp {0} is now private." msgstr "传送点 {0} 现已隐藏。" -#: ../../TShockAPI/Commands.cs:3288 +#: ../../TShockAPI/Commands.cs:3303 #, csharp-format msgid "Warp {0} is now public." msgstr "传送点 {0} 现已公开。" -#: ../../TShockAPI/Commands.cs:3246 +#: ../../TShockAPI/Commands.cs:3261 #, csharp-format msgid "Warp added: {0}." msgstr "已添加传送点:{0}。" -#: ../../TShockAPI/Commands.cs:3265 +#: ../../TShockAPI/Commands.cs:3280 #, csharp-format msgid "Warp deleted: {0}" msgstr "已删除传送点:{0}" -#: ../../TShockAPI/Commands.cs:3345 +#: ../../TShockAPI/Commands.cs:3360 #, csharp-format msgid "Warped to {0}." msgstr "已传送至{0}。" -#: ../../TShockAPI/Commands.cs:3228 +#: ../../TShockAPI/Commands.cs:3243 msgid "Warps ({{0}}/{{1}}):" msgstr "传送点 ({{0}}/{{1}}):" -#: ../../TShockAPI/TShock.cs:448 +#: ../../TShockAPI/TShock.cs:451 msgid "Welcome to TShock for Terraria!" msgstr "欢迎使用泰拉瑞亚TShock服务器!" -#: ../../TShockAPI/Commands.cs:5518 +#: ../../TShockAPI/Commands.cs:5534 msgid "Whisper Syntax" -msgstr "Whisper的语法" +msgstr "私聊的用法" -#: ../../TShockAPI/Commands.cs:6608 +#: ../../TShockAPI/Commands.cs:6624 msgid "Willow Tree" msgstr "黄柳树" @@ -6690,17 +6742,17 @@ msgstr "世界已备份({0})。" msgid "World backed up." msgstr "世界已备份。" -#: ../../TShockAPI/Commands.cs:2574 +#: ../../TShockAPI/Commands.cs:2589 #, csharp-format msgid "World mode set to {0}." msgstr "世界模式设置为 {0}。" -#: ../../TShockAPI/TShock.cs:818 +#: ../../TShockAPI/TShock.cs:824 #, csharp-format msgid "World name will be overridden by: {0}" msgstr "世界名称将被重命名为:{0}" -#: ../../TShockAPI/TShock.cs:775 +#: ../../TShockAPI/TShock.cs:781 #, csharp-format msgid "World path has been set to {0}" msgstr "地图路径已设置为{0}。" @@ -6714,48 +6766,48 @@ msgstr "世界已经保存到({0})" msgid "World saved." msgstr "世界保存完毕." -#: ../../TShockAPI/Commands.cs:4948 +#: ../../TShockAPI/Commands.cs:4964 #, csharp-format msgid "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" msgstr "X: {0}; Y: {1}; W: {2}; H: {3}, Z: {4}" -#: ../../TShockAPI/Commands.cs:5938 +#: ../../TShockAPI/Commands.cs:5954 msgid "You are already dead!" -msgstr "你死了!" +msgstr "你已经死了!" -#: ../../TShockAPI/Commands.cs:783 +#: ../../TShockAPI/Commands.cs:793 msgid "You are already logged in, and cannot login again." msgstr "你已经登录了, 不能再次登录。" -#: ../../TShockAPI/Commands.cs:2913 +#: ../../TShockAPI/Commands.cs:2928 msgid "You are dead. Dead players can't go home." msgstr "你已死亡。此时不能回家。" -#: ../../TShockAPI/TShock.cs:1501 +#: ../../TShockAPI/TShock.cs:1519 msgid "You are muted!" msgstr "你被禁言了!" -#: ../../TShockAPI/Commands.cs:5428 -#: ../../TShockAPI/Commands.cs:5443 -#: ../../TShockAPI/Commands.cs:5534 -#: ../../TShockAPI/Commands.cs:5571 +#: ../../TShockAPI/Commands.cs:5444 +#: ../../TShockAPI/Commands.cs:5459 +#: ../../TShockAPI/Commands.cs:5550 +#: ../../TShockAPI/Commands.cs:5587 msgid "You are muted." msgstr "你被禁言了。" -#: ../../TShockAPI/Commands.cs:6758 +#: ../../TShockAPI/Commands.cs:6770 #, csharp-format msgid "You are no longer in god mode." msgstr "你现在不处于无敌模式。" -#: ../../TShockAPI/Commands.cs:5988 +#: ../../TShockAPI/Commands.cs:6004 msgid "You are not dead!" msgstr "你没有死亡!" -#: ../../TShockAPI/Commands.cs:5454 +#: ../../TShockAPI/Commands.cs:5470 msgid "You are not in a party!" -msgstr "你不在任何队伍当中,无法使用队内聊天。" +msgstr "你不在任何队伍当中,无法使用队内聊天!" -#: ../../TShockAPI/Commands.cs:945 +#: ../../TShockAPI/Commands.cs:955 msgid "You are not logged-in. Therefore, you cannot logout." msgstr "你还没有登录所以不能登出。" @@ -6763,153 +6815,157 @@ msgstr "你还没有登录所以不能登出。" msgid "You are not on the whitelist." msgstr "你不在白名单中。" -#: ../../TShockAPI/Commands.cs:5618 +#: ../../TShockAPI/Commands.cs:5634 msgid "You are now being annoyed." msgstr "你觉得有点烦恼。" -#: ../../TShockAPI/Commands.cs:6757 +#: ../../TShockAPI/Commands.cs:6769 #, csharp-format msgid "You are now in god mode." msgstr "你现在已经处于无敌模式了。" -#: ../../TShockAPI/Commands.cs:6406 -#: ../../TShockAPI/Commands.cs:6463 +#: ../../TShockAPI/Commands.cs:6422 +#: ../../TShockAPI/Commands.cs:6479 #, csharp-format msgid "You buffed yourself with {0} ({1}) for {2} seconds." msgstr "你给你自己添加了状态{0}({1}),持续{2}秒。" -#: ../../TShockAPI/Commands.cs:6049 +#: ../../TShockAPI/Commands.cs:6065 #, csharp-format msgid "You butchered {0} NPC." msgid_plural "You butchered {0} NPCs." msgstr[0] "你杀死了{0}个NPC。" -#: ../../TShockAPI/TShock.cs:450 +#: ../../TShockAPI/TShock.cs:453 msgid "You can modify & distribute it under the terms of the GNU GPLv3." msgstr "你可以合法地复制、分发和修改此软件,但需要遵守GNU GPLv3协议。" -#: ../../TShockAPI/Commands.cs:694 +#: ../../TShockAPI/Commands.cs:699 #, csharp-format msgid "You can use '{0}sudo {0}{1}' to override this check." msgstr "你可以使用{0}sudo {0}{1} 来越过该检查。" -#: ../../TShockAPI/Commands.cs:5602 +#: ../../TShockAPI/Commands.cs:5618 #, csharp-format msgid "You can use {0} instead of {1} to annoy a player silently." msgstr "如果想隐藏给对方的提示,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:5818 -#: ../../TShockAPI/Commands.cs:5920 +#: ../../TShockAPI/Commands.cs:5834 +#: ../../TShockAPI/Commands.cs:5936 #, csharp-format msgid "You can use {0} instead of {1} to execute this command silently." msgstr "如果想隐藏全服通报,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:5686 +#: ../../TShockAPI/Commands.cs:5702 #, csharp-format msgid "You can use {0} instead of {1} to launch a firework silently." msgstr "如果想隐藏给对方的提示,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:5630 +#: ../../TShockAPI/Commands.cs:5646 #, csharp-format msgid "You can use {0} instead of {1} to rocket a player silently." msgstr "如果想隐藏全服通报,请在指令开头使用{0}来替代{1}。" -#: ../../TShockAPI/Commands.cs:5564 +#: ../../TShockAPI/Commands.cs:5580 #, csharp-format msgid "You can use {0}{1} to toggle this setting." msgstr "你可以使用{0}{1}来切换此设置。" -#: ../../TShockAPI/Commands.cs:5591 +#: ../../TShockAPI/Commands.cs:5607 #, csharp-format msgid "You can use {0}{1} to whisper to other players." msgstr "你可以使用{0}{1}向其他玩家发送私聊消息。" -#: ../../TShockAPI/Commands.cs:6733 +#: ../../TShockAPI/Commands.cs:6749 msgid "You can't god mode a non player!" -msgstr "无敌模式只能对真实的玩家使用。" +msgstr "无敌模式只能对真实的玩家使用!" -#: ../../TShockAPI/Commands.cs:6333 +#: ../../TShockAPI/Commands.cs:6349 msgid "You can't heal a dead player!" -msgstr "无法为死亡的玩家恢复生命值。" +msgstr "无法为死亡的玩家恢复生命值!" -#: ../../TShockAPI/Commands.cs:1337 +#: ../../TShockAPI/Commands.cs:1351 msgid "You can't kick another admin." msgstr "你不能踢出其他管理员。" -#: ../../TShockAPI/DB/GroupManager.cs:501 -#: ../../TShockAPI/DB/GroupManager.cs:502 +#: ../../TShockAPI/DB/GroupManager.cs:537 +#: ../../TShockAPI/DB/GroupManager.cs:538 msgid "You can't remove the default guest group." msgstr "你无法删除默认访客用户组。" -#: ../../TShockAPI/Commands.cs:5957 +#: ../../TShockAPI/Commands.cs:5973 msgid "You can't respawn the server console!" -msgstr "复活只能对真实的玩家使用。" +msgstr "复活只能对真实的玩家使用!" -#: ../../TShockAPI/Commands.cs:814 +#: ../../TShockAPI/Commands.cs:824 msgid "You cannot login whilst crowd controlled." msgstr "在无法行动时不能登录。" -#: ../../TShockAPI/Commands.cs:800 +#: ../../TShockAPI/Commands.cs:810 msgid "You cannot login whilst dead." msgstr "你无法在死亡时登录。" -#: ../../TShockAPI/Commands.cs:808 +#: ../../TShockAPI/Commands.cs:818 msgid "You cannot login whilst using an item." msgstr "使用物品时你无法登录。" -#: ../../TShockAPI/Commands.cs:6144 -#: ../../TShockAPI/Commands.cs:6283 +#: ../../TShockAPI/Commands.cs:6160 +#: ../../TShockAPI/Commands.cs:6299 msgid "You cannot spawn banned items." -msgstr "你不能使用已经被禁用的物品" +msgstr "你不能使用已经被禁用的物品。" -#: ../../TShockAPI/GetDataHandlers.cs:3445 +#: ../../TShockAPI/GetDataHandlers.cs:3563 +msgid "You cannot use the Enchanted Moondial because time is stopped." +msgstr "时间被锁定停止流动,无法使用附魔月晷。" + +#: ../../TShockAPI/GetDataHandlers.cs:3533 msgid "You cannot use the Enchanted Sundial because time is stopped." msgstr "时间被锁定停止流动,无法使用附魔日晷。" -#: ../../TShockAPI/Commands.cs:5541 +#: ../../TShockAPI/Commands.cs:5557 msgid "You cannot whisper to yourself." -msgstr "你不能对自己私聊。" +msgstr "你不能对自己发送私聊。" -#: ../../TShockAPI/Commands.cs:5851 +#: ../../TShockAPI/Commands.cs:5867 #, csharp-format msgid "You deleted {0} item within a radius of {1}." msgid_plural "You deleted {0} items within a radius of {1}." -msgstr[0] "你删除了{1}范围内的{0}个物品" +msgstr[0] "你删除了{1}范围内的{0}个物品。" -#: ../../TShockAPI/Commands.cs:5875 +#: ../../TShockAPI/Commands.cs:5891 #, csharp-format msgid "You deleted {0} NPC within a radius of {1}." msgid_plural "You deleted {0} NPCs within a radius of {1}." msgstr[0] "你清除了{1}范围内的{0}个NPC。" -#: ../../TShockAPI/Commands.cs:5900 +#: ../../TShockAPI/Commands.cs:5916 #, csharp-format msgid "You deleted {0} projectile within a radius of {1}." msgid_plural "You deleted {0} projectiles within a radius of {1}." msgstr[0] "你清除了{1}范围内的{0}个射弹。" -#: ../../TShockAPI/Commands.cs:6316 +#: ../../TShockAPI/Commands.cs:6332 msgid "You didn't put a player name." -msgstr "你没有写玩家名。" +msgstr "你没有输入玩家名。" -#: ../../TShockAPI/GetDataHandlers.cs:4211 +#: ../../TShockAPI/GetDataHandlers.cs:4352 msgid "You died! Normally, you'd be banned." msgstr "你死了。因为封禁失败,你被踢出了服务器。" -#: ../../TShockAPI/Commands.cs:691 -#: ../../TShockAPI/Commands.cs:5280 +#: ../../TShockAPI/Commands.cs:696 +#: ../../TShockAPI/Commands.cs:5296 msgid "You do not have access to this command." -msgstr "你没有权限使用该指令!" +msgstr "你没有权限使用该指令。" -#: ../../TShockAPI/TSPlayer.cs:828 +#: ../../TShockAPI/TSPlayer.cs:879 msgid "You do not have permission to build in the spawn point." msgstr "你没有权限在出生点附近进行建造。" -#: ../../TShockAPI/TSPlayer.cs:831 +#: ../../TShockAPI/TSPlayer.cs:882 msgid "You do not have permission to build in this region." msgstr "你没有权限在此区域内进行建造。" -#: ../../TShockAPI/TSPlayer.cs:825 +#: ../../TShockAPI/TSPlayer.cs:876 msgid "You do not have permission to build on this server." msgstr "你没有权限在此服务器上进行建造。" @@ -6917,54 +6973,54 @@ msgstr "你没有权限在此服务器上进行建造。" msgid "You do not have permission to contribute research." msgstr "你没有权限来贡献物品研究。" -#: ../../TShockAPI/Bouncer.cs:1184 +#: ../../TShockAPI/Bouncer.cs:1240 msgid "You do not have permission to create that projectile." -msgstr "你没有权限创建此射弹。" +msgstr "你没有权限发射此射弹。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:113 msgid "You do not have permission to freeze the biome spread of the server." -msgstr "你没有权限冻结服务器的感染蔓延。" +msgstr "你没有权限冻结生物群系蔓延。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:109 msgid "You do not have permission to freeze the rain strength of the server." -msgstr "你没有权限冻结服务器的降雨强度。" +msgstr "你没有权限冻结服务器降雨强度。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:103 msgid "You do not have permission to freeze the time of the server." -msgstr "你没有权限冻结服务器的时间。" +msgstr "你没有权限冻结服务器时间。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:110 msgid "You do not have permission to freeze the wind strength of the server." -msgstr "你没有权限冻结服务器的风力强度。" +msgstr "你没有权限冻结服务器风速。" -#: ../../TShockAPI/Commands.cs:6711 +#: ../../TShockAPI/Commands.cs:6727 msgid "You do not have permission to god mode another player." -msgstr "您没有权限为其他玩家开关无敌模式。" +msgstr "你没有权限设置其他玩家的无敌模式。" -#: ../../TShockAPI/Commands.cs:6522 +#: ../../TShockAPI/Commands.cs:6538 msgid "You do not have permission to grow this tree type" -msgstr "你没有生成这种树木的权限。" +msgstr "你没有权限生成这种树木。" -#: ../../TShockAPI/GetDataHandlers.cs:2960 +#: ../../TShockAPI/GetDataHandlers.cs:3035 msgid "You do not have permission to hurt Town NPCs." -msgstr "你没有攻击城镇NPC的权限。" +msgstr "你没有权限攻击城镇NPC。" #: ../../TShockAPI/Handlers/RequestTileEntityInteractionHandler.cs:22 msgid "You do not have permission to modify a Hat Rack in a protected area!" -msgstr "您没有权限修改受保护区域内的帽架。" +msgstr "你没有权限修改受保护区域内的帽架!" #: ../../TShockAPI/Handlers/DisplayDollItemSyncHandler.cs:21 #: ../../TShockAPI/Handlers/RequestTileEntityInteractionHandler.cs:28 msgid "You do not have permission to modify a Mannequin in a protected area!" -msgstr "您没有权限修改受保护区域内的人体模型。" +msgstr "你没有权限修改受保护区域内的人体模型!" #: ../../TShockAPI/Handlers/RequestTileEntityInteractionHandler.cs:34 msgid "You do not have permission to modify a TileEntity in a protected area!" -msgstr "您没有权限修改受保护区域内的物块实体。" +msgstr "你没有权限修改受保护区域内的物块实体!" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:114 msgid "You do not have permission to modify the NPC spawn rate of the server." -msgstr "你没有权限更改服务器的NPC生成率。" +msgstr "你没有权限更改服务器的生物生成率。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:107 msgid "You do not have permission to modify the rain strength of the server." @@ -6972,414 +7028,438 @@ msgstr "你没有权限更改服务器的降雨强度。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:111 msgid "You do not have permission to modify the tile placement range of your character." -msgstr "您没有权限修改您角色的放置范围。" +msgstr "你没有权限修改放置范围。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:104 msgid "You do not have permission to modify the time of the server." -msgstr "你没有权限修改服务器的时间。" +msgstr "你没有权限修改服务器时间。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:108 msgid "You do not have permission to modify the time speed of the server." -msgstr "你没有权限修改服务器的时间流速。" +msgstr "你没有权限修改服务器时间流速。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:106 msgid "You do not have permission to modify the wind strength of the server." -msgstr "你没有权限修改服务器的风速。" +msgstr "你没有权限修改服务器风速。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:112 msgid "You do not have permission to modify the world difficulty of the server." msgstr "你没有权限更改服务器的世界难度。" -#: ../../TShockAPI/Commands.cs:5479 +#: ../../TShockAPI/Commands.cs:5495 #, csharp-format msgid "You do not have permission to mute {0}" -msgstr "你没有禁言{0}的权限。" +msgstr "你没有权限禁言{0}。" -#: ../../TShockAPI/Bouncer.cs:1732 +#: ../../TShockAPI/Bouncer.cs:1788 msgid "You do not have permission to perform this action." msgstr "你没有权限执行该操作。" #: ../../TShockAPI/ItemBans.cs:202 msgid "You do not have permission to place actuators." -msgstr "你没有放置促动器的权限。" +msgstr "你没有权限放置促动器。" -#: ../../TShockAPI/GetDataHandlers.cs:3967 +#: ../../TShockAPI/GetDataHandlers.cs:4107 msgid "You do not have permission to place Logic Sensors." msgstr "你没有权限放置感应器。" -#: ../../TShockAPI/Bouncer.cs:655 -#: ../../TShockAPI/Bouncer.cs:2263 +#: ../../TShockAPI/Bouncer.cs:679 +#: ../../TShockAPI/Bouncer.cs:2319 msgid "You do not have permission to place this tile." msgstr "你没有权限放置此物块。" -#: ../../TShockAPI/GetDataHandlers.cs:3493 +#: ../../TShockAPI/GetDataHandlers.cs:3617 msgid "You do not have permission to relocate Town NPCs." -msgstr "你没有移动城镇NPC的权限。" +msgstr "你没有权限移动城镇NPC。" -#: ../../TShockAPI/Commands.cs:5965 +#: ../../TShockAPI/Commands.cs:5981 msgid "You do not have permission to respawn another player." -msgstr "您没有权限复活其他玩家。" +msgstr "你没有权限复活其他玩家。" -#: ../../TShockAPI/Commands.cs:5335 +#: ../../TShockAPI/Commands.cs:5351 msgid "You do not have permission to see player IDs." -msgstr "你没有查看玩家序号的权限。" +msgstr "你没有权限查看玩家的序号。" #: ../../TShockAPI/Handlers/EmojiHandler.cs:19 msgid "You do not have permission to send emotes!" msgstr "你没有权限发送表情!" -#: ../../TShockAPI/GetDataHandlers.cs:3532 +#: ../../TShockAPI/GetDataHandlers.cs:3657 msgid "You do not have permission to spawn pets." -msgstr "你没有生成宠物的权限。" +msgstr "你没有权限生成宠物。" -#: ../../TShockAPI/GetDataHandlers.cs:4127 +#: ../../TShockAPI/GetDataHandlers.cs:4267 msgid "You do not have permission to start a party." -msgstr "你没有开启派对的权限。" +msgstr "你没有权限开启派对。" -#: ../../TShockAPI/GetDataHandlers.cs:3525 +#: ../../TShockAPI/GetDataHandlers.cs:3650 msgid "You do not have permission to start invasions." -msgstr "你没有召唤入侵的权限。" +msgstr "你没有权限召唤入侵。" -#: ../../TShockAPI/Commands.cs:2156 +#: ../../TShockAPI/Commands.cs:2171 #, csharp-format msgid "You do not have permission to start the {0} event." msgstr "你没有权限开启 {0} 事件。" -#: ../../TShockAPI/GetDataHandlers.cs:4145 +#: ../../TShockAPI/GetDataHandlers.cs:4285 msgid "You do not have permission to start the Old One's Army." -msgstr "你没有权限开启Old One`s Army。" +msgstr "你没有权限召唤撒旦军队。" -#: ../../TShockAPI/GetDataHandlers.cs:3518 +#: ../../TShockAPI/GetDataHandlers.cs:3643 msgid "You do not have permission to summon bosses." -msgstr "你没有召唤Boss的权限。" +msgstr "你没有权限召唤Boss。" -#: ../../TShockAPI/GetDataHandlers.cs:2970 +#: ../../TShockAPI/GetDataHandlers.cs:3045 msgid "You do not have permission to summon the Empress of Light." msgstr "你没有权限召唤光之女皇。" -#: ../../TShockAPI/GetDataHandlers.cs:2987 +#: ../../TShockAPI/GetDataHandlers.cs:3062 msgid "You do not have permission to summon the Lunatic Cultist!" -msgstr "你没有召唤拜月教徒的权限。" +msgstr "你没有权限召唤拜月教徒!" -#: ../../TShockAPI/Commands.cs:3070 +#: ../../TShockAPI/GetDataHandlers.cs:3508 +msgid "You do not have permission to summon the Skeletron." +msgstr "你没有权限召唤骷髅王。" + +#: ../../TShockAPI/Commands.cs:3085 msgid "You do not have permission to teleport all other players." -msgstr "您没有权限传送所有的其他玩家。" +msgstr "你没有权限传送所有其他玩家。" -#: ../../TShockAPI/Commands.cs:2981 +#: ../../TShockAPI/Commands.cs:2996 msgid "You do not have permission to teleport all players." -msgstr "您没有权限传送所有玩家。" +msgstr "你没有权限传送所有玩家。" -#: ../../TShockAPI/Commands.cs:2964 +#: ../../TShockAPI/Commands.cs:2979 msgid "You do not have permission to teleport other players." -msgstr "您没有权限传送其他玩家。" +msgstr "你没有权限传送其他玩家。" -#: ../../TShockAPI/GetDataHandlers.cs:3833 +#: ../../TShockAPI/GetDataHandlers.cs:3972 #, csharp-format msgid "You do not have permission to teleport using {0}." msgstr "你没有使用{0}进行传送的权限。" -#: ../../TShockAPI/GetDataHandlers.cs:3745 +#: ../../TShockAPI/GetDataHandlers.cs:3884 msgid "You do not have permission to teleport using items." -msgstr "你没有使用物品进行传送的权限。" +msgstr "你没有权限使用物品进行传送。" #: ../../TShockAPI/Handlers/NetModules/PylonHandler.cs:54 msgid "You do not have permission to teleport using pylons." msgstr "你没有权限使用晶塔进行传送。" -#: ../../TShockAPI/GetDataHandlers.cs:3769 +#: ../../TShockAPI/GetDataHandlers.cs:3908 msgid "You do not have permission to teleport using Wormhole Potions." -msgstr "你没有使用虫洞药水的权限。" +msgstr "你没有权限使用虫洞药水。" -#: ../../TShockAPI/Commands.cs:5154 +#: ../../TShockAPI/Commands.cs:5170 msgid "You do not have permission to teleport." -msgstr "你没有传送的权限。" +msgstr "你没有权限进行传送。" #: ../../TShockAPI/Handlers/NetModules/CreativePowerHandler.cs:105 msgid "You do not have permission to toggle godmode." msgstr "你没有权限切换“上帝模式”。" -#: ../../TShockAPI/Commands.cs:1839 +#: ../../TShockAPI/Commands.cs:1853 msgid "You do not have permission to upload another player's character join-state server-side-character data." -msgstr "您没有权限上传其他玩家的SSC云存档。" +msgstr "你没有权限上传其他玩家加入状态的SSC云存档。" -#: ../../TShockAPI/GetDataHandlers.cs:3437 +#: ../../TShockAPI/GetDataHandlers.cs:3664 +msgid "You do not have permission to use permanent boosters." +msgstr "你没有权限使用永久性强化物品。" + +#: ../../TShockAPI/GetDataHandlers.cs:3555 +msgid "You do not have permission to use the Enchanted Moondial." +msgstr "你没有权限使用附魔月晷。" + +#: ../../TShockAPI/GetDataHandlers.cs:3525 msgid "You do not have permission to use the Enchanted Sundial." -msgstr "你没有使用附魔日晷的权限。" +msgstr "你没有权限使用附魔日晷。" -#: ../../TShockAPI/Commands.cs:652 +#: ../../TShockAPI/GetDataHandlers.cs:3572 +msgid "You do not have permission to use this effect." +msgstr "你没有权限触发此效果。" + +#: ../../TShockAPI/Commands.cs:657 #, csharp-format msgid "You entered a space after {0} instead of a command. Type {0}help for a list of valid commands." msgstr "你在{0}后面输入了一个空格,但指令和{0}之间不应有空格。输入{0}查看可用的指令列表。" -#: ../../TShockAPI/Commands.cs:985 +#: ../../TShockAPI/Commands.cs:995 msgid "You failed to change your password." msgstr "更改密码失败。" -#: ../../TShockAPI/GetDataHandlers.cs:2458 +#: ../../TShockAPI/GetDataHandlers.cs:2494 msgid "You have been Bounced." msgstr "你的玩家名异常。" -#: ../../TShockAPI/Rest/RestManager.cs:1393 +#: ../../TShockAPI/Rest/RestManager.cs:1394 msgid "You have been remotely muted" msgstr "您已被禁言" -#: ../../TShockAPI/Rest/RestManager.cs:1398 +#: ../../TShockAPI/Rest/RestManager.cs:1399 msgid "You have been remotely unmmuted" msgstr "你的禁言已被远程解除" -#: ../../TShockAPI/Commands.cs:956 +#: ../../TShockAPI/Commands.cs:966 msgid "You have been successfully logged out of your account." msgstr "你已成功登出。" -#: ../../TShockAPI/Commands.cs:6465 +#: ../../TShockAPI/Commands.cs:6481 #, csharp-format msgid "You have buffed {0} with {1} ({2}) for {3} seconds!" msgstr "你给{1}({2})添加了{3}秒的buff{0}" -#: ../../TShockAPI/Commands.cs:1959 +#: ../../TShockAPI/Commands.cs:1973 #, csharp-format msgid "You have changed {0}'s group to {1}" -msgstr "您已将 {0}的用户组改为 {1}" +msgstr "你已将 {0}的用户组改为 {1}" -#: ../../TShockAPI/Commands.cs:1964 +#: ../../TShockAPI/Commands.cs:1978 #, csharp-format msgid "You have changed {0}'s group to {1} for {2}" -msgstr "您已将 {0}的用户组从 {1}改为{2}" +msgstr "你已将 {0}的用户组从 {1}改为{2}" -#: ../../TShockAPI/GetDataHandlers.cs:4226 +#: ../../TShockAPI/GetDataHandlers.cs:4367 msgid "You have fallen in hardcore mode, and your items have been lost forever." msgstr "你在硬核模式下死亡后永远地离开了这个世界,失去了一切物品。" -#: ../../TShockAPI/Commands.cs:5662 +#: ../../TShockAPI/Commands.cs:5678 #, csharp-format msgid "You have launched {0} into space." msgstr "你把{0}发射到了太空。" -#: ../../TShockAPI/Commands.cs:5660 +#: ../../TShockAPI/Commands.cs:5676 msgid "You have launched yourself into space." msgstr "你把你自己发射到了太空。" -#: ../../TShockAPI/Commands.cs:5498 +#: ../../TShockAPI/Commands.cs:5514 #, csharp-format msgid "You have muted {0} for {1}" msgstr "你禁言了{0}{1}时间" -#: ../../TShockAPI/Commands.cs:5997 +#: ../../TShockAPI/Commands.cs:6013 #, csharp-format msgid "You have respawned {0}" msgstr "你重生了{0}" -#: ../../TShockAPI/Commands.cs:6002 +#: ../../TShockAPI/Commands.cs:6018 msgid "You have respawned yourself." msgstr "你复活了你自己。" -#: ../../TShockAPI/Commands.cs:974 +#: ../../TShockAPI/Commands.cs:984 msgid "You have successfully changed your password." msgstr "你已成功更改密码。" -#: ../../TShockAPI/Commands.cs:5486 +#: ../../TShockAPI/Commands.cs:5502 #, csharp-format msgid "You have unmuted {0}." msgstr "你解除了{0}的禁言。" -#: ../../TShockAPI/Commands.cs:5590 +#: ../../TShockAPI/Commands.cs:5606 msgid "You haven't previously received any whispers." -msgstr "你没有收到过任何私信。" +msgstr "你没有收到过任何私聊消息。" -#: ../../TShockAPI/Commands.cs:6347 +#: ../../TShockAPI/Commands.cs:6363 #, csharp-format msgid "You healed {0} for {1} HP." msgstr "你为{0}恢复了{1}血量。" -#: ../../TShockAPI/Commands.cs:6345 +#: ../../TShockAPI/Commands.cs:6361 #, csharp-format msgid "You healed yourself for {0} HP." msgstr "你为你自己恢复了{0}血量。" -#: ../../TShockAPI/Commands.cs:5947 +#: ../../TShockAPI/Commands.cs:5963 #, csharp-format msgid "You just killed {0}!" msgstr "你杀死了{0}" -#: ../../TShockAPI/Commands.cs:5945 +#: ../../TShockAPI/Commands.cs:5961 msgid "You just killed yourself!" msgstr "你被杀死了!" -#: ../../TShockAPI/Commands.cs:5744 +#: ../../TShockAPI/Commands.cs:5760 #, csharp-format msgid "You launched fireworks on {0}." -msgstr "你在{0}上发射了烟花" +msgstr "你在{0}上发射了烟花。" -#: ../../TShockAPI/Commands.cs:5742 +#: ../../TShockAPI/Commands.cs:5758 msgid "You launched fireworks on yourself." -msgstr "你在你自己的位置上发射了烟花" +msgstr "你在你自己的位置上发射了烟花。" -#: ../../TShockAPI/TShock.cs:608 +#: ../../TShockAPI/TShock.cs:618 msgid "You logged in from another location." msgstr "你已经从另一个IP地址进入了游戏。" -#: ../../TShockAPI/TShock.cs:599 +#: ../../TShockAPI/TShock.cs:609 msgid "You logged in from the same IP." msgstr "你已经从相同的IP地址进入了游戏。" -#: ../../TShockAPI/Commands.cs:5561 +#: ../../TShockAPI/Commands.cs:5577 msgid "You may now receive whispers from other players." msgstr "你将可以收到其他人给你发的私聊消息。" -#: ../../TShockAPI/GetDataHandlers.cs:2621 +#: ../../TShockAPI/GetDataHandlers.cs:2658 msgid "You may wish to consider removing the tshock.ignore.ssc permission or negating it for this player." msgstr "如果想使该玩家受到服务器端存档的管理,你可以移除tshock.ignore.ssc权限或添加反向权限。" -#: ../../TShockAPI/DB/RegionManager.cs:788 +#: ../../TShockAPI/DB/RegionManager.cs:762 msgid "You must be logged in to take advantage of protected regions." msgstr "你必须登录才能修改受保护区域。" -#: ../../TShockAPI/Commands.cs:5396 +#: ../../TShockAPI/Commands.cs:5412 msgid "You must provide a setup code!" msgstr "你必须提供一个setup!" -#: ../../TShockAPI/GetDataHandlers.cs:3448 +#: ../../TShockAPI/GetDataHandlers.cs:3566 +msgid "You must set ForceTime to normal via config to use the Enchanted Moondial." +msgstr "你必须将配置中的ForceTime设为normal才能使用附魔月晷。" + +#: ../../TShockAPI/GetDataHandlers.cs:3536 msgid "You must set ForceTime to normal via config to use the Enchanted Sundial." msgstr "你需要将配置文件中的ForceTime改为normal(时间正常流动)才可以使用附魔日晷。" -#: ../../TShockAPI/Commands.cs:2718 +#: ../../TShockAPI/Commands.cs:2733 msgid "You must spawn the Wall of Flesh in hell." msgstr "只有在地狱中才能生成血肉墙。" -#: ../../TShockAPI/Commands.cs:699 +#: ../../TShockAPI/Commands.cs:704 msgid "You must use this command in-game." msgstr "你必须在游戏内使用该指令。" -#: ../../TShockAPI/GetDataHandlers.cs:2523 +#: ../../TShockAPI/GetDataHandlers.cs:2559 msgid "You need to join with a hardcore player." msgstr "只有硬核模式的角色才能进入服务器。" -#: ../../TShockAPI/GetDataHandlers.cs:2517 +#: ../../TShockAPI/GetDataHandlers.cs:2553 msgid "You need to join with a mediumcore player or higher." msgstr "只有中核模式或更高难度的角色才能进入服务器。" -#: ../../TShockAPI/GetDataHandlers.cs:2511 +#: ../../TShockAPI/GetDataHandlers.cs:2547 msgid "You need to join with a softcore player." msgstr "只有软核模式的角色才能进入服务器。" -#: ../../TShockAPI/Bouncer.cs:551 +#: ../../TShockAPI/Bouncer.cs:566 msgid "You need to rejoin to ensure your trash can is cleared!" msgstr "请重新进入服务器以确保垃圾箱已清空!" -#: ../../TShockAPI/Commands.cs:2827 +#: ../../TShockAPI/Commands.cs:2842 #, csharp-format msgid "You spawned {0} {1} time." msgid_plural "You spawned {0} {1} times." -msgstr[0] "你生成了{0}{1}次" +msgstr[0] "你生成了{0}{1}次。" -#: ../../TShockAPI/Commands.cs:3329 +#: ../../TShockAPI/Commands.cs:3344 #, csharp-format msgid "You warped {0} to {1}." msgstr "你将{0}传送到了{1}。" -#: ../../TShockAPI/Commands.cs:2995 -#: ../../TShockAPI/Commands.cs:3035 -#: ../../TShockAPI/Commands.cs:3078 +#: ../../TShockAPI/Commands.cs:3010 +#: ../../TShockAPI/Commands.cs:3050 #: ../../TShockAPI/Commands.cs:3093 +#: ../../TShockAPI/Commands.cs:3108 #, csharp-format msgid "You were teleported to {0}." msgstr "你已被传送至 {0}。" -#: ../../TShockAPI/TShock.cs:1706 +#: ../../TShockAPI/TShock.cs:1724 msgid "You will be teleported to your last known location..." -msgstr "你将被传送到你最后一个记录点" +msgstr "你将被传送至上次离开时的位置…" -#: ../../TShockAPI/Commands.cs:5563 +#: ../../TShockAPI/Commands.cs:5579 msgid "You will no longer receive whispers from other players." msgstr "你将不会收到其他人给你发的私聊消息。" -#: ../../TShockAPI/Commands.cs:6485 +#: ../../TShockAPI/Commands.cs:6501 msgid "You're not allowed to change tiles here!" -msgstr "你没有在这里修改图格的权限,无法种树。" +msgstr "你没有在这里修改图格的权限,无法种树!" #: ../../TShockPluginManager/NugetCLI.cs:84 msgid "You're trying to sync, but you don't have a packages.json file." msgstr "使用sync进行同步插件,但没有找到插件列表packages.json文件。" -#: ../../TShockAPI/Commands.cs:1987 +#: ../../TShockAPI/Commands.cs:2001 msgid "Your account has been elevated to superadmin for 10 minutes." -msgstr "您的账户权限变更为超级管理员,有效期10分钟" +msgstr "你的账户权限变更为超级管理员,有效期10分钟。" -#: ../../TShockAPI/Commands.cs:1046 +#: ../../TShockAPI/Commands.cs:1056 #, csharp-format msgid "Your account, \"{0}\", has been registered." msgstr "你的账户,\"{0}\",已被注册。" -#: ../../TShockAPI/DB/GroupManager.cs:235 -#: ../../TShockAPI/DB/GroupManager.cs:237 +#: ../../TShockAPI/DB/GroupManager.cs:268 +#: ../../TShockAPI/DB/GroupManager.cs:270 msgid "Your account's group could not be loaded. Please contact server administrators about this." msgstr "你的用户组无法被加载,请联系服务器管理员处理此错误。" -#: ../../TShockAPI/Bouncer.cs:454 +#: ../../TShockAPI/TShock.cs:1459 +msgid "Your client didn't send the right connection information." +msgstr "你的客户端没有发送正确的连接信息。" + +#: ../../TShockAPI/Bouncer.cs:461 msgid "Your client sent a blank character name." msgstr "玩家名为空" -#: ../../TShockAPI/TShock.cs:1351 +#: ../../TShockAPI/TShock.cs:1359 msgid "Your client sent a blank UUID. Configure it to send one or use a different client." msgstr "你的客户端发送了一个空白的UUID。请使用另一个版本的客户端,或修改配置使其正常发送UUID。" -#: ../../TShockAPI/DB/RegionManager.cs:107 +#: ../../TShockAPI/DB/RegionManager.cs:103 msgid "Your database contains invalid UserIDs (they should be integers)." msgstr "你的数据库中有无效的用户ID(它们应该是整数)" -#: ../../TShockAPI/Commands.cs:1966 +#: ../../TShockAPI/Commands.cs:1980 #, csharp-format msgid "Your group has been changed to {0} for {1}" -msgstr "您的组别成功从{0}变到了{1}" +msgstr "你的组别成功从{0}变到了{1}" -#: ../../TShockAPI/Commands.cs:1960 +#: ../../TShockAPI/Commands.cs:1974 #, csharp-format msgid "Your group has temporarily been changed to {0}" -msgstr "您的组别暂时更改至{0}" +msgstr "你的组别暂时更改至{0}" -#: ../../TShockAPI/Commands.cs:6149 +#: ../../TShockAPI/Commands.cs:6165 msgid "Your inventory seems full." msgstr "你的物品栏好像满了。" -#: ../../TShockAPI/Commands.cs:1859 +#: ../../TShockAPI/Commands.cs:1873 msgid "Your local character data, from your initial connection, has been uploaded to the server." msgstr "已成功上传并使用加入服务器时的本地存档。" -#: ../../TShockAPI/Commands.cs:5385 +#: ../../TShockAPI/Commands.cs:5401 #, csharp-format msgid "Your new account has been verified, and the {0}setup system has been turned off." msgstr "用户验证成功,{0}setup认证系统已关闭。你可以在后台输入{0}user group <用户名> owner 来获取服主权限。" -#: ../../TShockAPI/GetDataHandlers.cs:3217 +#: ../../TShockAPI/GetDataHandlers.cs:3294 msgid "Your password did not match this character's password." msgstr "用户名或密码错误。" -#: ../../TShockAPI/Commands.cs:1047 +#: ../../TShockAPI/Commands.cs:1057 #, csharp-format msgid "Your password is {0}." msgstr "你的密码是{0}。" -#: ../../TShockAPI/Commands.cs:1978 +#: ../../TShockAPI/Commands.cs:1992 msgid "Your previous permission set has been restored." -msgstr "您之前的权限已被恢复" +msgstr "你已回复到原来的权限。" -#: ../../TShockAPI/Commands.cs:5791 +#: ../../TShockAPI/Commands.cs:5807 msgid "Your reference dumps have been created in the server folder." msgstr "参考信息已被保存到服务器对应的文件夹中。" -#: ../../TShockAPI/Commands.cs:1758 +#: ../../TShockAPI/Commands.cs:1772 msgid "Your server-side character data has been saved." msgstr "你的服务端存档已保存。" -#: ../../TShockAPI/TSPlayer.cs:1325 +#: ../../TShockAPI/TSPlayer.cs:1395 msgid "Your temporary group access has expired." msgstr "你的临时用户组权限已到期。" -#: ../../TShockAPI/Commands.cs:5199 +#: ../../TShockAPI/Commands.cs:5215 msgid "z <#> - Sets the z-order of the region." msgstr "z <领地名> <#> - 设置区域的z轴。" -#: ../../TShockAPI/GetDataHandlers.cs:3235 +#: ../../TShockAPI/GetDataHandlers.cs:3314 msgctxt "Likely non-vanilla client send zero-length password" msgid "You have been Bounced for invalid password." msgstr "你输入的密码异常。"