Skip to content

Commit

Permalink
fluid face warn lang
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrishankov committed May 25, 2021
1 parent 8a2f939 commit 4d1407f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
3 changes: 3 additions & 0 deletions src/main/resources/assets/extracells/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ extracells.tooltip.gas=Gas
extracells.tooltip.essentia=Essentia
extracells.tooltip.installed=Installed:
extracells.tooltip.crafting=Crafting
extracells.tooltip.fluidface.0=Impact authors do not recommend using this device.
extracells.tooltip.fluidface.1=This device is the source of ME network lags and problems.
extracells.tooltip.fluidface.2=This item will not be deleted, use at your own risk.

#Buttons
extracells.gui.craft=Craft
21 changes: 11 additions & 10 deletions src/main/resources/assets/extracells/lang/ru_RU.lang
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
//**********//
//EXTRACELLS//
//**********//
#EXTRACELLS

//Items
#Items
extracells.item.storage.physical.256k.name=МЭ 256Кб хранилище
extracells.item.storage.physical.1024k.name=МЭ 1024kб хранилище
extracells.item.storage.physical.4096k.name=МЭ 4096kб хранилище
Expand Down Expand Up @@ -32,14 +30,14 @@ extracells.item.storage.casing.fluid.name=Жидкостный корпус хр
extracells.item.terminal.fluid.wireless.name=Беспроводной МЭ жидкостный терминал
extracells.item.fluid.pattern=МЭ жидкостный шаблон [WIP]

//Creative Tab
#Creative Tab
itemGroup.Extra_Cells=Extra Cells

//Item Groups
#Item Groups
extracells.fluid.IO=МЭ жидкостная шина экспорта/импорта
extracells.fluid.plane=МЭ жидкостная плоскость уничтожения/формирования

//Parts
#Parts
extracells.part.fluid.export.name=МЭ жидкостная шина экспорта
extracells.part.fluid.import.name=МЭ жидкостная шина импорта
extracells.part.fluid.storage.name=МЭ жидкостная шина хранения
Expand All @@ -53,7 +51,7 @@ extracells.part.fluid.conversion.monitor.name=МЭ жидкостный мони
extracells.part.fluid.monitor.name=МЭ жидкостный монитор хранения
extracells.part.oredict.export.name=МЭ шина экспорта по словарю руд

//Blocks
#Blocks
extracells.block.certustank=Резервуар из истинного кварца
extracells.block.walrus.name=Морж
extracells.block.fluidcrafter.name=МЭ жидкостный сборщик
Expand All @@ -62,7 +60,7 @@ extracells.block.fluidfiller.name=МЭ жидкостный авто-запол
tile.extracells.block.vibrantchamberfluid.name=Жидкостная вибрационная камера
tile.extracells.block.hardmedrive.name=Взрывоустойчивый МЭ накопитель

//Tooltips and Chat-Messages
#Tooltips and Chat-Messages
extracells.tooltip.amount=Количество
extracells.tooltip.fluid=Жидкость
extracells.tooltip.storage.physical.types=%s из %s типов предметов использовано.
Expand All @@ -84,6 +82,9 @@ extracells.tooltip.storage.container.2=Режим: Равноценный обм
extracells.tooltip.onlyblocks=Вы не можете размещать предметы! Положите блок в БЛОК-контейнер
extracells.tooltip.save=Сохранить
extracells.tooltip.oredict=Имя словаря руд
extracells.tooltip.fluidface.0=Авторы Impact не рекомендуют использовать это устройство.
extracells.tooltip.fluidface.1=Это устройство является источником лагов и проблем в сети ME.
extracells.tooltip.fluidface.2=Это устройство не будет удалено, используйте на свой страх и риск.

//Buttons
#Buttons
extracells.gui.craft=Создать
8 changes: 5 additions & 3 deletions src/main/scala/extracells/item/ItemBlockECBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
import java.util.Collections;
import java.util.List;

import static net.minecraft.util.StatCollector.translateToLocal;

public class ItemBlockECBase extends ItemBlock {

public ItemBlockECBase(Block block) {
Expand Down Expand Up @@ -76,9 +78,9 @@ public void addInformation(ItemStack is, EntityPlayer p, List l, boolean b) {
super.addInformation(is, p, l, b);
if (is.getItemDamage() == 0) {
String[] tooltip = new String[] {
EnumChatFormatting.RED + "Impact authors do not recommend using this device.",
EnumChatFormatting.RED + "This device is the source of ME network lags and problems.",
EnumChatFormatting.RED + "This item will not be deleted, use at your own risk.",
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.0"),
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.1"),
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.2"),
};
Collections.addAll(l, tooltip);
}
Expand Down
8 changes: 5 additions & 3 deletions src/main/scala/extracells/item/ItemPartECBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
import java.util.Map;
import java.util.Set;

import static net.minecraft.util.StatCollector.translateToLocal;

public class ItemPartECBase extends Item implements IPartItem, IItemGroup {

public ItemPartECBase() {
Expand Down Expand Up @@ -76,9 +78,9 @@ public void addInformation(ItemStack is, EntityPlayer p, List l, boolean b) {
super.addInformation(is, p, l, b);
if (is.getItemDamage() == PartEnum.INTERFACE.ordinal()) {
String[] tooltip = new String[] {
EnumChatFormatting.RED + "Impact authors do not recommend using this device.",
EnumChatFormatting.RED + "This device is the source of ME network lags and problems.",
EnumChatFormatting.RED + "This item will not be deleted, use at your own risk.",
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.0"),
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.1"),
EnumChatFormatting.RED + translateToLocal("extracells.tooltip.fluidface.2"),
};
Collections.addAll(l, tooltip);
}
Expand Down

0 comments on commit 4d1407f

Please sign in to comment.