From f75c6720c812c42981f991e4da7e92bae578f24c Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 1 Mar 2025 18:27:48 +0100 Subject: [PATCH 01/14] Global glaciation event --- simulation_parameters/Constants.cs | 14 ++ .../microbe_stage/compounds.json | 2 +- src/general/GameWorld.cs | 2 + .../world_effects/WorldEffectVisuals.cs | 4 +- .../patch_events/GlobalGlaciationEvent.cs | 211 ++++++++++++++++++ .../UnderwaterVentEruptionEffect.cs | 2 +- src/microbe_stage/BiomeConditions.cs | 6 +- src/microbe_stage/editor/PatchMapNode.cs | 9 +- src/microbe_stage/editor/PatchMapNode.tscn | 20 +- 9 files changed, 258 insertions(+), 12 deletions(-) create mode 100644 src/general/world_effects/patch_events/GlobalGlaciationEvent.cs rename src/general/world_effects/{ => patch_events}/UnderwaterVentEruptionEffect.cs (98%) diff --git a/simulation_parameters/Constants.cs b/simulation_parameters/Constants.cs index 5afe52e259f..f5347b9def5 100644 --- a/simulation_parameters/Constants.cs +++ b/simulation_parameters/Constants.cs @@ -1314,6 +1314,10 @@ public static class Constants public const float VENT_ERUPTION_HYDROGEN_SULFIDE_INCREASE = 0.00004f; public const float VENT_ERUPTION_CARBON_DIOXIDE_INCREASE = 0.3f; + public const float OXYGEN_THRESHOLD = 0.07f; + public const float OXYGEN_PATCHES_THRESHOLD = 0.7f; + public const int GLOBAL_GLACIATION_CHANCE = 50; + // These control how many game entities can exist at once public const int TINY_MAX_SPAWNED_ENTITIES = 80; public const int VERY_SMALL_MAX_SPAWNED_ENTITIES = 150; @@ -1890,6 +1894,16 @@ public static class Constants [CELLULASE_ENZYME] = 4.5f, }; + public static readonly HashSet SurfaceBiomes = new() + { + BiomeType.Coastal, + BiomeType.Estuary, + BiomeType.Tidepool, + BiomeType.Epipelagic, + BiomeType.IceShelf, + BiomeType.Banana, + }; + /// /// The duration for which a save is considered recently performed. /// diff --git a/simulation_parameters/microbe_stage/compounds.json b/simulation_parameters/microbe_stage/compounds.json index 1a9480a47ff..a7e40d83d34 100644 --- a/simulation_parameters/microbe_stage/compounds.json +++ b/simulation_parameters/microbe_stage/compounds.json @@ -228,7 +228,7 @@ "Volume": 1, "IsCloud": false, "IsAlwaysUseful": true, - "IsEnvironmental": false, + "IsEnvironmental": true, "CanBeDistributed": true, "Colour": { "r": 1, diff --git a/src/general/GameWorld.cs b/src/general/GameWorld.cs index e584ffab0ea..65dc03bca90 100644 --- a/src/general/GameWorld.cs +++ b/src/general/GameWorld.cs @@ -85,6 +85,8 @@ public GameWorld(WorldGenerationSettings settings, Species? startingSpecies = nu TimedEffects.RegisterEffect("nitrogen_control", new NitrogenControlEffect(this)); TimedEffects.RegisterEffect("underwater_vent_eruption", new UnderwaterVentEruptionEffect(this, random.Next64())); + TimedEffects.RegisterEffect("snowball_earth_event", + new GlobalGlaciationEvent(this, random.Next64())); TimedEffects.RegisterEffect("sulfide_consumption", new HydrogenSulfideConsumptionEffect(this)); TimedEffects.RegisterEffect("compound_diffusion", new CompoundDiffusionEffect(this)); diff --git a/src/general/world_effects/WorldEffectVisuals.cs b/src/general/world_effects/WorldEffectVisuals.cs index 8d807fd2853..d84ddf5ce26 100644 --- a/src/general/world_effects/WorldEffectVisuals.cs +++ b/src/general/world_effects/WorldEffectVisuals.cs @@ -4,6 +4,6 @@ /// Used as a placeholder value instead of null /// None, - - UnderwaterVentEruption, + UnderwaterVentEruptionEvent, + GlaciationEvent, } diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs new file mode 100644 index 00000000000..ef23c99339b --- /dev/null +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -0,0 +1,211 @@ +using System.Collections.Generic; +using Godot; +using Newtonsoft.Json; +using Xoshiro.PRNG64; + +[JSONDynamicTypeAllowed] +public class GlobalGlaciationEvent : IWorldEffect +{ + private const string TemplateBiomeForIceChunks = "ice_shelf"; + private const string Prefix = "globalGlaciation_"; + private const string Background = "iceshelf"; + + private static readonly string[] IceChunksConfigurations = + ["iceShard", "iceChunkSmall", "iceChunkBig", "iceSnowflake"]; + + [JsonProperty] + private readonly XoShiRo256starstar random; + + private readonly bool hasEventAlreadyHappened = false; + + private readonly Dictionary> previousEnvironmentalChanges = new(); + private readonly Dictionary previousBackground = new(); + private readonly Dictionary previousLightColour = new(); + + /// + /// Tells how many generations the event will last. "-1" means that it hasn't started at all. + /// "0" means it has finished, and it won't happen again + /// + private int generationsLeft = -1; + + [JsonProperty] + private GameWorld targetWorld; + + public GlobalGlaciationEvent(GameWorld targetWorld, long randomSeed) + { + this.targetWorld = targetWorld; + random = new XoShiRo256starstar(randomSeed); + } + + [JsonConstructor] + public GlobalGlaciationEvent(GameWorld targetWorld, XoShiRo256starstar random) + { + this.targetWorld = targetWorld; + this.random = random; + } + + public void OnRegisterToWorld() { } + + public void OnTimePassed(double elapsed, double totalTimePassed) + { + if (generationsLeft > 0) + generationsLeft -= 1; + + if (generationsLeft > 0) + MarkPatches(totalTimePassed); + + if (hasEventAlreadyHappened) + return; + + if (generationsLeft == -1) + TryToTriggerEvent(totalTimePassed); + else if (generationsLeft == 0) + FinishEvent(); + } + + private void MarkPatches(double totalTimePassed) + { + foreach (var patch in targetWorld.Map.Patches.Values) + { + if (Constants.SurfaceBiomes.Contains(patch.BiomeType)) + { + patch.AddPatchEventRecord(WorldEffectVisuals.GlaciationEvent, totalTimePassed); + } + } + } + + private void TryToTriggerEvent(double totalTimePassed) + { + if (!AreConditionsMet()) + return; + + generationsLeft = random.Next(2, 6); + + foreach (var (index, patch) in targetWorld.Map.Patches) + { + if (Constants.SurfaceBiomes.Contains(patch.BiomeType)) + { + ChangePatchProperties(index, patch, totalTimePassed); + } + } + } + + private bool AreConditionsMet() + { + var numberOfSurfacePatches = 0; + var patchesExceedingOxygenLevel = 0; + foreach (var patch in targetWorld.Map.Patches.Values) + { + if (!Constants.SurfaceBiomes.Contains(patch.BiomeType)) + continue; + + var oxygenLevel = patch.Biome.ChangeableCompounds[Compound.Oxygen]; + if (oxygenLevel.Ambient >= Constants.OXYGEN_THRESHOLD) + patchesExceedingOxygenLevel += 1; + + numberOfSurfacePatches += 1; + } + + // Just prevent dividing by zero, but that shouldn't be possible anyway + numberOfSurfacePatches = numberOfSurfacePatches == 0 ? 1 : numberOfSurfacePatches; + + return (float)patchesExceedingOxygenLevel / numberOfSurfacePatches >= Constants.OXYGEN_PATCHES_THRESHOLD + && random.Next(100) >= Constants.GLOBAL_GLACIATION_CHANCE; + } + + private void ChangePatchProperties(int index, Patch patch, double totalTimePassed) + { + AdjustBackground(index, patch); + AdjustEnvironment(index, patch); + AdjustChunks(patch); + LogEvent(patch, totalTimePassed); + } + + private void AdjustBackground(int index, Patch patch) + { + previousBackground.Add(index, patch.BiomeTemplate.Background); + previousLightColour.Add(index, patch.BiomeTemplate.Sunlight.Colour); + + patch.BiomeTemplate.Background = Background; + patch.BiomeTemplate.Sunlight.Colour = new Color(0.8f, 0.9f, 1, 1); + } + + private void AdjustEnvironment(int index, Patch patch) + { + var currentTemperature = patch.Biome.ChangeableCompounds[Compound.Temperature]; + var currentSunlight = patch.Biome.ChangeableCompounds[Compound.Sunlight]; + + currentTemperature.Ambient = random.Next(-1, 5) - currentTemperature.Ambient; + currentSunlight.Ambient = 0.5f - currentSunlight.Ambient; + + var changes = new Dictionary + { + [Compound.Temperature] = currentTemperature.Ambient, + [Compound.Sunlight] = currentSunlight.Ambient, + }; + previousEnvironmentalChanges.Add(index, changes); + + patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, null); + } + + /// + /// Gets chunks from Iceshelf patch template and applies them to the patches. + /// + private void AdjustChunks(Patch patch) + { + var templateBiome = SimulationParameters.Instance.GetBiome(TemplateBiomeForIceChunks); + foreach (var configuration in IceChunksConfigurations) + { + var iceChunkConfiguration = templateBiome.Conditions.Chunks[configuration]; + iceChunkConfiguration.Density *= 10; + patch.Biome.Chunks.Add(Prefix + configuration, iceChunkConfiguration); + } + } + + private void LogEvent(Patch patch, double totalTimePassed) + { + patch.LogEvent(new LocalizedString("GLOBAL_GLACIATION_EVENT"), + true, true, "PatchIceShelf.svg"); + + if (patch.Visibility == MapElementVisibility.Shown) + { + targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_EVENT_LOG", patch.Name), + true, true, "PatchIceShelf.svg"); + } + + patch.AddPatchEventRecord(WorldEffectVisuals.GlaciationEvent, totalTimePassed); + } + + private void FinishEvent() + { + foreach (var index in previousEnvironmentalChanges.Keys) + { + if (!targetWorld.Map.Patches.TryGetValue(index, out var patch)) + continue; + + var biomeBackground = previousBackground[index]; + var biomeLightColour = previousLightColour[index]; + var changes = previousEnvironmentalChanges[index]; + + // Reverse the changes in sunlight and temperature values + foreach (var changeIndex in changes.Keys) + { + changes[changeIndex] = -changes[changeIndex]; + } + + patch.BiomeTemplate.Background = biomeBackground; + patch.BiomeTemplate.Sunlight.Colour = biomeLightColour; + patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, null); + + RemoveChunks(patch); + } + } + + private void RemoveChunks(Patch patch) + { + foreach (var configuration in IceChunksConfigurations) + { + patch.Biome.Chunks.Remove(Prefix + configuration); + } + } +} diff --git a/src/general/world_effects/UnderwaterVentEruptionEffect.cs b/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs similarity index 98% rename from src/general/world_effects/UnderwaterVentEruptionEffect.cs rename to src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs index dd6f07cc7c9..012c2711b93 100644 --- a/src/general/world_effects/UnderwaterVentEruptionEffect.cs +++ b/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs @@ -81,7 +81,7 @@ public void OnTimePassed(double elapsed, double totalTimePassed) true, true, "EruptionEvent.svg"); } - patch.AddPatchEventRecord(WorldEffectVisuals.UnderwaterVentEruption, totalTimePassed); + patch.AddPatchEventRecord(WorldEffectVisuals.UnderwaterVentEruptionEvent, totalTimePassed); } } } diff --git a/src/microbe_stage/BiomeConditions.cs b/src/microbe_stage/BiomeConditions.cs index c1d1ab04e80..dab2154709a 100644 --- a/src/microbe_stage/BiomeConditions.cs +++ b/src/microbe_stage/BiomeConditions.cs @@ -199,7 +199,7 @@ public bool TryGetCompound(Compound compound, CompoundAmountType amountType, out /// Specifies the compound cloud spawn sizes for all new non-environmental compounds /// public void ApplyLongTermCompoundChanges(Biome biomeDetails, Dictionary changes, - IReadOnlyDictionary newCloudSizes) + IReadOnlyDictionary? newCloudSizes) { var simulationParameters = SimulationParameters.Instance; @@ -211,7 +211,7 @@ public void ApplyLongTermCompoundChanges(Biome biomeDetails, Dictionary list) { eruptionEventIndicator.Visible = false; + glaciationEventIndicator.Visible = false; var count = list.Count; @@ -285,9 +289,12 @@ public void ShowEventVisuals(IReadOnlyList list) { case WorldEffectVisuals.None: break; - case WorldEffectVisuals.UnderwaterVentEruption: + case WorldEffectVisuals.UnderwaterVentEruptionEvent: eruptionEventIndicator.Visible = true; break; + case WorldEffectVisuals.GlaciationEvent: + glaciationEventIndicator.Visible = true; + break; default: GD.PrintErr($"Unknown event to display on patch map node: {list[i]}"); break; diff --git a/src/microbe_stage/editor/PatchMapNode.tscn b/src/microbe_stage/editor/PatchMapNode.tscn index a5b17246434..48ffebc34f2 100644 --- a/src/microbe_stage/editor/PatchMapNode.tscn +++ b/src/microbe_stage/editor/PatchMapNode.tscn @@ -1,9 +1,10 @@ -[gd_scene load_steps=8 format=3 uid="uid://c1qj43lbtctnv"] +[gd_scene load_steps=9 format=3 uid="uid://c1qj43lbtctnv"] [ext_resource type="Script" path="res://src/microbe_stage/editor/PatchMapNode.cs" id="2"] [ext_resource type="Texture2D" uid="uid://rckgbb1e3ia7" path="res://assets/textures/gui/bevel/PatchVents.svg" id="2_e0cfn"] [ext_resource type="Texture2D" uid="uid://c8mvyi3d47yvq" path="res://assets/textures/gui/bevel/Eruption.svg" id="4_t22aw"] [ext_resource type="LabelSettings" uid="uid://dcekwe8j7ep16" path="res://src/gui_common/fonts/Title-SemiBold-AlmostHuge.tres" id="4_tygy2"] +[ext_resource type="Texture2D" uid="uid://bmjju70usuwqo" path="res://assets/textures/gui/bevel/PatchIceShelf.svg" id="5_27mry"] [sub_resource type="StyleBoxFlat" id="3"] bg_color = Color(0.592157, 0.788235, 0.823529, 1) @@ -26,7 +27,7 @@ corner_radius_top_right = 5 corner_radius_bottom_right = 5 corner_radius_bottom_left = 5 -[node name="PatchMapNode" type="MarginContainer" node_paths=PackedStringArray("eruptionEventIndicator")] +[node name="PatchMapNode" type="MarginContainer" node_paths=PackedStringArray("eruptionEventIndicator", "glaciationEventIndicator")] custom_minimum_size = Vector2(64, 64) offset_right = 64.0 offset_bottom = 64.0 @@ -39,6 +40,7 @@ AdjacentPanelPath = NodePath("AdjacentToHighlight") UnknownLabelPath = NodePath("MarginContainer/MarginContainer/UnknownLabel") UnknownTextureFilePath = "res://assets/textures/gui/bevel/PatchAbyss.svg" eruptionEventIndicator = NodePath("EventIcons/Eruption") +glaciationEventIndicator = NodePath("EventIcons/GlobalGlaciation") [node name="AdjacentToHighlight" type="Panel" parent="."] visible = false @@ -87,8 +89,8 @@ label_settings = ExtResource("4_tygy2") horizontal_alignment = 1 vertical_alignment = 1 -[node name="EventIcons" type="VBoxContainer" parent="."] -custom_minimum_size = Vector2(16, 64) +[node name="EventIcons" type="HBoxContainer" parent="."] +custom_minimum_size = Vector2(64, 16) layout_mode = 2 size_flags_vertical = 0 mouse_filter = 2 @@ -103,5 +105,15 @@ texture = ExtResource("4_t22aw") expand_mode = 2 stretch_mode = 4 +[node name="GlobalGlaciation" type="TextureRect" parent="EventIcons"] +visible = false +custom_minimum_size = Vector2(16, 16) +layout_mode = 2 +tooltip_text = "GLOBAL_GLACIATION_EVENT_TOOLTIP" +mouse_filter = 0 +texture = ExtResource("5_27mry") +expand_mode = 2 +stretch_mode = 4 + [connection signal="mouse_entered" from="." to="." method="OnMouseEnter"] [connection signal="mouse_exited" from="." to="." method="OnMouseExit"] From 74fceef5d23a285009a63385a751a2469eaf6653 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 1 Mar 2025 18:29:03 +0100 Subject: [PATCH 02/14] Name change --- src/general/GameWorld.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/general/GameWorld.cs b/src/general/GameWorld.cs index 65dc03bca90..914edc8545b 100644 --- a/src/general/GameWorld.cs +++ b/src/general/GameWorld.cs @@ -85,7 +85,7 @@ public GameWorld(WorldGenerationSettings settings, Species? startingSpecies = nu TimedEffects.RegisterEffect("nitrogen_control", new NitrogenControlEffect(this)); TimedEffects.RegisterEffect("underwater_vent_eruption", new UnderwaterVentEruptionEffect(this, random.Next64())); - TimedEffects.RegisterEffect("snowball_earth_event", + TimedEffects.RegisterEffect("global_glaciation_change", new GlobalGlaciationEvent(this, random.Next64())); TimedEffects.RegisterEffect("sulfide_consumption", new HydrogenSulfideConsumptionEffect(this)); From d2958a6c2c4036c93a0034d90654191136d8be3d Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sun, 2 Mar 2025 00:06:02 +0100 Subject: [PATCH 03/14] Save fix --- .../patch_events/GlobalGlaciationEvent.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index ef23c99339b..ad2cc0efeea 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -16,16 +16,23 @@ public class GlobalGlaciationEvent : IWorldEffect [JsonProperty] private readonly XoShiRo256starstar random; - private readonly bool hasEventAlreadyHappened = false; + [JsonProperty] + private readonly bool hasEventAlreadyHappened; + [JsonProperty] private readonly Dictionary> previousEnvironmentalChanges = new(); + + [JsonProperty] private readonly Dictionary previousBackground = new(); + + [JsonProperty] private readonly Dictionary previousLightColour = new(); /// /// Tells how many generations the event will last. "-1" means that it hasn't started at all. /// "0" means it has finished, and it won't happen again /// + [JsonProperty] private int generationsLeft = -1; [JsonProperty] @@ -117,7 +124,7 @@ private void ChangePatchProperties(int index, Patch patch, double totalTimePasse { AdjustBackground(index, patch); AdjustEnvironment(index, patch); - AdjustChunks(patch); + AddIceChunks(patch); LogEvent(patch, totalTimePassed); } @@ -151,7 +158,7 @@ private void AdjustEnvironment(int index, Patch patch) /// /// Gets chunks from Iceshelf patch template and applies them to the patches. /// - private void AdjustChunks(Patch patch) + private void AddIceChunks(Patch patch) { var templateBiome = SimulationParameters.Instance.GetBiome(TemplateBiomeForIceChunks); foreach (var configuration in IceChunksConfigurations) From 86b9a3a0ed4ef1c45c3354cb037a58438b14f4e1 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Tue, 4 Mar 2025 21:45:20 +0100 Subject: [PATCH 04/14] Fix --- simulation_parameters/Constants.cs | 18 +++------- .../world_effects/WorldEffectVisuals.cs | 4 +-- .../patch_events/GlobalGlaciationEvent.cs | 36 +++++++++++-------- .../UnderwaterVentEruptionEffect.cs | 2 +- src/microbe_stage/BiomeConditions.cs | 4 +-- src/microbe_stage/editor/PatchMapNode.cs | 4 +-- 6 files changed, 33 insertions(+), 35 deletions(-) diff --git a/simulation_parameters/Constants.cs b/simulation_parameters/Constants.cs index f5347b9def5..4795be9b655 100644 --- a/simulation_parameters/Constants.cs +++ b/simulation_parameters/Constants.cs @@ -1314,9 +1314,11 @@ public static class Constants public const float VENT_ERUPTION_HYDROGEN_SULFIDE_INCREASE = 0.00004f; public const float VENT_ERUPTION_CARBON_DIOXIDE_INCREASE = 0.3f; - public const float OXYGEN_THRESHOLD = 0.07f; - public const float OXYGEN_PATCHES_THRESHOLD = 0.7f; - public const int GLOBAL_GLACIATION_CHANCE = 50; + public const float GLOBAL_GLACIATION_OXYGEN_THRESHOLD = 0.07f; + public const float GLOBAL_GLACIATION_PATCHES_THRESHOLD = 0.7f; + public const float GLOBAL_GLACIATION_CHANCE = 0.5F; + public const int GLOBAL_GLACIATION_MIN_DURATION = 2; + public const int GLOBAL_GLACIATION_MAX_DURATION = 6; // These control how many game entities can exist at once public const int TINY_MAX_SPAWNED_ENTITIES = 80; @@ -1894,16 +1896,6 @@ public static class Constants [CELLULASE_ENZYME] = 4.5f, }; - public static readonly HashSet SurfaceBiomes = new() - { - BiomeType.Coastal, - BiomeType.Estuary, - BiomeType.Tidepool, - BiomeType.Epipelagic, - BiomeType.IceShelf, - BiomeType.Banana, - }; - /// /// The duration for which a save is considered recently performed. /// diff --git a/src/general/world_effects/WorldEffectVisuals.cs b/src/general/world_effects/WorldEffectVisuals.cs index d84ddf5ce26..1e9be671c03 100644 --- a/src/general/world_effects/WorldEffectVisuals.cs +++ b/src/general/world_effects/WorldEffectVisuals.cs @@ -4,6 +4,6 @@ /// Used as a placeholder value instead of null /// None, - UnderwaterVentEruptionEvent, - GlaciationEvent, + UnderwaterVentEruption, + GlobalGlaciation, } diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index ad2cc0efeea..c7f5f009c4f 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -16,9 +16,6 @@ public class GlobalGlaciationEvent : IWorldEffect [JsonProperty] private readonly XoShiRo256starstar random; - [JsonProperty] - private readonly bool hasEventAlreadyHappened; - [JsonProperty] private readonly Dictionary> previousEnvironmentalChanges = new(); @@ -28,6 +25,9 @@ public class GlobalGlaciationEvent : IWorldEffect [JsonProperty] private readonly Dictionary previousLightColour = new(); + [JsonProperty] + private bool hasEventAlreadyHappened; + /// /// Tells how many generations the event will last. "-1" means that it hasn't started at all. /// "0" means it has finished, and it won't happen again @@ -51,7 +51,9 @@ public GlobalGlaciationEvent(GameWorld targetWorld, XoShiRo256starstar random) this.random = random; } - public void OnRegisterToWorld() { } + public void OnRegisterToWorld() + { + } public void OnTimePassed(double elapsed, double totalTimePassed) { @@ -65,18 +67,22 @@ public void OnTimePassed(double elapsed, double totalTimePassed) return; if (generationsLeft == -1) + { TryToTriggerEvent(totalTimePassed); + } else if (generationsLeft == 0) + { FinishEvent(); + } } private void MarkPatches(double totalTimePassed) { foreach (var patch in targetWorld.Map.Patches.Values) { - if (Constants.SurfaceBiomes.Contains(patch.BiomeType)) + if (patch.Depth[0] == 0) { - patch.AddPatchEventRecord(WorldEffectVisuals.GlaciationEvent, totalTimePassed); + patch.AddPatchEventRecord(WorldEffectVisuals.GlobalGlaciation, totalTimePassed); } } } @@ -86,11 +92,11 @@ private void TryToTriggerEvent(double totalTimePassed) if (!AreConditionsMet()) return; - generationsLeft = random.Next(2, 6); + generationsLeft = random.Next(Constants.GLOBAL_GLACIATION_MIN_DURATION, Constants.GLOBAL_GLACIATION_MAX_DURATION); foreach (var (index, patch) in targetWorld.Map.Patches) { - if (Constants.SurfaceBiomes.Contains(patch.BiomeType)) + if (patch.Depth[0] == 0) { ChangePatchProperties(index, patch, totalTimePassed); } @@ -103,11 +109,11 @@ private bool AreConditionsMet() var patchesExceedingOxygenLevel = 0; foreach (var patch in targetWorld.Map.Patches.Values) { - if (!Constants.SurfaceBiomes.Contains(patch.BiomeType)) + if (patch.Depth[0] != 0) continue; - var oxygenLevel = patch.Biome.ChangeableCompounds[Compound.Oxygen]; - if (oxygenLevel.Ambient >= Constants.OXYGEN_THRESHOLD) + patch.Biome.TryGetCompound(Compound.Oxygen, CompoundAmountType.Biome, out var oxygenLevel); + if (oxygenLevel.Ambient >= Constants.GLOBAL_GLACIATION_OXYGEN_THRESHOLD) patchesExceedingOxygenLevel += 1; numberOfSurfacePatches += 1; @@ -116,8 +122,8 @@ private bool AreConditionsMet() // Just prevent dividing by zero, but that shouldn't be possible anyway numberOfSurfacePatches = numberOfSurfacePatches == 0 ? 1 : numberOfSurfacePatches; - return (float)patchesExceedingOxygenLevel / numberOfSurfacePatches >= Constants.OXYGEN_PATCHES_THRESHOLD - && random.Next(100) >= Constants.GLOBAL_GLACIATION_CHANCE; + return (float)patchesExceedingOxygenLevel / numberOfSurfacePatches >= Constants.GLOBAL_GLACIATION_PATCHES_THRESHOLD + && random.NextFloat() <= Constants.GLOBAL_GLACIATION_CHANCE; } private void ChangePatchProperties(int index, Patch patch, double totalTimePassed) @@ -180,7 +186,7 @@ private void LogEvent(Patch patch, double totalTimePassed) true, true, "PatchIceShelf.svg"); } - patch.AddPatchEventRecord(WorldEffectVisuals.GlaciationEvent, totalTimePassed); + patch.AddPatchEventRecord(WorldEffectVisuals.GlobalGlaciation, totalTimePassed); } private void FinishEvent() @@ -202,7 +208,7 @@ private void FinishEvent() patch.BiomeTemplate.Background = biomeBackground; patch.BiomeTemplate.Sunlight.Colour = biomeLightColour; - patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, null); + patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, new Dictionary()); RemoveChunks(patch); } diff --git a/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs b/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs index 012c2711b93..dd6f07cc7c9 100644 --- a/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs +++ b/src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs @@ -81,7 +81,7 @@ public void OnTimePassed(double elapsed, double totalTimePassed) true, true, "EruptionEvent.svg"); } - patch.AddPatchEventRecord(WorldEffectVisuals.UnderwaterVentEruptionEvent, totalTimePassed); + patch.AddPatchEventRecord(WorldEffectVisuals.UnderwaterVentEruption, totalTimePassed); } } } diff --git a/src/microbe_stage/BiomeConditions.cs b/src/microbe_stage/BiomeConditions.cs index dab2154709a..742556de59b 100644 --- a/src/microbe_stage/BiomeConditions.cs +++ b/src/microbe_stage/BiomeConditions.cs @@ -199,7 +199,7 @@ public bool TryGetCompound(Compound compound, CompoundAmountType amountType, out /// Specifies the compound cloud spawn sizes for all new non-environmental compounds /// public void ApplyLongTermCompoundChanges(Biome biomeDetails, Dictionary changes, - IReadOnlyDictionary? newCloudSizes) + IReadOnlyDictionary newCloudSizes) { var simulationParameters = SimulationParameters.Instance; @@ -211,7 +211,7 @@ public void ApplyLongTermCompoundChanges(Biome biomeDetails, Dictionary list) { case WorldEffectVisuals.None: break; - case WorldEffectVisuals.UnderwaterVentEruptionEvent: + case WorldEffectVisuals.UnderwaterVentEruption: eruptionEventIndicator.Visible = true; break; - case WorldEffectVisuals.GlaciationEvent: + case WorldEffectVisuals.GlobalGlaciation: glaciationEventIndicator.Visible = true; break; default: From 8799c1368fb19c5bc78ad599d1bfa83b0054da80 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Fri, 7 Mar 2025 21:52:43 +0100 Subject: [PATCH 05/14] Use patch snapshot --- .../patch_events/GlobalGlaciationEvent.cs | 83 ++++++++++++------- src/microbe_stage/Patch.cs | 13 ++- src/microbe_stage/editor/MicrobeEditor.cs | 1 + .../editor/MulticellularEditor.cs | 1 + 4 files changed, 63 insertions(+), 35 deletions(-) diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index c7f5f009c4f..7826d0359fb 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -17,13 +17,7 @@ public class GlobalGlaciationEvent : IWorldEffect private readonly XoShiRo256starstar random; [JsonProperty] - private readonly Dictionary> previousEnvironmentalChanges = new(); - - [JsonProperty] - private readonly Dictionary previousBackground = new(); - - [JsonProperty] - private readonly Dictionary previousLightColour = new(); + private readonly List modifiedPatchesIds = new(); [JsonProperty] private bool hasEventAlreadyHappened; @@ -35,6 +29,9 @@ public class GlobalGlaciationEvent : IWorldEffect [JsonProperty] private int generationsLeft = -1; + [JsonProperty] + private int eventDuration = 0; + [JsonProperty] private GameWorld targetWorld; @@ -89,10 +86,13 @@ private void MarkPatches(double totalTimePassed) private void TryToTriggerEvent(double totalTimePassed) { + // if (totalTimePassed <= 200_000_000) + // return; if (!AreConditionsMet()) return; - generationsLeft = random.Next(Constants.GLOBAL_GLACIATION_MIN_DURATION, Constants.GLOBAL_GLACIATION_MAX_DURATION); + eventDuration = random.Next(Constants.GLOBAL_GLACIATION_MIN_DURATION, Constants.GLOBAL_GLACIATION_MAX_DURATION); + generationsLeft = eventDuration; foreach (var (index, patch) in targetWorld.Map.Patches) { @@ -128,22 +128,22 @@ private bool AreConditionsMet() private void ChangePatchProperties(int index, Patch patch, double totalTimePassed) { - AdjustBackground(index, patch); - AdjustEnvironment(index, patch); + modifiedPatchesIds.Add(index); + AdjustBackground(patch); + AdjustEnvironment(patch); AddIceChunks(patch); LogEvent(patch, totalTimePassed); } - private void AdjustBackground(int index, Patch patch) + private void AdjustBackground(Patch patch) { - previousBackground.Add(index, patch.BiomeTemplate.Background); - previousLightColour.Add(index, patch.BiomeTemplate.Sunlight.Colour); - patch.BiomeTemplate.Background = Background; - patch.BiomeTemplate.Sunlight.Colour = new Color(0.8f, 0.9f, 1, 1); + patch.CurrentSnapshot.Background = Background; + patch.BiomeTemplate.Sunlight.Colour = new Color(0.8f, 0.8f, 1, 1); + patch.CurrentSnapshot.LightColour = new Color(0.8f, 0.8f, 1, 1); } - private void AdjustEnvironment(int index, Patch patch) + private void AdjustEnvironment(Patch patch) { var currentTemperature = patch.Biome.ChangeableCompounds[Compound.Temperature]; var currentSunlight = patch.Biome.ChangeableCompounds[Compound.Sunlight]; @@ -156,9 +156,8 @@ private void AdjustEnvironment(int index, Patch patch) [Compound.Temperature] = currentTemperature.Ambient, [Compound.Sunlight] = currentSunlight.Ambient, }; - previousEnvironmentalChanges.Add(index, changes); - patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, null); + patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, new Dictionary()); } /// @@ -191,29 +190,49 @@ private void LogEvent(Patch patch, double totalTimePassed) private void FinishEvent() { - foreach (var index in previousEnvironmentalChanges.Keys) + hasEventAlreadyHappened = true; + foreach (var index in modifiedPatchesIds) { if (!targetWorld.Map.Patches.TryGetValue(index, out var patch)) continue; - var biomeBackground = previousBackground[index]; - var biomeLightColour = previousLightColour[index]; - var changes = previousEnvironmentalChanges[index]; - - // Reverse the changes in sunlight and temperature values - foreach (var changeIndex in changes.Keys) - { - changes[changeIndex] = -changes[changeIndex]; - } - - patch.BiomeTemplate.Background = biomeBackground; - patch.BiomeTemplate.Sunlight.Colour = biomeLightColour; - patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, new Dictionary()); + PatchSnapshot patchSnapshot = patch.History[eventDuration]; + ResetBackground(patch, patchSnapshot); + ResetEnvironment(patch, patchSnapshot); RemoveChunks(patch); } } + private void ResetBackground(Patch patch, PatchSnapshot patchSnapshot) + { + var biomeBackground = patchSnapshot.Background; + var biomeLightColour = patchSnapshot.LightColour; + patch.BiomeTemplate.Background = biomeBackground; + patch.BiomeTemplate.Sunlight.Colour = biomeLightColour; + patch.CurrentSnapshot.Background = biomeBackground; + patch.CurrentSnapshot.LightColour = biomeLightColour; + } + + private void ResetEnvironment(Patch patch, PatchSnapshot patchSnapshot) + { + var currentTemperature = patch.Biome.ChangeableCompounds[Compound.Temperature]; + var currentSunlight = patch.Biome.ChangeableCompounds[Compound.Sunlight]; + var previousTemperature = patchSnapshot.Biome.ChangeableCompounds[Compound.Temperature]; + var previousSunlight = patchSnapshot.Biome.ChangeableCompounds[Compound.Sunlight]; + + currentTemperature.Ambient = previousTemperature.Ambient - currentTemperature.Ambient; + currentSunlight.Ambient = 0.5f - currentSunlight.Ambient - previousSunlight.Ambient; + + var changes = new Dictionary + { + [Compound.Temperature] = currentTemperature.Ambient, + [Compound.Sunlight] = currentSunlight.Ambient, + }; + + patch.Biome.ApplyLongTermCompoundChanges(patch.BiomeTemplate, changes, new Dictionary()); + } + private void RemoveChunks(Patch patch) { foreach (var configuration in IceChunksConfigurations) diff --git a/src/microbe_stage/Patch.cs b/src/microbe_stage/Patch.cs index 7d82c5c05ff..9156855f724 100644 --- a/src/microbe_stage/Patch.cs +++ b/src/microbe_stage/Patch.cs @@ -52,7 +52,8 @@ public Patch(LocalizedString name, int id, Biome biomeTemplate, BiomeType biomeT ID = id; BiomeTemplate = biomeTemplate; BiomeType = biomeType; - currentSnapshot = new PatchSnapshot((BiomeConditions)biomeTemplate.Conditions.Clone()); + currentSnapshot = new PatchSnapshot((BiomeConditions)biomeTemplate.Conditions.Clone(), + biomeTemplate.Sunlight.Colour, biomeTemplate.Background); Region = region; } @@ -68,6 +69,8 @@ public Patch(LocalizedString name, int id, Biome biomeTemplate, PatchSnapshot cu Name = name; ID = id; BiomeTemplate = biomeTemplate; + BiomeTemplate.Background = currentSnapshot.Background; + BiomeTemplate.Sunlight.Colour = currentSnapshot.LightColour; this.currentSnapshot = currentSnapshot; } @@ -648,12 +651,16 @@ public class PatchSnapshot : ICloneable public Dictionary RecordedSpeciesInfo = new(); public BiomeConditions Biome; + public Color LightColour; + public string Background; public List EventsLog = new(); - public PatchSnapshot(BiomeConditions biome) + public PatchSnapshot(BiomeConditions biome, Color lightColour, string background) { Biome = biome; + Background = background; + LightColour = lightColour; } public void ReplaceSpecies(Species old, Species newSpecies) @@ -676,7 +683,7 @@ public void ReplaceSpecies(Species old, Species newSpecies) public object Clone() { // We only do a shallow copy of RecordedSpeciesInfo here as SpeciesInfo objects are never modified. - var result = new PatchSnapshot((BiomeConditions)Biome.Clone()) + var result = new PatchSnapshot((BiomeConditions)Biome.Clone(), new Color(LightColour), Background) { TimePeriod = TimePeriod, SpeciesInPatch = new Dictionary(SpeciesInPatch), diff --git a/src/microbe_stage/editor/MicrobeEditor.cs b/src/microbe_stage/editor/MicrobeEditor.cs index d8237f5e218..a4281e53f6e 100644 --- a/src/microbe_stage/editor/MicrobeEditor.cs +++ b/src/microbe_stage/editor/MicrobeEditor.cs @@ -257,6 +257,7 @@ protected override void ElapseEditorEntryTime() { // TODO: select which units will be used for the master elapsed time counter CurrentGame.GameWorld.OnTimePassed(1); + cellEditorTab.UpdateBackgroundImage(CurrentPatch.BiomeTemplate); } protected override GameProperties StartNewGameForEditor() diff --git a/src/multicellular_stage/editor/MulticellularEditor.cs b/src/multicellular_stage/editor/MulticellularEditor.cs index bec74aa379b..7d31006710c 100644 --- a/src/multicellular_stage/editor/MulticellularEditor.cs +++ b/src/multicellular_stage/editor/MulticellularEditor.cs @@ -304,6 +304,7 @@ protected override void ElapseEditorEntryTime() { // TODO: select which units will be used for the master elapsed time counter CurrentGame.GameWorld.OnTimePassed(1); + cellEditorTab.UpdateBackgroundImage(CurrentPatch.BiomeTemplate); } protected override GameProperties StartNewGameForEditor() From ede2f6c536327baa4214fa61d28e98f2d23131c6 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 8 Mar 2025 21:08:46 +0100 Subject: [PATCH 06/14] Text --- locale/af.po | 14 +++++++++++++- locale/ar.po | 14 +++++++++++++- locale/be.po | 12 +++++++++++- locale/bg.po | 14 +++++++++++++- locale/bn.po | 14 +++++++++++++- locale/ca.po | 14 +++++++++++++- locale/cs.po | 14 +++++++++++++- locale/da.po | 14 +++++++++++++- locale/de.po | 14 +++++++++++++- locale/el.po | 11 ++++++++++- locale/en.po | 11 ++++++++++- locale/eo.po | 14 +++++++++++++- locale/es.po | 14 +++++++++++++- locale/es_AR.po | 14 +++++++++++++- locale/et.po | 14 +++++++++++++- locale/fi.po | 14 +++++++++++++- locale/fr.po | 14 +++++++++++++- locale/frm.po | 11 ++++++++++- locale/gsw.po | 12 +++++++++++- locale/he.po | 14 +++++++++++++- locale/hr.po | 12 +++++++++++- locale/hu.po | 14 +++++++++++++- locale/id.po | 14 +++++++++++++- locale/it.po | 14 +++++++++++++- locale/ja.po | 11 ++++++++++- locale/ka.po | 14 +++++++++++++- locale/ko.po | 14 +++++++++++++- locale/la.po | 14 +++++++++++++- locale/lb_LU.po | 14 +++++++++++++- locale/lt.po | 14 +++++++++++++- locale/lv.po | 14 +++++++++++++- locale/messages.pot | 24 ++++++++++++++++++------ locale/mk.po | 14 +++++++++++++- locale/nb_NO.po | 14 +++++++++++++- locale/nl.po | 14 +++++++++++++- locale/nl_BE.po | 14 +++++++++++++- locale/pl.po | 14 +++++++++++++- locale/pt_BR.po | 14 +++++++++++++- locale/pt_PT.po | 14 +++++++++++++- locale/ro.po | 14 +++++++++++++- locale/ru.po | 14 +++++++++++++- locale/si_LK.po | 12 +++++++++++- locale/sk.po | 14 +++++++++++++- locale/sr_Cyrl.po | 14 +++++++++++++- locale/sr_Latn.po | 14 +++++++++++++- locale/sv.po | 14 +++++++++++++- locale/th_TH.po | 14 +++++++++++++- locale/tok.po | 14 +++++++++++++- locale/tr.po | 14 +++++++++++++- locale/tt.po | 11 ++++++++++- locale/uk.po | 14 +++++++++++++- locale/vi.po | 11 ++++++++++- locale/zh_CN.po | 14 +++++++++++++- locale/zh_TW.po | 14 +++++++++++++- 54 files changed, 681 insertions(+), 59 deletions(-) diff --git a/locale/af.po b/locale/af.po index 79ecc4aa765..a942b673c72 100644 --- a/locale/af.po +++ b/locale/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2146,6 +2146,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ar.po b/locale/ar.po index 1bbde94cb6f..c42bda76699 100644 --- a/locale/ar.po +++ b/locale/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2023-03-13 09:01+0000\n" "Last-Translator: Xradiation \n" "Language-Team: Arabic \n" @@ -2165,6 +2165,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/be.po b/locale/be.po index 39aff9f70db..67b52dbe2e4 100644 --- a/locale/be.po +++ b/locale/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2023-09-21 09:24+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Belarusian \n" @@ -2145,6 +2145,16 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Перамясціцца на стадыю Абуджэння. Дасягома толькі калі ў вас ёсць дастатковая колькасць развітасці мозга (Размясціце аксон у які небудзь тып клеткі)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/bg.po b/locale/bg.po index a513eb8fc41..e1f2cdb3cb1 100644 --- a/locale/bg.po +++ b/locale/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -2456,6 +2456,18 @@ msgstr "Отваряне на хранилището ни в „GitHub“" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Обща популация:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Обща популация:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Пробуждане" + msgid "GLOBAL_INITIAL_LETTER" msgstr "С" diff --git a/locale/bn.po b/locale/bn.po index 22e3ad84577..b642bb624fc 100644 --- a/locale/bn.po +++ b/locale/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2023-09-10 12:18+0000\n" "Last-Translator: Mahbeer Alam Sarker \n" "Language-Team: Bengali \n" @@ -2167,6 +2167,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "অর্ধেক জন সংখ্যা" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "অর্ধেক জন সংখ্যা" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "জাগ্রত পর্যায়ে চলে যাওয়া। আপনার পর্যাপ্ত মস্তিষ্কের শক্তি (অ্যাক্সন সহ টিস্যু টাইপ) থাকলে উপলব্ধ।" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ca.po b/locale/ca.po index 669c61f2521..cb61fc7b2b5 100644 --- a/locale/ca.po +++ b/locale/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -2425,6 +2425,18 @@ msgstr "Sortir del joc" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Població Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Població Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Despertar" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/cs.po b/locale/cs.po index 9528050e157..6df2cd6beef 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -2493,6 +2493,18 @@ msgstr "Navštiv náš GitHub repozitář" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Celková populace:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Celková populace:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Přejděte do fáze Probuzení. Dostupné, jakmile máte dostatečnou sílu mozku (typ tkáně s axony)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/da.po b/locale/da.po index d8651222dc0..f3b6e33d012 100644 --- a/locale/da.po +++ b/locale/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2024-06-09 13:22+0000\n" "Last-Translator: Magnus Norling Svane \n" "Language-Team: Danish \n" @@ -2130,6 +2130,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Halver Bestand" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Halver Bestand" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Tag til opvågningsstadiet. Tilgængelig, når du har nok hjernekraft (vævstype med axoner)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/de.po b/locale/de.po index 1d33d9d3b8b..2fbd40a3fd5 100644 --- a/locale/de.po +++ b/locale/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: German \n" @@ -2295,6 +2295,18 @@ msgstr "Besuche unser GitHub Repositorium" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Gesamtpopulation:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Gesamtpopulation:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Fortschritt zum Erwachen-Stadium. Erst möglich wenn ausreichend Gehirnkapazität zur Verfügung steht (Hirngewebe mit Axonen) ." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/el.po b/locale/el.po index 7d291434ed9..2142f2bef2a 100644 --- a/locale/el.po +++ b/locale/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2022-03-31 05:02+0000\n" "Last-Translator: Apostolos Paschidis \n" "Language-Team: Greek \n" @@ -2143,6 +2143,15 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/en.po b/locale/en.po index bcdb35d3f59..0802b17b5e7 100644 --- a/locale/en.po +++ b/locale/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-04 13:27+0200\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: English \n" @@ -2293,6 +2293,15 @@ msgstr "Visit our GitHub repository" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Global glaciation event" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Global glaciation event in {0}" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Global glaciation event has been caused by rising concentration of [thrive:compound type=\"oxygen\"][/thrive:compound] in the atmosphere. It will persist for several generations, reducing [thrive:compound type=\"sunlight\"][/thrive:compound] and [thrive:compound type=\"temperature\"][/thrive:compound] levels across all surface patches. That will make photosynthesis less viable so be cautious if your cell depends on it! Snow chunks also appear in these patches now." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/eo.po b/locale/eo.po index fc3786a8591..003483843f8 100644 --- a/locale/eo.po +++ b/locale/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -2469,6 +2469,18 @@ msgstr "Aldonunovan funkcion por klavo" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Aldonunovan funkcion por klavo" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/es.po b/locale/es.po index 464d5403759..819d9c9d908 100644 --- a/locale/es.po +++ b/locale/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish \n" @@ -2314,6 +2314,18 @@ msgstr "Visita nuestro repositorio de GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Población Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Población Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Avanzar al Estadio del Despertar. Solo disponible una vez tengas suficiente poder cerebral (tejido con axones)" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/es_AR.po b/locale/es_AR.po index fb15e8b958f..fc7bec02185 100644 --- a/locale/es_AR.po +++ b/locale/es_AR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish (Argentina) \n" @@ -2319,6 +2319,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "población:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "población:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Moverse a la etapa Despertar. Solo accesible cuando tengas suficiente poder cerebral (tipo de tejido con axones)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/et.po b/locale/et.po index 3384d6f02d2..8e85dc61cba 100644 --- a/locale/et.po +++ b/locale/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Estonian \n" @@ -2517,6 +2517,18 @@ msgstr "vabasurm" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Rahvaarv kokku:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Rahvaarv kokku:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "vabasurm" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/fi.po b/locale/fi.po index 098ce1b2479..3eaa7e8ab42 100644 --- a/locale/fi.po +++ b/locale/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-06 07:27+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Finnish \n" @@ -2541,6 +2541,18 @@ msgstr "Kuole" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Kanta:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Kanta:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Herää" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/fr.po b/locale/fr.po index 79d1d3ec0c0..c1c9d7627ad 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: French \n" @@ -2364,6 +2364,18 @@ msgstr "Visitez notre dépôt Github" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Population totale :" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Population totale :" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Passer à la Phase d'Éveil. Disponible une fois que vous avez assez de puissance cérébrale (Type de tissu avec axones)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/frm.po b/locale/frm.po index 1fef5a9bbdc..1a470a8ee08 100644 --- a/locale/frm.po +++ b/locale/frm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,15 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/gsw.po b/locale/gsw.po index 725cba8d33d..e7b48f95e53 100644 --- a/locale/gsw.po +++ b/locale/gsw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-01 13:57+0000\n" "Last-Translator: Argakyan \n" "Language-Team: Alemannic \n" @@ -2186,6 +2186,16 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Fortschritt zum Erwachene-Stadium. Erscht mögli wenn uusriichend Ghirnkapazität z'Verfüegig staht (Hirngwäb mit Axone) ." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/he.po b/locale/he.po index d77172c31f4..d9e984fcdbc 100644 --- a/locale/he.po +++ b/locale/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew \n" @@ -2437,6 +2437,18 @@ msgstr "צפו בספריית GitHub שלנו" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "כלל האוכלוסיה:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "כלל האוכלוסיה:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "עבור לשלב ההתעוררות. זמין כאשר יש לך מספיק יכולת שכלית (רקמה מסוג עם אקסונים)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "ג" diff --git a/locale/hr.po b/locale/hr.po index 44200c57c8b..de987a34abc 100644 --- a/locale/hr.po +++ b/locale/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian \n" @@ -2211,6 +2211,16 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Kreni u fazu buđenja. Moguće kada imaš dovoljno moždane snage (vrsta tkiva s aksionima)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/hu.po b/locale/hu.po index 010255689c3..b4ed3e1267f 100644 --- a/locale/hu.po +++ b/locale/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -2486,6 +2486,18 @@ msgstr "Kilépés a játékból" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Teljes populáció:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Teljes populáció:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Lépj át az Ébredés szakaszába. Elérhető, ha rendelkezel elegendő agykapacitással (axonokkal rendelkező szövettípus)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/id.po b/locale/id.po index d1789b8da21..05b21a90b2b 100644 --- a/locale/id.po +++ b/locale/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian \n" @@ -2470,6 +2470,18 @@ msgstr "Keluar dari permainan" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} populasi berubah {1} karena: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} populasi berubah {1} karena: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Tambah keybind baru" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/it.po b/locale/it.po index 867127654fe..fa6e6b638d7 100644 --- a/locale/it.po +++ b/locale/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian \n" @@ -2400,6 +2400,18 @@ msgstr "Esci dal gioco" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Popolazione totale:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Popolazione totale:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Spostati alla Fase di Risveglio. Disponibile una volta che hai abbastanza Potenza Cerebale (un tipo di tessuto con assoni)" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ja.po b/locale/ja.po index 51c117ff60e..2f7618eaf85 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-23 16:13+0000\n" "Last-Translator: grassgrass \n" "Language-Team: Japanese \n" @@ -2124,6 +2124,15 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ka.po b/locale/ka.po index 78c35542344..a2688f04746 100644 --- a/locale/ka.po +++ b/locale/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 05:50+0000\n" "Last-Translator: NorwayFun \n" "Language-Team: Georgian \n" @@ -2186,6 +2186,18 @@ msgstr "ეწვიეთ ჩვენს GitHub-ის რეპოზიტ msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "გლობალური პოპულაცია:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "გლობალური პოპულაცია:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "გამოღვიძების ფაზაზე გადასვლა. ხელმისაწვდომი გახდება, როცა საკმარისი ტვინის სიმძლავრე (ქსოვილის ტიპი აქსონებით) გექნებათ." + msgid "GLOBAL_INITIAL_LETTER" msgstr "გ" diff --git a/locale/ko.po b/locale/ko.po index cd3de3ec57c..ffaa12692bd 100644 --- a/locale/ko.po +++ b/locale/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean \n" @@ -2463,6 +2463,18 @@ msgstr "새로운 키 배치 추가" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "새로운 키 배치 추가" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/la.po b/locale/la.po index 28ec667c1e6..64ca04c6bdd 100644 --- a/locale/la.po +++ b/locale/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latin \n" @@ -2237,6 +2237,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lb_LU.po b/locale/lb_LU.po index 31b0537af8d..532523f5c79 100644 --- a/locale/lb_LU.po +++ b/locale/lb_LU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Luxembourgish \n" @@ -2236,6 +2236,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Halbeier Populatioun" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Halbeier Populatioun" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Op d' 'Erwaachen Stuf' weidergoen. Accessibel wann's de genuch Gehier hues (eng Zort Geweebe mat Axonen)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lt.po b/locale/lt.po index ae70d00caf8..690216ea20a 100644 --- a/locale/lt.po +++ b/locale/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lithuanian \n" @@ -2359,6 +2359,18 @@ msgstr "Baigti žaidimą" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Sumažinti Perpus Populiaciją" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Sumažinti Perpus Populiaciją" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Pereiti į Nubudimo Stadiją. Ji galima, kai turi pakankamai protinės galios (audinio tipas su aksonais)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lv.po b/locale/lv.po index 2660b08cdfb..8b9f06e3431 100644 --- a/locale/lv.po +++ b/locale/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2024-10-17 07:24+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latvian \n" @@ -2426,6 +2426,18 @@ msgstr "Atsākt spēli" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Kopējā Populācija:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Kopējā Populācija:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Apskatiet detalizētu informāciju aiz pareģošanas" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/messages.pot b/locale/messages.pot index 2b8b003f618..4eb9c83dda7 100644 --- a/locale/messages.pot +++ b/locale/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -69,7 +69,7 @@ msgstr "" #: ../src/general/base_stage/EditorBase.cs:749 #: ../src/macroscopic_stage/editor/MacroscopicEditor.cs:519 #: ../src/microbe_stage/editor/CellEditorComponent.GUI.cs:63 -#: ../src/multicellular_stage/editor/MulticellularEditor.cs:443 +#: ../src/multicellular_stage/editor/MulticellularEditor.cs:444 msgid "ACTION_BLOCKED_WHILE_ANOTHER_IN_PROGRESS" msgstr "" @@ -2517,7 +2517,7 @@ msgstr "" msgid "ESTUARY" msgstr "" -#: ../src/microbe_stage/editor/PatchMapNode.tscn:100 +#: ../src/microbe_stage/editor/PatchMapNode.tscn:102 msgid "EVENT_ERUPTION_TOOLTIP" msgstr "" @@ -3002,6 +3002,18 @@ msgstr "" msgid "GLES3" msgstr "" +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:179 +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:184 +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#: ../src/microbe_stage/editor/PatchMapNode.tscn:112 +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + #: ../src/microbe_stage/editor/MicrobeEditorReportComponent.tscn:369 msgid "GLOBAL_INITIAL_LETTER" msgstr "" @@ -8278,11 +8290,11 @@ msgstr "" msgid "UNDERWATERCAVE" msgstr "" -#: ../src/general/world_effects/UnderwaterVentEruptionEffect.cs:74 +#: ../src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs:74 msgid "UNDERWATER_VENT_ERUPTION" msgstr "" -#: ../src/general/world_effects/UnderwaterVentEruptionEffect.cs:80 +#: ../src/general/world_effects/patch_events/UnderwaterVentEruptionEffect.cs:80 msgid "UNDERWATER_VENT_ERUPTION_IN" msgstr "" @@ -8341,7 +8353,7 @@ msgstr "" msgid "UNKNOWN_PATCH" msgstr "" -#: ../src/microbe_stage/editor/PatchMapNode.tscn:85 +#: ../src/microbe_stage/editor/PatchMapNode.tscn:87 msgid "UNKNOWN_SHORT" msgstr "" diff --git a/locale/mk.po b/locale/mk.po index 58c61ed0098..47bebaf3831 100644 --- a/locale/mk.po +++ b/locale/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2023-09-15 06:55+0000\n" "Last-Translator: Kristijan Miracevski \n" "Language-Team: Macedonian \n" @@ -2173,6 +2173,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Уполови популација" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Уполови популација" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Префрлете се на фазата на будење. Достапно откако ќе имате доволно мозочна моќ (тип на ткиво со аксони)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nb_NO.po b/locale/nb_NO.po index c620a1a142f..cc916ca77c6 100644 --- a/locale/nb_NO.po +++ b/locale/nb_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -2247,6 +2247,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nl.po b/locale/nl.po index 852d9e493a7..e491fccb11b 100644 --- a/locale/nl.po +++ b/locale/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -2370,6 +2370,18 @@ msgstr "Bezoek onze Github opslagplek" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Totale Bevolking:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Totale Bevolking:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer je genoeg breinkracht hebt (weefseltype met axonen)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/nl_BE.po b/locale/nl_BE.po index c0e54de3f4a..a28bf01e0a0 100644 --- a/locale/nl_BE.po +++ b/locale/nl_BE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch (Belgium) \n" @@ -2476,6 +2476,18 @@ msgstr "Zelfmoord" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Totale populatie:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Totale populatie:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer u genoeg breinkracht hebt (weefseltype met axonen)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/pl.po b/locale/pl.po index 52c079df3ba..1b4cea734f8 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -2363,6 +2363,18 @@ msgstr "Odwiedź naszą stronę GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Całkowita populacja:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Całkowita populacja:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Przejdź do Fazy Przebudzenia. Dostępne w momencie osiągniecia wystarczającej siły umysłu (typ komórki z aksonem)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 2b5899ee082..86c3c21215c 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Brazil) \n" @@ -2311,6 +2311,18 @@ msgstr "Visite o nosso repositório no GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "População Global:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "População Global:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ir para o Estágio Desperto. Disponível ao ter capacidade mental suficiente (representados por tecidos com axônios)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_PT.po b/locale/pt_PT.po index 49d49f3706f..e04c2da69f9 100644 --- a/locale/pt_PT.po +++ b/locale/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Portugal) \n" @@ -2361,6 +2361,18 @@ msgstr "Visite o nosso repositório GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "População:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "População:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Suicídio" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ro.po b/locale/ro.po index 6734fdcc386..2a95d79d798 100644 --- a/locale/ro.po +++ b/locale/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Romanian \n" @@ -2220,6 +2220,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Înjumătățește Populația" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Înjumătățește Populația" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Treceți la etapa de trezire. Disponibil odată ce aveți creierul suficient de dezvoltat (tip de țesut cu axoni)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ru.po b/locale/ru.po index 3d80dbffbad..381f647a1d9 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -2310,6 +2310,18 @@ msgstr "Посетить наш Github-репозиторий" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Глобальная популяция:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Глобальная популяция:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Переместиться на Стадию Пробуждения. Доступно только если у вас есть достаточное количество развитости мозга (Поместите аксон в какой либо тип клетки)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "Г" diff --git a/locale/si_LK.po b/locale/si_LK.po index 735a14ab139..a9dd5810ff2 100644 --- a/locale/si_LK.po +++ b/locale/si_LK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2022-03-22 18:22+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Sinhala \n" @@ -2167,6 +2167,16 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "තේරූ:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sk.po b/locale/sk.po index 2c3ea84c37e..584537f456c 100644 --- a/locale/sk.po +++ b/locale/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovak \n" @@ -2358,6 +2358,18 @@ msgstr "Opustiť hru" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Celková populácia:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Celková populácia:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Prebudiť sa" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/sr_Cyrl.po b/locale/sr_Cyrl.po index 1b08552e576..67e108c7d2c 100644 --- a/locale/sr_Cyrl.po +++ b/locale/sr_Cyrl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Cyrillic script) \n" @@ -2469,6 +2469,18 @@ msgstr "Додајте ново везивање тастера" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Број популације од {0} променио се за {1} због: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Број популације од {0} променио се за {1} због: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Додајте ново везивање тастера" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sr_Latn.po b/locale/sr_Latn.po index 3bb6cf7367d..ac6dc4a6333 100644 --- a/locale/sr_Latn.po +++ b/locale/sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Latin script) \n" @@ -2406,6 +2406,18 @@ msgstr "Dodajte novo vezivanje tastera" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Dodajte novo vezivanje tastera" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sv.po b/locale/sv.po index f6210201d3f..8e79551902c 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -2455,6 +2455,18 @@ msgstr "Självmord" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Nå uppvakningsteget. Tillgänglig när du har tillräckigt med hjärnkraft (axonvävnad)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/th_TH.po b/locale/th_TH.po index c1d3776e04f..542bbb7e5cd 100644 --- a/locale/th_TH.po +++ b/locale/th_TH.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -2360,6 +2360,18 @@ msgstr "ดำเนินการต่อ" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "ดำเนินการต่อ" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tok.po b/locale/tok.po index 9cad20806ab..8bf7a517ae9 100644 --- a/locale/tok.po +++ b/locale/tok.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2023-02-06 07:13+0000\n" "Last-Translator: jan-sopi \n" "Language-Team: Toki Pona \n" @@ -2220,6 +2220,18 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "kama lon tenpo pi kama sona. open la sina jo e sona mute." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tr.po b/locale/tr.po index 9012ee77ea3..897b9ec91e6 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:48+0000\n" "Last-Translator: punctdan \n" "Language-Team: Turkish \n" @@ -2293,6 +2293,18 @@ msgstr "GitHub depomuzu ziyaret edin" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Genel popülasyon:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Genel popülasyon:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Uyanış Evresi'ne geç. Yeterli zihin gücüne sahip olduğunuzda açılır (aksonlu doku türü)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/tt.po b/locale/tt.po index 65002cae720..1a99468c2bf 100644 --- a/locale/tt.po +++ b/locale/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,15 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/uk.po b/locale/uk.po index 28138fa4f64..19f7655fee1 100644 --- a/locale/uk.po +++ b/locale/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -2319,6 +2319,18 @@ msgstr "Відвідайте наше сховище у GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Загальна популяція:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Загальна популяція:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Перейдіть до стадії пробудження. Доступно, коли у вас достатня сила мозку (тип клітини з аксонами)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/vi.po b/locale/vi.po index c75e18dd4c9..3479113d3a2 100644 --- a/locale/vi.po +++ b/locale/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,15 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/zh_CN.po b/locale/zh_CN.po index 2a989cfa4db..e4f4703ce91 100644 --- a/locale/zh_CN.po +++ b/locale/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified Han script) \n" @@ -2326,6 +2326,18 @@ msgstr "访问我们在GitHub上的代码仓库" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "种群数量总数:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "种群数量总数:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "进入启蒙阶段。一旦你有足够的脑力就可以使用(需要带轴突的组织)。" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/zh_TW.po b/locale/zh_TW.po index c7b620d0d9c..01aa32e5f95 100644 --- a/locale/zh_TW.po +++ b/locale/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 11:33+0200\n" +"POT-Creation-Date: 2025-03-08 20:54+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional Han script) \n" @@ -2296,6 +2296,18 @@ msgstr "造訪我們的 GitHub 儲存庫" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "全域物種量:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "全域物種量:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "進入覺醒階段。達到一定腦力(具有軸突的組織)後開放。" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" From b39563b2faf8f6c357625b68060455b82afdfd69 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 8 Mar 2025 21:28:57 +0100 Subject: [PATCH 07/14] Text fix --- locale/en.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en.po b/locale/en.po index 0802b17b5e7..5b24237eb98 100644 --- a/locale/en.po +++ b/locale/en.po @@ -2300,7 +2300,7 @@ msgid "GLOBAL_GLACIATION_EVENT_LOG" msgstr "Global glaciation event in {0}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" -msgstr "Global glaciation event has been caused by rising concentration of [thrive:compound type=\"oxygen\"][/thrive:compound] in the atmosphere. It will persist for several generations, reducing [thrive:compound type=\"sunlight\"][/thrive:compound] and [thrive:compound type=\"temperature\"][/thrive:compound] levels across all surface patches. That will make photosynthesis less viable so be cautious if your cell depends on it! Snow chunks also appear in these patches now." +msgstr "Global glaciation event\nThe event has been caused by rising concentration of oxygen in the atmosphere.\nIt will persist for several generations, reducing sunlight and temperature.\nSnow chunks also appear in these patches now." msgid "GLOBAL_INITIAL_LETTER" msgstr "G" From 97772eae94c6cd516b203a27bb3668bb94c461e7 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 8 Mar 2025 21:50:26 +0100 Subject: [PATCH 08/14] final adjustments --- simulation_parameters/microbe_stage/compounds.json | 4 ++-- .../patch_events/GlobalGlaciationEvent.cs | 4 +--- src/microbe_stage/BiomeConditions.cs | 11 +++++++++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/simulation_parameters/microbe_stage/compounds.json b/simulation_parameters/microbe_stage/compounds.json index a7e40d83d34..518a09e0079 100644 --- a/simulation_parameters/microbe_stage/compounds.json +++ b/simulation_parameters/microbe_stage/compounds.json @@ -209,7 +209,7 @@ "Volume": 1, "IsCloud": false, "IsAlwaysUseful": false, - "IsEnvironmental": true, + "IsEnvironmental": false, "CanBeDistributed": false, "Colour": { "r": 0.98, @@ -228,7 +228,7 @@ "Volume": 1, "IsCloud": false, "IsAlwaysUseful": true, - "IsEnvironmental": true, + "IsEnvironmental": false, "CanBeDistributed": true, "Colour": { "r": 1, diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index 7826d0359fb..dd84247fd17 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -86,8 +86,6 @@ private void MarkPatches(double totalTimePassed) private void TryToTriggerEvent(double totalTimePassed) { - // if (totalTimePassed <= 200_000_000) - // return; if (!AreConditionsMet()) return; @@ -222,7 +220,7 @@ private void ResetEnvironment(Patch patch, PatchSnapshot patchSnapshot) var previousSunlight = patchSnapshot.Biome.ChangeableCompounds[Compound.Sunlight]; currentTemperature.Ambient = previousTemperature.Ambient - currentTemperature.Ambient; - currentSunlight.Ambient = 0.5f - currentSunlight.Ambient - previousSunlight.Ambient; + currentSunlight.Ambient = previousSunlight.Ambient - currentSunlight.Ambient; var changes = new Dictionary { diff --git a/src/microbe_stage/BiomeConditions.cs b/src/microbe_stage/BiomeConditions.cs index 742556de59b..b7b5f15b842 100644 --- a/src/microbe_stage/BiomeConditions.cs +++ b/src/microbe_stage/BiomeConditions.cs @@ -207,7 +207,14 @@ public void ApplyLongTermCompoundChanges(Biome biomeDetails, Dictionary Date: Sat, 8 Mar 2025 21:56:59 +0100 Subject: [PATCH 09/14] CI cleanup --- .../world_effects/patch_events/GlobalGlaciationEvent.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index dd84247fd17..7e01dcb2021 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -23,8 +23,8 @@ public class GlobalGlaciationEvent : IWorldEffect private bool hasEventAlreadyHappened; /// - /// Tells how many generations the event will last. "-1" means that it hasn't started at all. - /// "0" means it has finished, and it won't happen again + /// Tells how many generations the event will last. "-1" means that it hasn't started at all. + /// "0" means it has finished, and it won't happen again /// [JsonProperty] private int generationsLeft = -1; @@ -120,7 +120,8 @@ private bool AreConditionsMet() // Just prevent dividing by zero, but that shouldn't be possible anyway numberOfSurfacePatches = numberOfSurfacePatches == 0 ? 1 : numberOfSurfacePatches; - return (float)patchesExceedingOxygenLevel / numberOfSurfacePatches >= Constants.GLOBAL_GLACIATION_PATCHES_THRESHOLD + return (float)patchesExceedingOxygenLevel / numberOfSurfacePatches >= + Constants.GLOBAL_GLACIATION_PATCHES_THRESHOLD && random.NextFloat() <= Constants.GLOBAL_GLACIATION_CHANCE; } @@ -159,7 +160,7 @@ private void AdjustEnvironment(Patch patch) } /// - /// Gets chunks from Iceshelf patch template and applies them to the patches. + /// Gets chunks from Iceshelf patch template and applies them to the patches. /// private void AddIceChunks(Patch patch) { From 065272997a73073e488cb03bca572cc5ce605ad9 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sat, 8 Mar 2025 22:14:33 +0100 Subject: [PATCH 10/14] BOM fix --- .../world_effects/patch_events/GlobalGlaciationEvent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index 7e01dcb2021..eeddedcd6ff 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using Godot; using Newtonsoft.Json; using Xoshiro.PRNG64; @@ -30,7 +30,7 @@ public class GlobalGlaciationEvent : IWorldEffect private int generationsLeft = -1; [JsonProperty] - private int eventDuration = 0; + private int eventDuration; [JsonProperty] private GameWorld targetWorld; From 776568f717edb3be9b0e6446ec9bcc6eda627a7c Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sun, 9 Mar 2025 11:11:56 +0100 Subject: [PATCH 11/14] Improve event logging in report tab --- locale/af.po | 10 +++++++++- locale/ar.po | 10 +++++++++- locale/be.po | 10 +++++++++- locale/bg.po | 10 +++++++++- locale/bn.po | 10 +++++++++- locale/ca.po | 10 +++++++++- locale/cs.po | 10 +++++++++- locale/da.po | 10 +++++++++- locale/de.po | 10 +++++++++- locale/el.po | 8 +++++++- locale/en.po | 14 ++++++++++++-- locale/eo.po | 10 +++++++++- locale/es.po | 10 +++++++++- locale/es_AR.po | 10 +++++++++- locale/et.po | 10 +++++++++- locale/fi.po | 10 +++++++++- locale/fr.po | 10 +++++++++- locale/frm.po | 8 +++++++- locale/gsw.po | 10 +++++++++- locale/he.po | 10 +++++++++- locale/hr.po | 10 +++++++++- locale/hu.po | 10 +++++++++- locale/id.po | 10 +++++++++- locale/it.po | 10 +++++++++- locale/ja.po | 8 +++++++- locale/ka.po | 10 +++++++++- locale/ko.po | 10 +++++++++- locale/la.po | 10 +++++++++- locale/lb_LU.po | 10 +++++++++- locale/lt.po | 10 +++++++++- locale/lv.po | 10 +++++++++- locale/messages.pot | 14 +++++++++++--- locale/mk.po | 10 +++++++++- locale/nb_NO.po | 10 +++++++++- locale/nl.po | 10 +++++++++- locale/nl_BE.po | 10 +++++++++- locale/pl.po | 10 +++++++++- locale/pt_BR.po | 10 +++++++++- locale/pt_PT.po | 10 +++++++++- locale/ro.po | 10 +++++++++- locale/ru.po | 10 +++++++++- locale/si_LK.po | 10 +++++++++- locale/sk.po | 10 +++++++++- locale/sr_Cyrl.po | 10 +++++++++- locale/sr_Latn.po | 10 +++++++++- locale/sv.po | 10 +++++++++- locale/th_TH.po | 10 +++++++++- locale/tok.po | 10 +++++++++- locale/tr.po | 10 +++++++++- locale/tt.po | 8 +++++++- locale/uk.po | 10 +++++++++- locale/vi.po | 8 +++++++- locale/zh_CN.po | 10 +++++++++- locale/zh_TW.po | 10 +++++++++- .../patch_events/GlobalGlaciationEvent.cs | 18 +++++++++++++++++- 55 files changed, 498 insertions(+), 58 deletions(-) diff --git a/locale/af.po b/locale/af.po index a942b673c72..619e78e508a 100644 --- a/locale/af.po +++ b/locale/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2146,6 +2146,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." @@ -2158,6 +2162,10 @@ msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tie msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ar.po b/locale/ar.po index c42bda76699..2cd57259a7d 100644 --- a/locale/ar.po +++ b/locale/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2023-03-13 09:01+0000\n" "Last-Translator: Xradiation \n" "Language-Team: Arabic \n" @@ -2165,6 +2165,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." @@ -2177,6 +2181,10 @@ msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/be.po b/locale/be.po index 67b52dbe2e4..2fb1a485eda 100644 --- a/locale/be.po +++ b/locale/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2023-09-21 09:24+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Belarusian \n" @@ -2145,6 +2145,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Перамясціцца на стадыю Абуджэння. Дасягома толькі калі ў вас ёсць дастатковая колькасць развітасці мозга (Размясціце аксон у які небудзь тып клеткі)." + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2155,6 +2159,10 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Перамясціцца на стадыю Абуджэння. Дасягома толькі калі ў вас ёсць дастатковая колькасць развітасці мозга (Размясціце аксон у які небудзь тып клеткі)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Перамясціцца на стадыю Абуджэння. Дасягома толькі калі ў вас ёсць дастатковая колькасць развітасці мозга (Размясціце аксон у які небудзь тып клеткі)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/bg.po b/locale/bg.po index e1f2cdb3cb1..f404f5e287e 100644 --- a/locale/bg.po +++ b/locale/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -2456,6 +2456,10 @@ msgstr "Отваряне на хранилището ни в „GitHub“" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Обща популация:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Обща популация:" @@ -2468,6 +2472,10 @@ msgstr "Обща популация:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Пробуждане" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Обща популация:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "С" diff --git a/locale/bn.po b/locale/bn.po index b642bb624fc..bf4c395939f 100644 --- a/locale/bn.po +++ b/locale/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2023-09-10 12:18+0000\n" "Last-Translator: Mahbeer Alam Sarker \n" "Language-Team: Bengali \n" @@ -2167,6 +2167,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "অর্ধেক জন সংখ্যা" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "অর্ধেক জন সংখ্যা" @@ -2179,6 +2183,10 @@ msgstr "অর্ধেক জন সংখ্যা" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "জাগ্রত পর্যায়ে চলে যাওয়া। আপনার পর্যাপ্ত মস্তিষ্কের শক্তি (অ্যাক্সন সহ টিস্যু টাইপ) থাকলে উপলব্ধ।" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "অর্ধেক জন সংখ্যা" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ca.po b/locale/ca.po index cb61fc7b2b5..f2d4f54c0f8 100644 --- a/locale/ca.po +++ b/locale/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -2425,6 +2425,10 @@ msgstr "Sortir del joc" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Població Total:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Població Total:" @@ -2437,6 +2441,10 @@ msgstr "Població Total:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Despertar" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Població Total:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/cs.po b/locale/cs.po index 6df2cd6beef..43f51456027 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -2493,6 +2493,10 @@ msgstr "Navštiv náš GitHub repozitář" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Celková populace:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Celková populace:" @@ -2505,6 +2509,10 @@ msgstr "Celková populace:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Přejděte do fáze Probuzení. Dostupné, jakmile máte dostatečnou sílu mozku (typ tkáně s axony)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Celková populace:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/da.po b/locale/da.po index f3b6e33d012..485f01a9e28 100644 --- a/locale/da.po +++ b/locale/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2024-06-09 13:22+0000\n" "Last-Translator: Magnus Norling Svane \n" "Language-Team: Danish \n" @@ -2130,6 +2130,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Halver Bestand" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Halver Bestand" @@ -2142,6 +2146,10 @@ msgstr "Halver Bestand" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Tag til opvågningsstadiet. Tilgængelig, når du har nok hjernekraft (vævstype med axoner)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Halver Bestand" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/de.po b/locale/de.po index 2fbd40a3fd5..02ca8006714 100644 --- a/locale/de.po +++ b/locale/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: German \n" @@ -2295,6 +2295,10 @@ msgstr "Besuche unser GitHub Repositorium" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Gesamtpopulation:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Gesamtpopulation:" @@ -2307,6 +2311,10 @@ msgstr "Gesamtpopulation:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Fortschritt zum Erwachen-Stadium. Erst möglich wenn ausreichend Gehirnkapazität zur Verfügung steht (Hirngewebe mit Axonen) ." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Gesamtpopulation:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/el.po b/locale/el.po index 2142f2bef2a..6e4c9de5087 100644 --- a/locale/el.po +++ b/locale/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2022-03-31 05:02+0000\n" "Last-Translator: Apostolos Paschidis \n" "Language-Team: Greek \n" @@ -2143,6 +2143,9 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2152,6 +2155,9 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/en.po b/locale/en.po index 5b24237eb98..27a1b6c683e 100644 --- a/locale/en.po +++ b/locale/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-04 13:27+0200\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: English \n" @@ -2293,6 +2293,9 @@ msgstr "Visit our GitHub repository" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Global glaciation event has ended across all surface patches." + msgid "GLOBAL_GLACIATION_EVENT" msgstr "Global glaciation event" @@ -2300,7 +2303,14 @@ msgid "GLOBAL_GLACIATION_EVENT_LOG" msgstr "Global glaciation event in {0}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" -msgstr "Global glaciation event\nThe event has been caused by rising concentration of oxygen in the atmosphere.\nIt will persist for several generations, reducing sunlight and temperature.\nSnow chunks also appear in these patches now." +msgstr "" +"Global glaciation event\n" +"The event has been caused by rising concentration of oxygen in the atmosphere.\n" +"It will persist for several generations, reducing sunlight and temperature.\n" +"Snow chunks also appear in these patches now." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Global glaciation event has started across all surface patches." msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/eo.po b/locale/eo.po index 003483843f8..a02d3ee4d81 100644 --- a/locale/eo.po +++ b/locale/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -2469,6 +2469,10 @@ msgstr "Aldonunovan funkcion por klavo" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" @@ -2481,6 +2485,10 @@ msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Aldonunovan funkcion por klavo" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/es.po b/locale/es.po index 819d9c9d908..aa3d0905f5b 100644 --- a/locale/es.po +++ b/locale/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish \n" @@ -2314,6 +2314,10 @@ msgstr "Visita nuestro repositorio de GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Población Total:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Población Total:" @@ -2326,6 +2330,10 @@ msgstr "Población Total:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Avanzar al Estadio del Despertar. Solo disponible una vez tengas suficiente poder cerebral (tejido con axones)" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Población Total:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/es_AR.po b/locale/es_AR.po index fc7bec02185..6e0c0b7ec70 100644 --- a/locale/es_AR.po +++ b/locale/es_AR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish (Argentina) \n" @@ -2319,6 +2319,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "población:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "población:" @@ -2331,6 +2335,10 @@ msgstr "población:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Moverse a la etapa Despertar. Solo accesible cuando tengas suficiente poder cerebral (tipo de tejido con axones)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "población:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/et.po b/locale/et.po index 8e85dc61cba..c60d9f2771c 100644 --- a/locale/et.po +++ b/locale/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Estonian \n" @@ -2517,6 +2517,10 @@ msgstr "vabasurm" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Rahvaarv kokku:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Rahvaarv kokku:" @@ -2529,6 +2533,10 @@ msgstr "Rahvaarv kokku:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "vabasurm" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Rahvaarv kokku:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/fi.po b/locale/fi.po index 3eaa7e8ab42..ce05bd99eeb 100644 --- a/locale/fi.po +++ b/locale/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-06 07:27+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Finnish \n" @@ -2541,6 +2541,10 @@ msgstr "Kuole" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Kanta:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Kanta:" @@ -2553,6 +2557,10 @@ msgstr "Kanta:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Herää" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Kanta:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/fr.po b/locale/fr.po index c1c9d7627ad..899ef99511a 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: French \n" @@ -2364,6 +2364,10 @@ msgstr "Visitez notre dépôt Github" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Population totale :" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Population totale :" @@ -2376,6 +2380,10 @@ msgstr "Population totale :" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Passer à la Phase d'Éveil. Disponible une fois que vous avez assez de puissance cérébrale (Type de tissu avec axones)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Population totale :" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/frm.po b/locale/frm.po index 1a470a8ee08..b33425bf0e0 100644 --- a/locale/frm.po +++ b/locale/frm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,9 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2126,6 +2129,9 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/gsw.po b/locale/gsw.po index e7b48f95e53..0d94b006363 100644 --- a/locale/gsw.po +++ b/locale/gsw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-01 13:57+0000\n" "Last-Translator: Argakyan \n" "Language-Team: Alemannic \n" @@ -2186,6 +2186,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Fortschritt zum Erwachene-Stadium. Erscht mögli wenn uusriichend Ghirnkapazität z'Verfüegig staht (Hirngwäb mit Axone) ." + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2196,6 +2200,10 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Fortschritt zum Erwachene-Stadium. Erscht mögli wenn uusriichend Ghirnkapazität z'Verfüegig staht (Hirngwäb mit Axone) ." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Fortschritt zum Erwachene-Stadium. Erscht mögli wenn uusriichend Ghirnkapazität z'Verfüegig staht (Hirngwäb mit Axone) ." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/he.po b/locale/he.po index d9e984fcdbc..8ac6001946b 100644 --- a/locale/he.po +++ b/locale/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew \n" @@ -2437,6 +2437,10 @@ msgstr "צפו בספריית GitHub שלנו" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "כלל האוכלוסיה:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "כלל האוכלוסיה:" @@ -2449,6 +2453,10 @@ msgstr "כלל האוכלוסיה:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "עבור לשלב ההתעוררות. זמין כאשר יש לך מספיק יכולת שכלית (רקמה מסוג עם אקסונים)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "כלל האוכלוסיה:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "ג" diff --git a/locale/hr.po b/locale/hr.po index de987a34abc..0ae43062325 100644 --- a/locale/hr.po +++ b/locale/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian \n" @@ -2211,6 +2211,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Kreni u fazu buđenja. Moguće kada imaš dovoljno moždane snage (vrsta tkiva s aksionima)." + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2221,6 +2225,10 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Kreni u fazu buđenja. Moguće kada imaš dovoljno moždane snage (vrsta tkiva s aksionima)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Kreni u fazu buđenja. Moguće kada imaš dovoljno moždane snage (vrsta tkiva s aksionima)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/hu.po b/locale/hu.po index b4ed3e1267f..bdd876a080b 100644 --- a/locale/hu.po +++ b/locale/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -2486,6 +2486,10 @@ msgstr "Kilépés a játékból" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Teljes populáció:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Teljes populáció:" @@ -2498,6 +2502,10 @@ msgstr "Teljes populáció:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Lépj át az Ébredés szakaszába. Elérhető, ha rendelkezel elegendő agykapacitással (axonokkal rendelkező szövettípus)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Teljes populáció:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/id.po b/locale/id.po index 05b21a90b2b..a71a6db74b9 100644 --- a/locale/id.po +++ b/locale/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian \n" @@ -2470,6 +2470,10 @@ msgstr "Keluar dari permainan" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "{0} populasi berubah {1} karena: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "{0} populasi berubah {1} karena: {2}" @@ -2482,6 +2486,10 @@ msgstr "{0} populasi berubah {1} karena: {2}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Tambah keybind baru" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "{0} populasi berubah {1} karena: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/it.po b/locale/it.po index fa6e6b638d7..488a961dc28 100644 --- a/locale/it.po +++ b/locale/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian \n" @@ -2400,6 +2400,10 @@ msgstr "Esci dal gioco" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Popolazione totale:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Popolazione totale:" @@ -2412,6 +2416,10 @@ msgstr "Popolazione totale:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Spostati alla Fase di Risveglio. Disponibile una volta che hai abbastanza Potenza Cerebale (un tipo di tessuto con assoni)" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Popolazione totale:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ja.po b/locale/ja.po index 2f7618eaf85..452470c8607 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-23 16:13+0000\n" "Last-Translator: grassgrass \n" "Language-Team: Japanese \n" @@ -2124,6 +2124,9 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2133,6 +2136,9 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ka.po b/locale/ka.po index a2688f04746..98301bf38c4 100644 --- a/locale/ka.po +++ b/locale/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 05:50+0000\n" "Last-Translator: NorwayFun \n" "Language-Team: Georgian \n" @@ -2186,6 +2186,10 @@ msgstr "ეწვიეთ ჩვენს GitHub-ის რეპოზიტ msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "გლობალური პოპულაცია:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "გლობალური პოპულაცია:" @@ -2198,6 +2202,10 @@ msgstr "გლობალური პოპულაცია:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "გამოღვიძების ფაზაზე გადასვლა. ხელმისაწვდომი გახდება, როცა საკმარისი ტვინის სიმძლავრე (ქსოვილის ტიპი აქსონებით) გექნებათ." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "გლობალური პოპულაცია:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "გ" diff --git a/locale/ko.po b/locale/ko.po index ffaa12692bd..552109fc02c 100644 --- a/locale/ko.po +++ b/locale/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean \n" @@ -2463,6 +2463,10 @@ msgstr "새로운 키 배치 추가" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" @@ -2475,6 +2479,10 @@ msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "새로운 키 배치 추가" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/la.po b/locale/la.po index 64ca04c6bdd..968beceb227 100644 --- a/locale/la.po +++ b/locale/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latin \n" @@ -2237,6 +2237,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." @@ -2249,6 +2253,10 @@ msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lb_LU.po b/locale/lb_LU.po index 532523f5c79..5d1bc32c33b 100644 --- a/locale/lb_LU.po +++ b/locale/lb_LU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Luxembourgish \n" @@ -2236,6 +2236,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Halbeier Populatioun" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Halbeier Populatioun" @@ -2248,6 +2252,10 @@ msgstr "Halbeier Populatioun" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Op d' 'Erwaachen Stuf' weidergoen. Accessibel wann's de genuch Gehier hues (eng Zort Geweebe mat Axonen)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Halbeier Populatioun" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lt.po b/locale/lt.po index 690216ea20a..70e52d316c9 100644 --- a/locale/lt.po +++ b/locale/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lithuanian \n" @@ -2359,6 +2359,10 @@ msgstr "Baigti žaidimą" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Sumažinti Perpus Populiaciją" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Sumažinti Perpus Populiaciją" @@ -2371,6 +2375,10 @@ msgstr "Sumažinti Perpus Populiaciją" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Pereiti į Nubudimo Stadiją. Ji galima, kai turi pakankamai protinės galios (audinio tipas su aksonais)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Sumažinti Perpus Populiaciją" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lv.po b/locale/lv.po index 8b9f06e3431..b30d4b5e379 100644 --- a/locale/lv.po +++ b/locale/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2024-10-17 07:24+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latvian \n" @@ -2426,6 +2426,10 @@ msgstr "Atsākt spēli" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Kopējā Populācija:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Kopējā Populācija:" @@ -2438,6 +2442,10 @@ msgstr "Kopējā Populācija:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Apskatiet detalizētu informāciju aiz pareģošanas" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Kopējā Populācija:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/messages.pot b/locale/messages.pot index 4eb9c83dda7..2da23c38167 100644 --- a/locale/messages.pot +++ b/locale/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3002,11 +3002,15 @@ msgstr "" msgid "GLES3" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:179 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:201 +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:181 msgid "GLOBAL_GLACIATION_EVENT" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:184 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:186 msgid "GLOBAL_GLACIATION_EVENT_LOG" msgstr "" @@ -3014,6 +3018,10 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:195 +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + #: ../src/microbe_stage/editor/MicrobeEditorReportComponent.tscn:369 msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/mk.po b/locale/mk.po index 47bebaf3831..b8414141afb 100644 --- a/locale/mk.po +++ b/locale/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2023-09-15 06:55+0000\n" "Last-Translator: Kristijan Miracevski \n" "Language-Team: Macedonian \n" @@ -2173,6 +2173,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Уполови популација" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Уполови популација" @@ -2185,6 +2189,10 @@ msgstr "Уполови популација" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Префрлете се на фазата на будење. Достапно откако ќе имате доволно мозочна моќ (тип на ткиво со аксони)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Уполови популација" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nb_NO.po b/locale/nb_NO.po index cc916ca77c6..b88aa0a38a8 100644 --- a/locale/nb_NO.po +++ b/locale/nb_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -2247,6 +2247,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." @@ -2259,6 +2263,10 @@ msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (ve msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nl.po b/locale/nl.po index e491fccb11b..8811b53bb03 100644 --- a/locale/nl.po +++ b/locale/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -2370,6 +2370,10 @@ msgstr "Bezoek onze Github opslagplek" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Totale Bevolking:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Totale Bevolking:" @@ -2382,6 +2386,10 @@ msgstr "Totale Bevolking:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer je genoeg breinkracht hebt (weefseltype met axonen)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Totale Bevolking:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/nl_BE.po b/locale/nl_BE.po index a28bf01e0a0..3ff450f33f6 100644 --- a/locale/nl_BE.po +++ b/locale/nl_BE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch (Belgium) \n" @@ -2476,6 +2476,10 @@ msgstr "Zelfmoord" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Totale populatie:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Totale populatie:" @@ -2488,6 +2492,10 @@ msgstr "Totale populatie:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer u genoeg breinkracht hebt (weefseltype met axonen)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Totale populatie:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/pl.po b/locale/pl.po index 1b4cea734f8..d09c9d79c45 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -2363,6 +2363,10 @@ msgstr "Odwiedź naszą stronę GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Całkowita populacja:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Całkowita populacja:" @@ -2375,6 +2379,10 @@ msgstr "Całkowita populacja:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Przejdź do Fazy Przebudzenia. Dostępne w momencie osiągniecia wystarczającej siły umysłu (typ komórki z aksonem)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Całkowita populacja:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 86c3c21215c..18f01823aa5 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Brazil) \n" @@ -2311,6 +2311,10 @@ msgstr "Visite o nosso repositório no GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "População Global:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "População Global:" @@ -2323,6 +2327,10 @@ msgstr "População Global:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Ir para o Estágio Desperto. Disponível ao ter capacidade mental suficiente (representados por tecidos com axônios)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "População Global:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_PT.po b/locale/pt_PT.po index e04c2da69f9..0ac159f944e 100644 --- a/locale/pt_PT.po +++ b/locale/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Portugal) \n" @@ -2361,6 +2361,10 @@ msgstr "Visite o nosso repositório GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "População:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "População:" @@ -2373,6 +2377,10 @@ msgstr "População:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Suicídio" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "População:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ro.po b/locale/ro.po index 2a95d79d798..6134a9dc426 100644 --- a/locale/ro.po +++ b/locale/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Romanian \n" @@ -2220,6 +2220,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Înjumătățește Populația" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Înjumătățește Populația" @@ -2232,6 +2236,10 @@ msgstr "Înjumătățește Populația" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Treceți la etapa de trezire. Disponibil odată ce aveți creierul suficient de dezvoltat (tip de țesut cu axoni)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Înjumătățește Populația" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ru.po b/locale/ru.po index 381f647a1d9..44454579a0b 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -2310,6 +2310,10 @@ msgstr "Посетить наш Github-репозиторий" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Глобальная популяция:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Глобальная популяция:" @@ -2322,6 +2326,10 @@ msgstr "Глобальная популяция:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Переместиться на Стадию Пробуждения. Доступно только если у вас есть достаточное количество развитости мозга (Поместите аксон в какой либо тип клетки)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Глобальная популяция:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "Г" diff --git a/locale/si_LK.po b/locale/si_LK.po index a9dd5810ff2..6ea751fc093 100644 --- a/locale/si_LK.po +++ b/locale/si_LK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2022-03-22 18:22+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Sinhala \n" @@ -2167,6 +2167,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "තේරූ:" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2177,6 +2181,10 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "තේරූ:" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "තේරූ:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sk.po b/locale/sk.po index 584537f456c..2167e3bdc2e 100644 --- a/locale/sk.po +++ b/locale/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovak \n" @@ -2358,6 +2358,10 @@ msgstr "Opustiť hru" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Celková populácia:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Celková populácia:" @@ -2370,6 +2374,10 @@ msgstr "Celková populácia:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Prebudiť sa" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Celková populácia:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/sr_Cyrl.po b/locale/sr_Cyrl.po index 67e108c7d2c..002f694fc8e 100644 --- a/locale/sr_Cyrl.po +++ b/locale/sr_Cyrl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Cyrillic script) \n" @@ -2469,6 +2469,10 @@ msgstr "Додајте ново везивање тастера" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Број популације од {0} променио се за {1} због: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Број популације од {0} променио се за {1} због: {2}" @@ -2481,6 +2485,10 @@ msgstr "Број популације од {0} променио се за {1} з msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Додајте ново везивање тастера" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Број популације од {0} променио се за {1} због: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sr_Latn.po b/locale/sr_Latn.po index ac6dc4a6333..02c608c206d 100644 --- a/locale/sr_Latn.po +++ b/locale/sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Latin script) \n" @@ -2406,6 +2406,10 @@ msgstr "Dodajte novo vezivanje tastera" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" @@ -2418,6 +2422,10 @@ msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Dodajte novo vezivanje tastera" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sv.po b/locale/sv.po index 8e79551902c..e47a83c618d 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -2455,6 +2455,10 @@ msgstr "Självmord" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "{0} befolkning förändrades av {1} på grund av: {2}" @@ -2467,6 +2471,10 @@ msgstr "{0} befolkning förändrades av {1} på grund av: {2}" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Nå uppvakningsteget. Tillgänglig när du har tillräckigt med hjärnkraft (axonvävnad)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/th_TH.po b/locale/th_TH.po index 542bbb7e5cd..d6c2f87eabe 100644 --- a/locale/th_TH.po +++ b/locale/th_TH.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -2360,6 +2360,10 @@ msgstr "ดำเนินการต่อ" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" @@ -2372,6 +2376,10 @@ msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "ดำเนินการต่อ" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tok.po b/locale/tok.po index 8bf7a517ae9..7bdffc8f6e8 100644 --- a/locale/tok.po +++ b/locale/tok.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2023-02-06 07:13+0000\n" "Last-Translator: jan-sopi \n" "Language-Team: Toki Pona \n" @@ -2220,6 +2220,10 @@ msgstr "" msgid "GLES3" msgstr "" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" @@ -2232,6 +2236,10 @@ msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "kama lon tenpo pi kama sona. open la sina jo e sona mute." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tr.po b/locale/tr.po index 897b9ec91e6..7c63d8c69b2 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:48+0000\n" "Last-Translator: punctdan \n" "Language-Team: Turkish \n" @@ -2293,6 +2293,10 @@ msgstr "GitHub depomuzu ziyaret edin" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Genel popülasyon:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Genel popülasyon:" @@ -2305,6 +2309,10 @@ msgstr "Genel popülasyon:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Uyanış Evresi'ne geç. Yeterli zihin gücüne sahip olduğunuzda açılır (aksonlu doku türü)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Genel popülasyon:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/tt.po b/locale/tt.po index 1a99468c2bf..e2fb315db1e 100644 --- a/locale/tt.po +++ b/locale/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,9 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2126,6 +2129,9 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/uk.po b/locale/uk.po index 19f7655fee1..ca1aa53a009 100644 --- a/locale/uk.po +++ b/locale/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -2319,6 +2319,10 @@ msgstr "Відвідайте наше сховище у GitHub" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "Загальна популяція:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "Загальна популяція:" @@ -2331,6 +2335,10 @@ msgstr "Загальна популяція:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "Перейдіть до стадії пробудження. Доступно, коли у вас достатня сила мозку (тип клітини з аксонами)." +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "Загальна популяція:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/vi.po b/locale/vi.po index 3479113d3a2..529664fb92c 100644 --- a/locale/vi.po +++ b/locale/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,9 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + msgid "GLOBAL_GLACIATION_EVENT" msgstr "" @@ -2126,6 +2129,9 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/zh_CN.po b/locale/zh_CN.po index e4f4703ce91..f96d696123c 100644 --- a/locale/zh_CN.po +++ b/locale/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified Han script) \n" @@ -2326,6 +2326,10 @@ msgstr "访问我们在GitHub上的代码仓库" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "种群数量总数:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "种群数量总数:" @@ -2338,6 +2342,10 @@ msgstr "种群数量总数:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "进入启蒙阶段。一旦你有足够的脑力就可以使用(需要带轴突的组织)。" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "种群数量总数:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/zh_TW.po b/locale/zh_TW.po index 01aa32e5f95..865edad6268 100644 --- a/locale/zh_TW.po +++ b/locale/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-08 20:54+0100\n" +"POT-Creation-Date: 2025-03-09 10:33+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional Han script) \n" @@ -2296,6 +2296,10 @@ msgstr "造訪我們的 GitHub 儲存庫" msgid "GLES3" msgstr "GLES3" +#, fuzzy +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "全域物種量:" + #, fuzzy msgid "GLOBAL_GLACIATION_EVENT" msgstr "全域物種量:" @@ -2308,6 +2312,10 @@ msgstr "全域物種量:" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "進入覺醒階段。達到一定腦力(具有軸突的組織)後開放。" +#, fuzzy +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "全域物種量:" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index eeddedcd6ff..7d08bef0d7f 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -99,6 +99,8 @@ private void TryToTriggerEvent(double totalTimePassed) ChangePatchProperties(index, patch, totalTimePassed); } } + + LogBeginningOfGlaciation(); } private bool AreConditionsMet() @@ -181,12 +183,24 @@ private void LogEvent(Patch patch, double totalTimePassed) if (patch.Visibility == MapElementVisibility.Shown) { targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_EVENT_LOG", patch.Name), - true, true, "PatchIceShelf.svg"); + true, false, "PatchIceShelf.svg"); } patch.AddPatchEventRecord(WorldEffectVisuals.GlobalGlaciation, totalTimePassed); } + private void LogBeginningOfGlaciation() + { + targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_START_EVENT_LOG"), + true, true, "PatchIceShelf.svg"); + } + + private void LogEndOfGlaciation() + { + targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_END_EVENT_LOG"), + true, true, "PatchIceShelf.svg"); + } + private void FinishEvent() { hasEventAlreadyHappened = true; @@ -201,6 +215,8 @@ private void FinishEvent() ResetEnvironment(patch, patchSnapshot); RemoveChunks(patch); } + + LogEndOfGlaciation(); } private void ResetBackground(Patch patch, PatchSnapshot patchSnapshot) From 93fb65ed18c7cb64325884a15138def904a07b71 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sun, 9 Mar 2025 12:15:13 +0100 Subject: [PATCH 12/14] Merge conflict fix --- locale/af.po | 20 +++++++++++++++++++- locale/ar.po | 20 +++++++++++++++++++- locale/be.po | 18 +++++++++++++++++- locale/bg.po | 20 +++++++++++++++++++- locale/bn.po | 20 +++++++++++++++++++- locale/ca.po | 20 +++++++++++++++++++- locale/cs.po | 20 +++++++++++++++++++- locale/da.po | 20 +++++++++++++++++++- locale/de.po | 20 +++++++++++++++++++- locale/el.po | 17 ++++++++++++++++- locale/en.po | 2 +- locale/eo.po | 20 +++++++++++++++++++- locale/es.po | 20 +++++++++++++++++++- locale/es_AR.po | 20 +++++++++++++++++++- locale/et.po | 20 +++++++++++++++++++- locale/fi.po | 20 +++++++++++++++++++- locale/fr.po | 20 +++++++++++++++++++- locale/frm.po | 17 ++++++++++++++++- locale/gsw.po | 18 +++++++++++++++++- locale/he.po | 20 +++++++++++++++++++- locale/hr.po | 18 +++++++++++++++++- locale/hu.po | 20 +++++++++++++++++++- locale/id.po | 20 +++++++++++++++++++- locale/it.po | 20 +++++++++++++++++++- locale/ja.po | 17 ++++++++++++++++- locale/ka.po | 20 +++++++++++++++++++- locale/ko.po | 20 +++++++++++++++++++- locale/la.po | 20 +++++++++++++++++++- locale/lb_LU.po | 20 +++++++++++++++++++- locale/lt.po | 20 +++++++++++++++++++- locale/lv.po | 20 +++++++++++++++++++- locale/messages.pot | 21 +++++++++++---------- locale/mk.po | 20 +++++++++++++++++++- locale/nb_NO.po | 20 +++++++++++++++++++- locale/nl.po | 20 +++++++++++++++++++- locale/nl_BE.po | 20 +++++++++++++++++++- locale/pl.po | 20 +++++++++++++++++++- locale/pt_BR.po | 20 +++++++++++++++++++- locale/pt_PT.po | 20 +++++++++++++++++++- locale/ro.po | 20 +++++++++++++++++++- locale/ru.po | 20 +++++++++++++++++++- locale/si_LK.po | 18 +++++++++++++++++- locale/sk.po | 20 +++++++++++++++++++- locale/sr_Cyrl.po | 20 +++++++++++++++++++- locale/sr_Latn.po | 20 +++++++++++++++++++- locale/sv.po | 20 +++++++++++++++++++- locale/th_TH.po | 20 +++++++++++++++++++- locale/tok.po | 20 +++++++++++++++++++- locale/tr.po | 20 +++++++++++++++++++- locale/tt.po | 17 ++++++++++++++++- locale/uk.po | 20 +++++++++++++++++++- locale/vi.po | 17 ++++++++++++++++- locale/zh_CN.po | 20 +++++++++++++++++++- locale/zh_TW.po | 20 +++++++++++++++++++- 54 files changed, 977 insertions(+), 63 deletions(-) diff --git a/locale/af.po b/locale/af.po index f6167baf0eb..0335e503549 100644 --- a/locale/af.po +++ b/locale/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2146,6 +2146,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Beweeg na die wakker stadium. Besikbaar na jy genoeg brain krag het (tiepe selle met \"axons\")." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ar.po b/locale/ar.po index d5a56c6aed4..77dae4356fb 100644 --- a/locale/ar.po +++ b/locale/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2023-03-13 09:01+0000\n" "Last-Translator: Xradiation \n" "Language-Team: Arabic \n" @@ -2165,6 +2165,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "استمر إلا مرحلة الاستيقاظ. يصبح متاحًا بمجرد أن تكون قوة العقل كافية (أنسجة مع محاور)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/be.po b/locale/be.po index 6af60386fb8..482713bb787 100644 --- a/locale/be.po +++ b/locale/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2023-09-21 09:24+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Belarusian \n" @@ -2145,6 +2145,22 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Перамясціцца на стадыю Абуджэння. Дасягома толькі калі ў вас ёсць дастатковая колькасць развітасці мозга (Размясціце аксон у які небудзь тып клеткі)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/bg.po b/locale/bg.po index 1ee949628c7..6ebf2134925 100644 --- a/locale/bg.po +++ b/locale/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -2456,6 +2456,24 @@ msgstr "Отваряне на хранилището ни в „GitHub“" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Обща популация:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Обща популация:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Пробуждане" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "С" diff --git a/locale/bn.po b/locale/bn.po index 508ebcc5094..e849f5f1239 100644 --- a/locale/bn.po +++ b/locale/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2023-09-10 12:18+0000\n" "Last-Translator: Mahbeer Alam Sarker \n" "Language-Team: Bengali \n" @@ -2167,6 +2167,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "অর্ধেক জন সংখ্যা" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "অর্ধেক জন সংখ্যা" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "জাগ্রত পর্যায়ে চলে যাওয়া। আপনার পর্যাপ্ত মস্তিষ্কের শক্তি (অ্যাক্সন সহ টিস্যু টাইপ) থাকলে উপলব্ধ।" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ca.po b/locale/ca.po index 3b345c2def0..a325dbe870a 100644 --- a/locale/ca.po +++ b/locale/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Catalan \n" @@ -2425,6 +2425,24 @@ msgstr "Sortir del joc" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Població Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Població Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Despertar" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/cs.po b/locale/cs.po index 444379aa6bd..c75e12900a7 100644 --- a/locale/cs.po +++ b/locale/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Czech \n" @@ -2493,6 +2493,24 @@ msgstr "Navštiv náš GitHub repozitář" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Celková populace:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Celková populace:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Přejděte do fáze Probuzení. Dostupné, jakmile máte dostatečnou sílu mozku (typ tkáně s axony)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/da.po b/locale/da.po index 6c561e6a287..52a3f54b6db 100644 --- a/locale/da.po +++ b/locale/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2024-06-09 13:22+0000\n" "Last-Translator: Magnus Norling Svane \n" "Language-Team: Danish \n" @@ -2130,6 +2130,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Halver Bestand" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Halver Bestand" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Tag til opvågningsstadiet. Tilgængelig, når du har nok hjernekraft (vævstype med axoner)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/de.po b/locale/de.po index 16d6b5e47be..1a1ab16f904 100644 --- a/locale/de.po +++ b/locale/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: German \n" @@ -2295,6 +2295,24 @@ msgstr "Besuche unser GitHub Repositorium" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Gesamtpopulation:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Gesamtpopulation:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Fortschritt zum Erwachen-Stadium. Erst möglich wenn ausreichend Gehirnkapazität zur Verfügung steht (Hirngewebe mit Axonen) ." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/el.po b/locale/el.po index 890790d043e..6cbe48503e6 100644 --- a/locale/el.po +++ b/locale/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2022-03-31 05:02+0000\n" "Last-Translator: Apostolos Paschidis \n" "Language-Team: Greek \n" @@ -2143,6 +2143,21 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/en.po b/locale/en.po index c58e267046b..b2a87894ab3 100644 --- a/locale/en.po +++ b/locale/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-09 10:33+0100\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-04 13:27+0200\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: English \n" diff --git a/locale/eo.po b/locale/eo.po index 0db499c7110..483ae1ab001 100644 --- a/locale/eo.po +++ b/locale/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Esperanto \n" @@ -2469,6 +2469,24 @@ msgstr "Aldonunovan funkcion por klavo" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} loĝantaro ŝanĝiĝis per {1} pro: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Aldonunovan funkcion por klavo" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/es.po b/locale/es.po index 3cbe3837481..8e4dac4b037 100644 --- a/locale/es.po +++ b/locale/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish \n" @@ -2314,6 +2314,24 @@ msgstr "Visita nuestro repositorio de GitHub" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Población Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Población Total:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Avanzar al Estadio del Despertar. Solo disponible una vez tengas suficiente poder cerebral (tejido con axones)" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/es_AR.po b/locale/es_AR.po index dc780c90792..91603cdf1fc 100644 --- a/locale/es_AR.po +++ b/locale/es_AR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish (Argentina) \n" @@ -2319,6 +2319,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "población:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "población:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Moverse a la etapa Despertar. Solo accesible cuando tengas suficiente poder cerebral (tipo de tejido con axones)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/et.po b/locale/et.po index 29d68020dc4..81e34a3b29c 100644 --- a/locale/et.po +++ b/locale/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Estonian \n" @@ -2517,6 +2517,24 @@ msgstr "vabasurm" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Rahvaarv kokku:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Rahvaarv kokku:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "vabasurm" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/fi.po b/locale/fi.po index 5dc72f3d309..e7b94fae583 100644 --- a/locale/fi.po +++ b/locale/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-06 07:27+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Finnish \n" @@ -2541,6 +2541,24 @@ msgstr "Kuole" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Kanta:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Kanta:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Herää" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/fr.po b/locale/fr.po index 8680eec0ecc..ef1b748abff 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: French \n" @@ -2364,6 +2364,24 @@ msgstr "Visitez notre dépôt Github" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Population totale :" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Population totale :" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Passer à la Phase d'Éveil. Disponible une fois que vous avez assez de puissance cérébrale (Type de tissu avec axones)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/frm.po b/locale/frm.po index e6758564349..beaa808c726 100644 --- a/locale/frm.po +++ b/locale/frm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,21 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/gsw.po b/locale/gsw.po index b7c7cd913ab..e17f5320eb6 100644 --- a/locale/gsw.po +++ b/locale/gsw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-01 13:57+0000\n" "Last-Translator: Argakyan \n" "Language-Team: Alemannic \n" @@ -2186,6 +2186,22 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Fortschritt zum Erwachene-Stadium. Erscht mögli wenn uusriichend Ghirnkapazität z'Verfüegig staht (Hirngwäb mit Axone) ." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/he.po b/locale/he.po index 955f335c01c..48dc5900dbb 100644 --- a/locale/he.po +++ b/locale/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hebrew \n" @@ -2437,6 +2437,24 @@ msgstr "צפו בספריית GitHub שלנו" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "כלל האוכלוסיה:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "כלל האוכלוסיה:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "עבור לשלב ההתעוררות. זמין כאשר יש לך מספיק יכולת שכלית (רקמה מסוג עם אקסונים)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "ג" diff --git a/locale/hr.po b/locale/hr.po index 6ce471261cf..60d16a16834 100644 --- a/locale/hr.po +++ b/locale/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian \n" @@ -2211,6 +2211,22 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Kreni u fazu buđenja. Moguće kada imaš dovoljno moždane snage (vrsta tkiva s aksionima)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/hu.po b/locale/hu.po index c1d609bf0ec..edcb361c8df 100644 --- a/locale/hu.po +++ b/locale/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Hungarian \n" @@ -2486,6 +2486,24 @@ msgstr "Kilépés a játékból" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Teljes populáció:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Teljes populáció:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Lépj át az Ébredés szakaszába. Elérhető, ha rendelkezel elegendő agykapacitással (axonokkal rendelkező szövettípus)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/id.po b/locale/id.po index fb08b1dae5e..0fe067ec3d1 100644 --- a/locale/id.po +++ b/locale/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Indonesian \n" @@ -2470,6 +2470,24 @@ msgstr "Keluar dari permainan" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} populasi berubah {1} karena: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} populasi berubah {1} karena: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Tambah keybind baru" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/it.po b/locale/it.po index 1c2259d182d..fdfb8ec41e3 100644 --- a/locale/it.po +++ b/locale/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian \n" @@ -2400,6 +2400,24 @@ msgstr "Esci dal gioco" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Popolazione totale:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Popolazione totale:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Spostati alla Fase di Risveglio. Disponibile una volta che hai abbastanza Potenza Cerebale (un tipo di tessuto con assoni)" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ja.po b/locale/ja.po index 5c951531a3d..55f063d44e1 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-23 16:13+0000\n" "Last-Translator: grassgrass \n" "Language-Team: Japanese \n" @@ -2124,6 +2124,21 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ka.po b/locale/ka.po index 80d3e5d0f81..68edd32b8b8 100644 --- a/locale/ka.po +++ b/locale/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 05:50+0000\n" "Last-Translator: NorwayFun \n" "Language-Team: Georgian \n" @@ -2186,6 +2186,24 @@ msgstr "ეწვიეთ ჩვენს GitHub-ის რეპოზიტ msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "გლობალური პოპულაცია:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "გლობალური პოპულაცია:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "გამოღვიძების ფაზაზე გადასვლა. ხელმისაწვდომი გახდება, როცა საკმარისი ტვინის სიმძლავრე (ქსოვილის ტიპი აქსონებით) გექნებათ." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "გ" diff --git a/locale/ko.po b/locale/ko.po index 2fa06f0cbed..e56b5c46f73 100644 --- a/locale/ko.po +++ b/locale/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Korean \n" @@ -2463,6 +2463,24 @@ msgstr "새로운 키 배치 추가" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "다음으로 인하여 개체 수가 {0} 에서 {1} 로 변화됨: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "새로운 키 배치 추가" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/la.po b/locale/la.po index 554ffb28c3f..a103f454370 100644 --- a/locale/la.po +++ b/locale/la.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latin \n" @@ -2237,6 +2237,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Movere ad Gradum Excitantem. In promptu cum semel satis mentis potentem habes (textus coporis generem cum axonibus)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lb_LU.po b/locale/lb_LU.po index 81a405233db..103921ac1ca 100644 --- a/locale/lb_LU.po +++ b/locale/lb_LU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Luxembourgish \n" @@ -2236,6 +2236,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Halbeier Populatioun" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Halbeier Populatioun" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Op d' 'Erwaachen Stuf' weidergoen. Accessibel wann's de genuch Gehier hues (eng Zort Geweebe mat Axonen)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lt.po b/locale/lt.po index b45fdeadc82..64fafa6900f 100644 --- a/locale/lt.po +++ b/locale/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Lithuanian \n" @@ -2359,6 +2359,24 @@ msgstr "Baigti žaidimą" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Sumažinti Perpus Populiaciją" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Sumažinti Perpus Populiaciją" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Pereiti į Nubudimo Stadiją. Ji galima, kai turi pakankamai protinės galios (audinio tipas su aksonais)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/lv.po b/locale/lv.po index 9a15a176bed..24ed9b37f00 100644 --- a/locale/lv.po +++ b/locale/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2024-10-17 07:24+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Latvian \n" @@ -2426,6 +2426,24 @@ msgstr "Atsākt spēli" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Kopējā Populācija:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Kopējā Populācija:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Apskatiet detalizētu informāciju aiz pareģošanas" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/messages.pot b/locale/messages.pot index 2d16a8f8395..5a682c24f68 100644 --- a/locale/messages.pot +++ b/locale/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-09 10:33+0100\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -617,7 +617,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:2750 #: ../simulation_parameters/microbe_stage/biomes.json:3095 #: ../simulation_parameters/microbe_stage/biomes.json:3312 -#: ../src/auto-evo/AutoEvoGlobalCache.cs:57 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:58 msgid "BIG_IRON_CHUNK" msgstr "" @@ -3002,15 +3002,15 @@ msgstr "" msgid "GLES3" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:201 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:200 msgid "GLOBAL_GLACIATION_END_EVENT_LOG" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:181 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:180 msgid "GLOBAL_GLACIATION_EVENT" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:186 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:185 msgid "GLOBAL_GLACIATION_EVENT_LOG" msgstr "" @@ -3018,7 +3018,7 @@ msgstr "" msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" msgstr "" -#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:195 +#: ../src/general/world_effects/patch_events/GlobalGlaciationEvent.cs:194 msgid "GLOBAL_GLACIATION_START_EVENT_LOG" msgstr "" @@ -4087,6 +4087,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:345 #: ../simulation_parameters/microbe_stage/biomes.json:1922 #: ../simulation_parameters/microbe_stage/biomes.json:2832 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:70 msgid "LARGE_SULFUR_CHUNK" msgstr "" @@ -4570,7 +4571,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:1895 #: ../simulation_parameters/microbe_stage/biomes.json:2509 #: ../simulation_parameters/microbe_stage/biomes.json:2809 -#: ../src/auto-evo/AutoEvoGlobalCache.cs:67 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:68 msgid "MEDIUM_SULFUR_CHUNK" msgstr "" @@ -6457,7 +6458,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:414 #: ../simulation_parameters/microbe_stage/biomes.json:1999 -#: ../src/auto-evo/AutoEvoGlobalCache.cs:76 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:79 msgid "RADIOACTIVE_CHUNK" msgstr "" @@ -7176,7 +7177,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:2714 #: ../simulation_parameters/microbe_stage/biomes.json:3063 #: ../simulation_parameters/microbe_stage/biomes.json:3276 -#: ../src/auto-evo/AutoEvoGlobalCache.cs:55 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:56 msgid "SMALL_IRON_CHUNK" msgstr "" @@ -7195,7 +7196,7 @@ msgstr "" #: ../simulation_parameters/microbe_stage/biomes.json:1868 #: ../simulation_parameters/microbe_stage/biomes.json:2486 #: ../simulation_parameters/microbe_stage/biomes.json:2778 -#: ../src/auto-evo/AutoEvoGlobalCache.cs:65 +#: ../src/auto-evo/AutoEvoGlobalCache.cs:66 msgid "SMALL_SULFUR_CHUNK" msgstr "" diff --git a/locale/mk.po b/locale/mk.po index 326979f1deb..23ef98680cc 100644 --- a/locale/mk.po +++ b/locale/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2023-09-15 06:55+0000\n" "Last-Translator: Kristijan Miracevski \n" "Language-Team: Macedonian \n" @@ -2173,6 +2173,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Уполови популација" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Уполови популација" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Префрлете се на фазата на будење. Достапно откако ќе имате доволно мозочна моќ (тип на ткиво со аксони)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nb_NO.po b/locale/nb_NO.po index 006bc65e6c3..59cb0bd8de5 100644 --- a/locale/nb_NO.po +++ b/locale/nb_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Norwegian Bokmål \n" @@ -2247,6 +2247,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Dra til Oppvåknings Fasen. Tilgjengelig når du har nok hjernekraft (vevstype med aksoner)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/nl.po b/locale/nl.po index 3d26f1ac77f..17fcde89bbe 100644 --- a/locale/nl.po +++ b/locale/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -2370,6 +2370,24 @@ msgstr "Bezoek onze Github opslagplek" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Totale Bevolking:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Totale Bevolking:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer je genoeg breinkracht hebt (weefseltype met axonen)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/nl_BE.po b/locale/nl_BE.po index d7e9b7c43b3..3b8723a10f4 100644 --- a/locale/nl_BE.po +++ b/locale/nl_BE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch (Belgium) \n" @@ -2476,6 +2476,24 @@ msgstr "Zelfmoord" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Totale populatie:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Totale populatie:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ga door naar de Ontwaakfase. Beschikbaar wanneer u genoeg breinkracht hebt (weefseltype met axonen)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/pl.po b/locale/pl.po index 0575635d452..7179b2040ff 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -2363,6 +2363,24 @@ msgstr "Odwiedź naszą stronę GitHub" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Całkowita populacja:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Całkowita populacja:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Przejdź do Fazy Przebudzenia. Dostępne w momencie osiągniecia wystarczającej siły umysłu (typ komórki z aksonem)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 8d93f0e2e84..43591eb82be 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Brazil) \n" @@ -2311,6 +2311,24 @@ msgstr "Visite o nosso repositório no GitHub" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "População Global:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "População Global:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Ir para o Estágio Desperto. Disponível ao ter capacidade mental suficiente (representados por tecidos com axônios)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/pt_PT.po b/locale/pt_PT.po index 25389a3b54b..f2c3ba013dd 100644 --- a/locale/pt_PT.po +++ b/locale/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Portuguese (Portugal) \n" @@ -2361,6 +2361,24 @@ msgstr "Visite o nosso repositório GitHub" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "População:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "População:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Suicídio" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/ro.po b/locale/ro.po index b4cc1d05417..cccf253ecbc 100644 --- a/locale/ro.po +++ b/locale/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-01-21 12:01+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Romanian \n" @@ -2220,6 +2220,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Înjumătățește Populația" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Înjumătățește Populația" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Treceți la etapa de trezire. Disponibil odată ce aveți creierul suficient de dezvoltat (tip de țesut cu axoni)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/ru.po b/locale/ru.po index f8a5ecc6d24..b88008cc19e 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Russian \n" @@ -2310,6 +2310,24 @@ msgstr "Посетить наш Github-репозиторий" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Глобальная популяция:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Глобальная популяция:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Переместиться на Стадию Пробуждения. Доступно только если у вас есть достаточное количество развитости мозга (Поместите аксон в какой либо тип клетки)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "Г" diff --git a/locale/si_LK.po b/locale/si_LK.po index ee707c23d30..6ec7b71ec58 100644 --- a/locale/si_LK.po +++ b/locale/si_LK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2022-03-22 18:22+0000\n" "Last-Translator: Henri Hyyryläinen \n" "Language-Team: Sinhala \n" @@ -2167,6 +2167,22 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "තේරූ:" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sk.po b/locale/sk.po index 7c7e638eae2..80c67e86e3f 100644 --- a/locale/sk.po +++ b/locale/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Slovak \n" @@ -2358,6 +2358,24 @@ msgstr "Opustiť hru" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Celková populácia:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Celková populácia:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Prebudiť sa" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/sr_Cyrl.po b/locale/sr_Cyrl.po index 9037c7183ad..6ffc8dbf86a 100644 --- a/locale/sr_Cyrl.po +++ b/locale/sr_Cyrl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Cyrillic script) \n" @@ -2469,6 +2469,24 @@ msgstr "Додајте ново везивање тастера" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Број популације од {0} променио се за {1} због: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Број популације од {0} променио се за {1} због: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Додајте ново везивање тастера" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sr_Latn.po b/locale/sr_Latn.po index 74968ee0955..4c8623300b7 100644 --- a/locale/sr_Latn.po +++ b/locale/sr_Latn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Serbian (Latin script) \n" @@ -2406,6 +2406,24 @@ msgstr "Dodajte novo vezivanje tastera" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Broj populacije od {0} promenio se za {1} zbog: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Dodajte novo vezivanje tastera" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/sv.po b/locale/sv.po index cf290b0d79b..f95ac1070d9 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -2455,6 +2455,24 @@ msgstr "Självmord" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} befolkning förändrades av {1} på grund av: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Nå uppvakningsteget. Tillgänglig när du har tillräckigt med hjärnkraft (axonvävnad)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/th_TH.po b/locale/th_TH.po index a7f5743dbfa..6fcb664cc80 100644 --- a/locale/th_TH.po +++ b/locale/th_TH.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-02-06 13:29+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Thai \n" @@ -2360,6 +2360,24 @@ msgstr "ดำเนินการต่อ" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "{0} ประชากรเปลี่ยนแปลงโดย {1} เนื่องจาก: {2}" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "ดำเนินการต่อ" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tok.po b/locale/tok.po index 1e1751c4e26..46f9339152d 100644 --- a/locale/tok.po +++ b/locale/tok.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2023-02-06 07:13+0000\n" "Last-Translator: jan-sopi \n" "Language-Team: Toki Pona \n" @@ -2220,6 +2220,24 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "(nanpa ni: sike ante li kama ante kepeken tenpo seme)" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "kama lon tenpo pi kama sona. open la sina jo e sona mute." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/tr.po b/locale/tr.po index a9ca9628e07..f59e11f1933 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:48+0000\n" "Last-Translator: punctdan \n" "Language-Team: Turkish \n" @@ -2293,6 +2293,24 @@ msgstr "GitHub depomuzu ziyaret edin" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Genel popülasyon:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Genel popülasyon:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Uyanış Evresi'ne geç. Yeterli zihin gücüne sahip olduğunuzda açılır (aksonlu doku türü)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/tt.po b/locale/tt.po index 751bb45a9f0..df89d830e77 100644 --- a/locale/tt.po +++ b/locale/tt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Thrive VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,21 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/uk.po b/locale/uk.po index e73b3069736..f182ddb8e51 100644 --- a/locale/uk.po +++ b/locale/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Ukrainian \n" @@ -2319,6 +2319,24 @@ msgstr "Відвідайте наше сховище у GitHub" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "Загальна популяція:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "Загальна популяція:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "Перейдіть до стадії пробудження. Доступно, коли у вас достатня сила мозку (тип клітини з аксонами)." + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/vi.po b/locale/vi.po index fceb10c4c09..ea1a77f6d37 100644 --- a/locale/vi.po +++ b/locale/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -2117,6 +2117,21 @@ msgstr "" msgid "GLES3" msgstr "" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "" + +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "" diff --git a/locale/zh_CN.po b/locale/zh_CN.po index dcda4455271..ad7807a9337 100644 --- a/locale/zh_CN.po +++ b/locale/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified Han script) \n" @@ -2326,6 +2326,24 @@ msgstr "访问我们在GitHub上的代码仓库" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "种群数量总数:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "种群数量总数:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "进入启蒙阶段。一旦你有足够的脑力就可以使用(需要带轴突的组织)。" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" diff --git a/locale/zh_TW.po b/locale/zh_TW.po index d6c0f5c9d78..97f32c642e9 100644 --- a/locale/zh_TW.po +++ b/locale/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2025-03-07 12:58+0000\n" +"POT-Creation-Date: 2025-03-09 12:15+0100\n" "PO-Revision-Date: 2025-03-07 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Traditional Han script) \n" @@ -2296,6 +2296,24 @@ msgstr "造訪我們的 GitHub 儲存庫" msgid "GLES3" msgstr "GLES3" +msgid "GLOBAL_GLACIATION_END_EVENT_LOG" +msgstr "" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT" +msgstr "全域物種量:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_LOG" +msgstr "全域物種量:" + +#, fuzzy +msgid "GLOBAL_GLACIATION_EVENT_TOOLTIP" +msgstr "進入覺醒階段。達到一定腦力(具有軸突的組織)後開放。" + +msgid "GLOBAL_GLACIATION_START_EVENT_LOG" +msgstr "" + msgid "GLOBAL_INITIAL_LETTER" msgstr "G" From a24f5dfd0b1ef0ced2f89c96d3aaac6803f0e044 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sun, 9 Mar 2025 13:38:21 +0100 Subject: [PATCH 13/14] Add icon Remove caves from the event --- .../gui/bevel/GlobalGlaciationEvent.svg | 22 +++++++++++++++++++ .../patch_events/GlobalGlaciationEvent.cs | 12 +++++----- src/microbe_stage/editor/PatchMapNode.tscn | 4 ++-- 3 files changed, 30 insertions(+), 8 deletions(-) create mode 100644 assets/textures/gui/bevel/GlobalGlaciationEvent.svg diff --git a/assets/textures/gui/bevel/GlobalGlaciationEvent.svg b/assets/textures/gui/bevel/GlobalGlaciationEvent.svg new file mode 100644 index 00000000000..a0ba68deca7 --- /dev/null +++ b/assets/textures/gui/bevel/GlobalGlaciationEvent.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs index 7d08bef0d7f..8e92d5e9788 100644 --- a/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs +++ b/src/general/world_effects/patch_events/GlobalGlaciationEvent.cs @@ -94,7 +94,7 @@ private void TryToTriggerEvent(double totalTimePassed) foreach (var (index, patch) in targetWorld.Map.Patches) { - if (patch.Depth[0] == 0) + if (patch.Depth[0] == 0 && patch.BiomeType != BiomeType.Cave) { ChangePatchProperties(index, patch, totalTimePassed); } @@ -109,7 +109,7 @@ private bool AreConditionsMet() var patchesExceedingOxygenLevel = 0; foreach (var patch in targetWorld.Map.Patches.Values) { - if (patch.Depth[0] != 0) + if (patch.Depth[0] != 0 || patch.BiomeType == BiomeType.Cave) continue; patch.Biome.TryGetCompound(Compound.Oxygen, CompoundAmountType.Biome, out var oxygenLevel); @@ -178,12 +178,12 @@ private void AddIceChunks(Patch patch) private void LogEvent(Patch patch, double totalTimePassed) { patch.LogEvent(new LocalizedString("GLOBAL_GLACIATION_EVENT"), - true, true, "PatchIceShelf.svg"); + true, true, "GlobalGlaciationEvent.svg"); if (patch.Visibility == MapElementVisibility.Shown) { targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_EVENT_LOG", patch.Name), - true, false, "PatchIceShelf.svg"); + true, false, "GlobalGlaciationEvent.svg"); } patch.AddPatchEventRecord(WorldEffectVisuals.GlobalGlaciation, totalTimePassed); @@ -192,13 +192,13 @@ private void LogEvent(Patch patch, double totalTimePassed) private void LogBeginningOfGlaciation() { targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_START_EVENT_LOG"), - true, true, "PatchIceShelf.svg"); + true, true, "GlobalGlaciationEvent.svg"); } private void LogEndOfGlaciation() { targetWorld.LogEvent(new LocalizedString("GLOBAL_GLACIATION_END_EVENT_LOG"), - true, true, "PatchIceShelf.svg"); + true, true, "GlobalGlaciationEvent.svg"); } private void FinishEvent() diff --git a/src/microbe_stage/editor/PatchMapNode.tscn b/src/microbe_stage/editor/PatchMapNode.tscn index ca15db1a4f8..d98a2917b7b 100644 --- a/src/microbe_stage/editor/PatchMapNode.tscn +++ b/src/microbe_stage/editor/PatchMapNode.tscn @@ -4,7 +4,7 @@ [ext_resource type="Texture2D" uid="uid://rckgbb1e3ia7" path="res://assets/textures/gui/bevel/PatchVents.svg" id="2_e0cfn"] [ext_resource type="Texture2D" uid="uid://c8mvyi3d47yvq" path="res://assets/textures/gui/bevel/Eruption.svg" id="4_t22aw"] [ext_resource type="LabelSettings" uid="uid://dcekwe8j7ep16" path="res://src/gui_common/fonts/Title-SemiBold-AlmostHuge.tres" id="4_tygy2"] -[ext_resource type="Texture2D" uid="uid://bmjju70usuwqo" path="res://assets/textures/gui/bevel/PatchIceShelf.svg" id="5_27mry"] +[ext_resource type="Texture2D" uid="uid://de6hlbvfeackn" path="res://assets/textures/gui/bevel/GlobalGlaciationEvent.svg" id="5_0vro7"] [sub_resource type="StyleBoxFlat" id="3"] bg_color = Color(0.592157, 0.788235, 0.823529, 1) @@ -111,7 +111,7 @@ custom_minimum_size = Vector2(16, 16) layout_mode = 2 tooltip_text = "GLOBAL_GLACIATION_EVENT_TOOLTIP" mouse_filter = 0 -texture = ExtResource("5_27mry") +texture = ExtResource("5_0vro7") expand_mode = 2 stretch_mode = 4 From 857fe3884b4c7964d2d741a1b716ceca0441d728 Mon Sep 17 00:00:00 2001 From: Patryk26g Date: Sun, 9 Mar 2025 14:05:05 +0100 Subject: [PATCH 14/14] Add import --- .../bevel/GlobalGlaciationEvent.svg.import | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 assets/textures/gui/bevel/GlobalGlaciationEvent.svg.import diff --git a/assets/textures/gui/bevel/GlobalGlaciationEvent.svg.import b/assets/textures/gui/bevel/GlobalGlaciationEvent.svg.import new file mode 100644 index 00000000000..1124f7c58be --- /dev/null +++ b/assets/textures/gui/bevel/GlobalGlaciationEvent.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de6hlbvfeackn" +path="res://.godot/imported/GlobalGlaciationEvent.svg-fac761d32c3b4f9298191db90dd10135.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/textures/gui/bevel/GlobalGlaciationEvent.svg" +dest_files=["res://.godot/imported/GlobalGlaciationEvent.svg-fac761d32c3b4f9298191db90dd10135.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=256 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false