Skip to content

Commit

Permalink
v0.6.2.1, italian translation thanks to Iliumyx, fix missing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidPack committed Dec 21, 2019
1 parent 3908c57 commit 6ec7626
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CheatSheetWorld.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public override void Initialize()
{
try
{
CheatSheet.instance.hotbar.bCycleExtraAccessorySlots.Tooltip = CSText("ExtraAccessorySlots") + Main.LocalPlayer.GetModPlayer<CheatSheetPlayer>().numberExtraAccessoriesEnabled;
CheatSheet.instance.hotbar.bCycleExtraAccessorySlots.Tooltip = CSText("ExtraAccessorySlots") + " " + Main.LocalPlayer.GetModPlayer<CheatSheetPlayer>().numberExtraAccessoriesEnabled;
CheatSheet.instance.paintToolsHotbar.UndoHistory.Clear();
CheatSheet.instance.paintToolsHotbar.UpdateUndoTooltip();
}
Expand Down
3 changes: 0 additions & 3 deletions Localization/TranslationsNeeded.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
zh-Hans 3
ru-RU 3
pt-BR 8
pl-PL 102
it-IT 102
fr-FR 3
es-ES 3
de-DE 3
2 changes: 1 addition & 1 deletion Localization/UpdateLocalizationFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
otherLanguage += otherLines[otherIndex]
otherIndex += 1
else:
otherLanguage += "# " + englishLine.strip() + '\n'
otherLanguage += "# " + englishLine.strip() + '\n' # bug: oops, strip removes spaces at end that might be needed.
missing += 1
# Add English Comments back in
elif englishLine.strip().startswith('#'):
Expand Down
12 changes: 6 additions & 6 deletions Localization/it-IT.lang
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Butcherer.ButcherHostileAndFriendlyNPCs=Uccidi gli NPC ostili ed amichevoli
Butcherer.ButcherFriendlyNPCs=Uccidi gli NPC amichevoli
Butcherer.ButcherNotification=Gli NPC sono stati uccisi da {0}

Vacuum.VacuumNotification=Gli oggetti a terra sono stati attirati by {0}
Vacuum.VacuumNotification=Gli oggetti a terra sono stati attirati by {0}

Teleport.Dungeon=Dungeon
Teleport.Spawnpoint=Punto di rigenerazione
Expand All @@ -29,12 +29,12 @@ QuickClear.ClearDroppedItems=Cancella tutti gli oggetti rilasciati
QuickClear.ClearProjectiles=Cancella i proiettili
QuickClear.ClearBuffs=Cancella i buff
QuickClear.ClearDebuffs=Cancella i debuff
QuickClear.ItemClearNotification=Gli item sono stati cancellati da {0}
QuickClear.ItemClearNotification=Gli item sono stati cancellati da {0}
QuickClear.ProjectileClearNotification=I proiettili sono stati cancellati da {0}

SpawnRate.SpawnRateMultiplier=Molriplicatore velocità spawn: 1х
SpawnRate.SpawnRateMultiplierNew=Moltiplicatore velocità spawn:
SpawnRate.SpawnRateMultiplierText=Velocità spawn e max spawns ora
SpawnRate.SpawnRateMultiplierNew=Moltiplicatore velocità spawn:
SpawnRate.SpawnRateMultiplierText=Velocità spawn e max spawns ora
SpawnRate.SpawnRateNormalValue= il valore normale

LightHack.LightHackDisabled=Light Hack: Disattivata
Expand All @@ -46,8 +46,8 @@ GodMode.GodModeDisabled=God Mode Disattivata
GodMode.GodModeEnabled=God Mode Attivata

MinionSlot.MinionSlotBooster=Slot minion: +0
MinionSlot.MinionSlotBoosterNew=Slot minion:
MinionSlot.MinionSlotBoosterText=Slot minion ora a
MinionSlot.MinionSlotBoosterNew=Slot minion:
MinionSlot.MinionSlotBoosterText=Slot minion ora a

RecipeBrowser.AllRecipes=Tutte le ricette
RecipeBrowser.CycleModSpecificRecipes=Ricette di una specifica mod
Expand Down
4 changes: 2 additions & 2 deletions Menus/MinionSlotBooster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public static void ChangeSettingLogic(int newSetting)
currentBoost = boosts[currentBoostIndex];
if (!Main.dedServ)
{
button.Tooltip = CSText("MinionSlotBoosterNew") + boostStrings[currentBoostIndex];
Main.NewText(CSText("MinionSlotBoosterText") + boostStrings[currentBoostIndex]);
button.Tooltip = CSText("MinionSlotBoosterNew") + " " + boostStrings[currentBoostIndex];
Main.NewText(CSText("MinionSlotBoosterText") + " " + boostStrings[currentBoostIndex]);
}
}

Expand Down
4 changes: 2 additions & 2 deletions Menus/SpawnRateMultiplier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ public static void ChangeSettingLogic(int newSetting)
currentMultiplier = multipliers[currentMultiplierIndex];
if (!Main.dedServ)
{
button.Tooltip = CSText("SpawnRateMultiplierNew") + multiplierStrings[currentMultiplierIndex];
Main.NewText(CSText("SpawnRateMultiplierText") + multiplierStrings[currentMultiplierIndex] + CSText("SpawnRateNormalValue"));
button.Tooltip = CSText("SpawnRateMultiplierNew") + " " + multiplierStrings[currentMultiplierIndex];
Main.NewText(CSText("SpawnRateMultiplierText") + " " + multiplierStrings[currentMultiplierIndex] + " " + CSText("SpawnRateNormalValue"));
}
}

Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = jopojelly, jofairden, rrryutaro
version = 0.6.2
version = 0.6.2.1
displayName = Cheat Sheet
homepage = http://forums.terraria.org/index.php?threads/cheat-sheet.41407/
buildIgnore = .vs\*, Properties\*, *.csproj, *.user, obj\*, bin\*, *.config, .git\*
Expand Down

0 comments on commit 6ec7626

Please sign in to comment.