Project Zomboid

Project Zomboid

Tread's Fuel Types Framework [41.65+]
 This topic has been pinned, so it's probably important
Trealak  [developer] 25 Feb, 2022 @ 1:50pm
Translation help
Any soul willing to contribute and add translation to their language, can do so by posting this code and swapping parts in quotes (" ") by translated text in language of choice.

I will take a look here from time to time and try to update mod with added translations.

Obviously it would be great if you first familiarize yourself with the mod and know the context in which those texts are displayed.

Please keep "%1" as it is (regarding the lines it occurs in)

/** Parts written like this are comments - do not translate them, they are there as extra explanation for translators **/

I thank in advance everyone, who posts their translation!

IGUI_EN = { IGUI_VehiclePartFuelStorageTankRS = "Fuel Storage Tank", IGUI_VehiclePartEmptyStorageTankRS = "Fuel Storage Tank - Empty", IGUI_VehiclePartGasolineStorageTankRS = "Fuel Storage Tank - Gasoline", IGUI_VehiclePartDieselStorageTankRS = "Fuel Storage Tank - Diesel", IGUI_VehiclePartLPGStorageTankRS = "Propane Storage Tank", IGUI_Vehicle_ContainerCapacity_Gasoline = "Gasoline: %1", IGUI_Vehicle_ContainerCapacity_Diesel = "Diesel: %1", IGUI_Vehicle_ContainerCapacity_Empty = "Liquid fuel: %1", IGUI_Vehicle_ContainerCapacity_LPG = "Propane: %1", /** Fuelling etc. strings - "%s" gets replaced by fuel type name (e.g. "Diesel") in grammar form that suits this sentence **/ /** move %s to gramatically correct position **/ IGUI_RS_EmptyFuelTank = "Empty the Fuel Storage Tank", /**Fuel Storage Tank part **/ IGUI_RS_VehicleRefuelFromPump = "Refuel from %s Pump", /**Fuel Gas Tank part (one used for engine) **/ IGUI_RS_VehicleRefuelFromTruck = "Refuel from %s Storage Tank", /**Fuel Gas Tank part (one used for engine) **/ IGUI_RS_StorageRefuelFromPump = "Pump from %s Pump into Storage Tank", /**Fuel Storage Tank part **/ IGUI_RS_StorageRefuelFromTruck = "Pump %s from other Storage Tank", /**Fuel Storage Tank part **/ IGUI_RS_VehicleAddTo = "Add %s to vehicle", /**Fuel Gas Tank part (one used for engine) **/ IGUI_RS_VehicleSiphonFrom = "Siphon %s from vehicle", /**Fuel Gas Tank part (one used for engine) **/ IGUI_RS_StorageAddTo = "Add %s into Storage Tank", /**Fuel Storage Tank part **/ IGUI_RS_StorageSiphonFrom = "Take %s from Storage Tank", /**Fuel Storage Tank part **/ IGUI_RS_ObjectAddTo = "Pour %s in", /** World Objects **/ IGUI_RS_ObjectSiphonFrom = "Take %s", /** World Objects **/ IGUI_RS_PumpSiphonFrom = "Take %s from pump", /** World Objects **/ IGUI_RS_ObjectPumpFrom = "Pump %s from ", /** World Objects **/ IGUI_RS_ObjectPumpTo = "Pump %s to ", /** World Objects **/ /** Below are fuel names for %s values in strings above - match gramatical form with sentences above **/ IGUI_RSFuelType_Gasoline = "Gasoline", IGUI_RSFuelType_Diesel = "Diesel", IGUI_RSFuelType_LPG = "Propane", /** Below are fuel names (their basic grammar form) **/ IGUI_RSFuelType2_Gasoline = "Gasoline", IGUI_RSFuelType2_Diesel = "Diesel", IGUI_RSFuelType2_LPG = "Propane", IGUI_RSFuelType2_Empty = "Fuel", /** General word for fuel - not specifying type **/ /*******************************************************************************************************************/ IGUI_PlayerText_NoWayToFuelTankInlet = "I can't find a way to the storage tank inlet of this car." IGUI_RS_Source = "Source: ", /** From FuelAPI **/ IGUI_BarrelHasFuel = "Has fuel inside.", }

ItemName_EN = { /** Storage Tanks **/ ItemName_Base.500FuelTankRS1 = "Fuel Storage Tank", ItemName_Base.500FuelTankRS2 = "Fuel Storage Tank", ItemName_Base.500FuelTankRS3 = "Fuel Storage Tank", ItemName_Base.1000FuelTankRS1 = "Fuel Storage Tank", ItemName_Base.1000FuelTankRS2 = "Fuel Storage Tank", ItemName_Base.1000FuelTankRS3 = "Fuel Storage Tank", /** Gas Tanks (Propane/LPG/Autogas - use name as popular in your language) **/ ItemName_Base.SmallLPGTankRS1 = "Small Propane Tank", ItemName_Base.SmallLPGTankRS2 = "Small Propane Tank", ItemName_Base.SmallLPGTankRS3 = "Small Propane Tank", ItemName_Base.NormalLPGTankRS1 = "Standard Propane Tank", ItemName_Base.NormalLPGTankRS2 = "Standard Propane Tank", ItemName_Base.NormalLPGTankRS3 = "Standard Propane Tank", ItemName_Base.BigLPGTankRS1 = "Big Propane Tank", ItemName_Base.BigLPGTankRS2 = "Big Propane Tank", ItemName_Base.BigLPGTankRS3 = "Big Propane Tank", /** Fuel items **/ ItemName_FuelAPI.DieselCanFull = "Diesel Can", ItemName_FuelAPI.EmptyDieselCan = "Empty Diesel Can", ItemName_FuelAPI.LargePetrolCanFullwDiesel = "Large Gas Can with Diesel", ItemName_FuelAPI.PetrolCanFullwDiesel = "Gas Can with Diesel", ItemName_FuelAPI.DieselCanFullwPetrol = "Diesel Can with Gasoline", ItemName_FuelAPI.LargeDieselCan = "Empty Large Diesel Can", ItemName_FuelAPI.LargeDieselCanFull = "Large Diesel Can", ItemName_FuelAPI.LargeDieselCanFullwPetrol = "Large Diesel Can with Gasoline", ItemName_WaterDispenser.WaterJugDieselFull = "Water Jug with Diesel", )

Please keep \n in the code below. It forces game to make a new line in the text. No spaces are required after \n (think about it like Enter in text editor).
Sandbox_EN = { Sandbox_RSFuelTypesAPI = "Tread's Fuel Types Framework", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap = "Fuel Types used by vehicles", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_tooltip = "Choose how fuel type gets assigned to vehicles.\n(List available in Steam Workshop discussion)\n\nOptions:\n1) Type + List: Heavy Duty - Diesel, Sport - Gasoline, Regular - Gasoline. Predefined list forces some car models into specific fuel type.\n2) Type: Heavy Duty - Diesel, Sport - Gasoline, Regular - Gasoline.\n3) List: List forces some vehicles into specific fuel types. Vehicles not on the list still use Gasoline only.\n4) Vanilla: Gasoline only. EXCEPTION: If vehicle mod forces vehicle to use different fuel type it will do so.", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option1 = "Type + List" Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option2 = "Type" Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option3 = "List" Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option4 = "Vanilla" Sandbox_RSFuelTypesAPI_PropaneOnGasStations = "Is propane available on gas station pumps ?", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_tooltip = "Choose whether gas station pumps can dispense Propane (LPG, Autogas).", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option1 = "Available", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option2 = "Not available", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling = "Propane Tank as Gas Can ?", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_tooltip = "Choose whether Propane Tank (Item) can be used to fuel/siphon LPG vehicles. Additionally it allows filling LPG Storage Tanks from Propane Tank (Item).", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option1 = "Not allowed", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option2 = "Allowed", }
Tooltip_EN = { Tooltip_outoffuel = "Out of fuel", /*** Use general word for fuel ***/ }
Last edited by Trealak; 27 Feb, 2022 @ 2:28am
< >
Showing 1-9 of 9 comments
HellRider42Rus 26 Feb, 2022 @ 11:36pm 
IGUI_EN = {

IGUI_VehiclePartFuelStorageTankRS = "Топливный бак",
IGUI_VehiclePartEmptyStorageTankRS = "Топливный бак - Пустой",
IGUI_VehiclePartGasolineStorageTankRS = "Топливный бак - Бензин",
IGUI_VehiclePartDieselStorageTankRS = "Топливный бак - Дизель",
IGUI_VehiclePartLPGStorageTankRS = "Пропановый бак",
IGUI_Vehicle_ContainerCapacity_Gasoline = "Бензин: %1",
IGUI_Vehicle_ContainerCapacity_Diesel = "Дизель: %1",
IGUI_Vehicle_ContainerCapacity_Empty = "Жидкое топливо: %1",
IGUI_Vehicle_ContainerCapacity_LPG = "Пропан: %1",

/** Fuelling etc. strings - "%s" gets replaced by fuel type name (e.g. "Diesel") in grammar form that suits this sentence **/
/** move %s to gramatically correct position **/

IGUI_RS_EmptyFuelTank = "Опустошить топливный бак", /**Fuel Storage Tank part **/
IGUI_RS_VehicleRefuelFromPump = "Заправить из %s колонки", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_VehicleRefuelFromTruck = "Заправить из %s топливного бака", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_StorageRefuelFromPump = "Накачать из %s насоса в топливный бак", /**Fuel Storage Tank part **/
IGUI_RS_StorageRefuelFromTruck = "Накачать %s из другого топливного бака", /**Fuel Storage Tank part **/
IGUI_RS_VehicleAddTo = "Добавить %s к транспорту", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_VehicleSiphonFrom = "Откачать %s из транспорта", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_StorageAddTo = "Добавить %s из топливного бака", /**Fuel Storage Tank part **/
IGUI_RS_StorageSiphonFrom = "Взять %s из топливного бака", /**Fuel Storage Tank part **/
IGUI_RS_ObjectAddTo = "Для %s в", /** World Objects **/
IGUI_RS_ObjectSiphonFrom = "Взять %s", /** World Objects **/
IGUI_RS_PumpSiphonFrom = "Взять %s из насоса", /** World Objects **/
IGUI_RS_ObjectPumpFrom = "Накачать %s из ", /** World Objects **/
IGUI_RS_ObjectPumpTo = "Перекачать %s в ", /** World Objects **/

/** Below are fuel names for %s values in strings above - match gramatical form with sentences above **/
IGUI_RSFuelType_Gasoline = "Бензин",
IGUI_RSFuelType_Diesel = "Дизель",
IGUI_RSFuelType_LPG = "Пропан",

/** Below are fuel names (their basic grammar form) **/
IGUI_RSFuelType2_Gasoline = "Бензин",
IGUI_RSFuelType2_Diesel = "Дизель",
IGUI_RSFuelType2_LPG = "Пропан",
IGUI_RSFuelType2_Empty = "Топливо", /** General word for fuel - not specifying type **/

/*******************************************************************************************************************/

IGUI_PlayerText_NoWayToFuelTankInlet = "Не могу найти путь к горловине топливного бака у этого трансорта."
IGUI_RS_Source = "Источник: ",

/** From FuelAPI **/
IGUI_BarrelHasFuel = "Внутри есть топливо.",

}
HellRider42Rus 26 Feb, 2022 @ 11:36pm 
ItemName_EN = {
/** Storage Tanks **/
ItemName_Base.500FuelTankRS1 = "Топливный бак",
ItemName_Base.500FuelTankRS2 = "Топливный бак",
ItemName_Base.500FuelTankRS3 = "Топливный бак",
ItemName_Base.1000FuelTankRS1 = "Топливный бак",
ItemName_Base.1000FuelTankRS2 = "Топливный бак",
ItemName_Base.1000FuelTankRS3 = "Топливный бак",

/** Gas Tanks (Propane/LPG/Autogas - use name as popular in your language) **/
ItemName_Base.SmallLPGTankRS1 = "Маленький пропановый балон",
ItemName_Base.SmallLPGTankRS2 = "Маленький пропановый балон",
ItemName_Base.SmallLPGTankRS3 = "Маленький пропановый балон",
ItemName_Base.NormalLPGTankRS1 = "Пропановый балон",
ItemName_Base.NormalLPGTankRS2 = "Пропановый балон",
ItemName_Base.NormalLPGTankRS3 = "Пропановый балон",
ItemName_Base.BigLPGTankRS1 = "Большой пропановый балон",
ItemName_Base.BigLPGTankRS2 = "Большой пропановый балон",
ItemName_Base.BigLPGTankRS3 = "Большой пропановый балон",

/** Fuel items **/
ItemName_FuelAPI.DieselCanFull = "Дизельная канистра",
ItemName_FuelAPI.EmptyDieselCan = "Пустая дизельная канистра",
ItemName_FuelAPI.LargePetrolCanFullwDiesel = "Большая бензиновая канистра с дизелем",
ItemName_FuelAPI.PetrolCanFullwDiesel = "Бензиновая канистра с дизелем",
ItemName_FuelAPI.DieselCanFullwPetrol = "Дизельная канистра с бензином",
ItemName_FuelAPI.LargeDieselCan = "Пустая большая дизельная канистра",
ItemName_FuelAPI.LargeDieselCanFull = "Большая дизельная канистра",
ItemName_FuelAPI.LargeDieselCanFullwPetrol = "Большая дизельная канистра с бензином",
ItemName_WaterDispenser.WaterJugDieselFull = "Кувшин с дизелем",
)
HellRider42Rus 26 Feb, 2022 @ 11:37pm 
Sandbox_EN = {
Sandbox_RSFuelTypesAPI = "Tread's Fuel Types Framework",

Sandbox_RSFuelTypesAPI_CarFuelTypesSwap = "Тип топлива используемый в транспорте",
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_tooltip = "Выберите какой тип топлива будет присвоен транспорту".\n(List available in Steam Workshop discussion)\n\nOptions:\n1) Type + List: Heavy Duty - Diesel, Sport - Gasoline, Regular - Gasoline. Predefined list forces some car models into specific fuel type.\n2) Type: Тяжелый - Дизель, Спорт - Бензин, Обычный - Бензин.\n3) List: List forces some vehicles into specific fuel types. Vehicles not on the list still use Gasoline only.\n4) В оригинале:Только бензин. ИСКЛЮЧЕНИЕ: Транспорт из модификаций будет использовать свой тип топлива,если оно указано.",
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option1 = "Тип + Список"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option2 = "Тип"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option3 = "Список"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option4 = "Оригинал"

Sandbox_RSFuelTypesAPI_PropaneOnGasStations = "Будет ли доступен пропан на заправках?",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_tooltip = "Выберите, могут ли колонки АЗС раздавать пропан (сжиженный газ, автогаз).",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option1 = "Могут",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option2 = "Не могут",

Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling = "Использовать пропановые баллоны в качестве газовых баллонов?",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_tooltip = "Выберите, можно ли использовать баллон с пропаном (деталь) для заправки/ перекачки автомобилей на сжиженном газе. Дополнительно это позволяет заполнять резервуары для хранения сжиженного газа из баллона с пропаном (Деталь).",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option1 = "Не использовать",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option2 = "Использовать",

}
Trealak  [developer] 27 Feb, 2022 @ 2:19am 
Great! Thank you very much for translation. I will add it in next update!
HellRider42Rus 3 Mar, 2022 @ 7:25am 
@Trealak Greetings.I looked at my translation directly in the game.I found a few flaws in the translation, I will provide a new version of the translation in a couple of days
Trealak  [developer] 3 Mar, 2022 @ 9:57am 
Cool, I will make sure to place it in the first possible update. Thanks for your work!
0xM4RC3L 3 Mar, 2022 @ 11:41am 
German Translation :)

IGUI_DE = {

IGUI_VehiclePartFuelStorageTankRS = "Kraftstofftank",
IGUI_VehiclePartEmptyStorageTankRS = "Kraftstofftank - Leer",
IGUI_VehiclePartGasolineStorageTankRS = "Kraftstofftank - Benzin",
IGUI_VehiclePartDieselStorageTankRS = "Kraftstofftank - Diesel",
IGUI_VehiclePartLPGStorageTankRS = "Autogastank",
IGUI_Vehicle_ContainerCapacity_Gasoline = "Benzin: %1",
IGUI_Vehicle_ContainerCapacity_Diesel = "Diesel: %1",
IGUI_Vehicle_ContainerCapacity_Empty = "Flüssiger Kraftstoff: %1",
IGUI_Vehicle_ContainerCapacity_LPG = "Autogas: %1",

/** Fuelling etc. strings - "%s" gets replaced by fuel type name (e.g. "Diesel") in grammar form that suits this sentence **/
/** move %s to gramatically correct position **/

IGUI_RS_EmptyFuelTank = "Kraftstofftank leeren", /**Fuel Storage Tank part **/
IGUI_RS_VehicleRefuelFromPump = "Tanke von %s-Zapfsäule", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_VehicleRefuelFromTruck = "Tanke von %s-Kraftstofftank", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_StorageRefuelFromPump = "Pumpe von %s-Zapfsäule in Kraftstofftank", /**Fuel Storage Tank part **/
IGUI_RS_StorageRefuelFromTruck = "Pumpe %s von anderem Kraftstofftank", /**Fuel Storage Tank part **/
IGUI_RS_VehicleAddTo = "Fülle %s in das Fahrzeug", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_VehicleSiphonFrom = "%s von Fahrzeug absaugen", /**Fuel Gas Tank part (one used for engine) **/
IGUI_RS_StorageAddTo = "Fülle %s in Kraftstofftank", /**Fuel Storage Tank part **/
IGUI_RS_StorageSiphonFrom = "%s vom Kraftstofftank nehmen", /**Fuel Storage Tank part **/
IGUI_RS_ObjectAddTo = "Fülle %s in", /** World Objects **/
IGUI_RS_ObjectSiphonFrom = "Nehme %s", /** World Objects **/
IGUI_RS_PumpSiphonFrom = "Nehme %s von Zapfsäule", /** World Objects **/
IGUI_RS_ObjectPumpFrom = "Pumpe %s von ", /** World Objects **/
IGUI_RS_ObjectPumpTo = "Pumpe %s zu ", /** World Objects **/

/** Below are fuel names for %s values in strings above - match gramatical form with sentences above **/
IGUI_RSFuelType_Gasoline = "Benzin",
IGUI_RSFuelType_Diesel = "Diesel",
IGUI_RSFuelType_LPG = "Autogas",

/** Below are fuel names (their basic grammar form) **/
IGUI_RSFuelType2_Gasoline = "Benzin",
IGUI_RSFuelType2_Diesel = "Diesel",
IGUI_RSFuelType2_LPG = "Autogas",
IGUI_RSFuelType2_Empty = "Kraftstoff", /** General word for fuel - not specifying type **/

/*******************************************************************************************************************/

IGUI_PlayerText_NoWayToFuelTankInlet = "Ich finde keinen Weg zum Tankdeckel des Fahrzeuges."
IGUI_RS_Source = "Quelle: ",

/** From FuelAPI **/
IGUI_BarrelHasFuel = "Enthällt Kraftstoff.",

}


ItemName_DE = {
/** Storage Tanks **/
ItemName_Base.500FuelTankRS1 = "Kraftstofftank",
ItemName_Base.500FuelTankRS2 = "Kraftstofftank",
ItemName_Base.500FuelTankRS3 = "Kraftstofftank",
ItemName_Base.1000FuelTankRS1 = "Kraftstofftank",
ItemName_Base.1000FuelTankRS2 = "Kraftstofftank",
ItemName_Base.1000FuelTankRS3 = "Kraftstofftank",

/** Gas Tanks (Propane/LPG/Autogas - use name as popular in your language) **/
ItemName_Base.SmallLPGTankRS1 = "Kleiner Autogastank",
ItemName_Base.SmallLPGTankRS2 = "Kleiner Autogastank",
ItemName_Base.SmallLPGTankRS3 = "Kleiner Autogastank",
ItemName_Base.NormalLPGTankRS1 = "Standard Autogastank",
ItemName_Base.NormalLPGTankRS2 = "Standard Autogastank",
ItemName_Base.NormalLPGTankRS3 = "Standard Autogastank",
ItemName_Base.BigLPGTankRS1 = "Großer Autogastank",
ItemName_Base.BigLPGTankRS2 = "Großer Autogastank",
ItemName_Base.BigLPGTankRS3 = "Großer Autogastank",

/** Fuel items **/
ItemName_FuelAPI.DieselCanFull = "Diesel Kanister",
ItemName_FuelAPI.EmptyDieselCan = "Leerer Diesel Kanister",
ItemName_FuelAPI.LargePetrolCanFullwDiesel = "Großer Benzin Kanister mit Diesel",
ItemName_FuelAPI.PetrolCanFullwDiesel = "Benzin Kanister mit Diesel",
ItemName_FuelAPI.DieselCanFullwPetrol = "Diesel Kanister mit Benzin",
ItemName_FuelAPI.LargeDieselCan = "Leerer großer Diesel Kanister",
ItemName_FuelAPI.LargeDieselCanFull = "Großer Diesel Kanister",
ItemName_FuelAPI.LargeDieselCanFullwPetrol = "Großer Diesel Kanister mit Benzin",
ItemName_WaterDispenser.WaterJugDieselFull = "Wassergallone mit Diesel",
)


Sandbox_DE = {
Sandbox_RSFuelTypesAPI = "Tread's Fuel Types Framework",

Sandbox_RSFuelTypesAPI_CarFuelTypesSwap = "Kraftstoffarten nach Fahrzeuge",
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_tooltip = "Wähle wie die Kraftstoffart für Fahrzeuge festgelegt werden.\n(Liste verfügbar in der Steam Workshop Diskussion)\n\nOptionen:\n1) Typ + Liste: Schwerlast - Diesel, Sport - Benzin, Normal - Benzin. Vordefinierte Liste zwingt manche Fahrzeuge zu speziellen Kraftstoff.\n2) Typ: Schwerlast - Diesel, Sport - Benzin, Normal - Benzin.\n3) Liste: Liste zwingt manche Fahrzeuge zu speziellen Kraftstoff. Fahrzeuge welche nicht auf der Liste sind, benutzen nur Benzin.\n4) Vanilla: Nur Benzin. AUSNAHME: Wenn Fahrzeug-Mod eine spezielle Kraftstoffart festlegt, wird diese verwendet.",
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option1 = "Typ + Liste"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option2 = "Typ"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option3 = "Liste"
Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option4 = "Vanilla"

Sandbox_RSFuelTypesAPI_PropaneOnGasStations = "Ist Autogas verfügbar an Zapfsäulen",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_tooltip = "Entscheide ob Zapfsäulen Autogas ausgeben können (LPG, Propan).",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option1 = "Verfügbar",
Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option2 = "Nicht verfügbar",

Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling = "Gasflasche als Kanister?",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_tooltip = "Entscheide ob Propangasflaschen (Item) zum befüllen / absaugen von Autogas-Fahrzeugen benutzt werden können. Zusätzlich erlaubt es die Befüllung von Autogastanks mit Propangasflaschen (Item).",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option1 = "Nicht erlaubt",
Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option2 = "Erlaubt",

}


Tooltip_DE = {
Tooltip_outoffuel = "Kraftstoff leer", /*** Use general word for fuel ***/

}
Last edited by 0xM4RC3L; 3 Mar, 2022 @ 11:42am
Trealak  [developer] 6 Mar, 2022 @ 5:09am 
@0xM4RC3L
Thank you very much for the translation! I included it in latest update.
Troggian 2 Nov, 2024 @ 4:43pm 
Require ANSI Decode for PTBR.

IG_UI_PTBR.txt
IGUI_PTBR = { IGUI_VehiclePartFuelStorageTankRS = "Tanque de Armazenamento Combustível", IGUI_VehiclePartEmptyStorageTankRS = "Tanque de Armazenamento Vazio", IGUI_VehiclePartGasolineStorageTankRS = "Tanque de Armazenamento Gasolina", IGUI_VehiclePartDieselStorageTankRS = "Tanque de Armazenamento Diesel", IGUI_VehiclePartLPGStorageTankRS = "Tanque de Armazenamento Propano", IGUI_Vehicle_ContainerCapacity_Gasoline = "Gasolina: %1", IGUI_Vehicle_ContainerCapacity_Diesel = "Diesel: %1", IGUI_Vehicle_ContainerCapacity_Empty = "Combustível líquido: %1", IGUI_Vehicle_ContainerCapacity_LPG = "Propano: %1", IGUI_RS_EmptyFuelTank = "Esvaziar o tanque de armazenamento de combustível", /**Parte do tanque de armazenamento de combustível **/ IGUI_RS_VehicleRefuelFromPump = "Abastecer da Bomba %s", /**Parte do tanque de gás (usado para motor) **/ IGUI_RS_VehicleRefuelFromTruck = "Abastecer do tanque de armazenamento %s", /**Parte do tanque de gás (usado para motor) **/ IGUI_RS_StorageRefuelFromPump = "Bombear da Bomba %s para o tanque de armazenamento", /**Parte do tanque de armazenamento de combustível **/ IGUI_RS_StorageRefuelFromTruck = "Bombear %s de outro tanque de armazenamento", /**Parte do tanque de armazenamento de combustível **/ IGUI_RS_VehicleAddTo = "Adicionar %s ao veículo", /**Parte do tanque de gás (usado para motor) **/ IGUI_RS_VehicleSiphonFrom = "Retirar %s do veículo", /**Parte do tanque de gás (usado para motor) **/ IGUI_RS_StorageAddTo = "Adicionar %s ao tanque de armazenamento", /**Parte do tanque de armazenamento de combustível **/ IGUI_RS_StorageSiphonFrom = "Retirar %s do tanque de armazenamento", /**Parte do tanque de armazenamento de combustível **/ IGUI_RS_ObjectAddTo = "Despejar %s em", /**Objetos do mundo **/ IGUI_RS_ObjectSiphonFrom = "Retirar %s", /**Objetos do mundo **/ IGUI_RS_PumpSiphonFrom = "Retirar %s da bomba", /**Objetos do mundo **/ IGUI_RS_ObjectPumpFrom = "Bombear %s de ", /**Objetos do mundo **/ IGUI_RS_ObjectPumpTo = "Bombear %s para ", /**Objetos do mundo **/ IGUI_RSFuelType_Gasoline = "Gasolina", IGUI_RSFuelType_Diesel = "Diesel", IGUI_RSFuelType_LPG = "Propano", IGUI_RSFuelType2_Gasoline = "Gasolina", IGUI_RSFuelType2_Diesel = "Diesel", IGUI_RSFuelType2_LPG = "Propano", IGUI_RSFuelType2_Empty = "Combustível", /** Palavra geral para combustível - sem especificar o tipo **/ /*******************************************************************************************************************/ IGUI_PlayerText_NoWayToFuelTankInlet = "Não consigo encontrar a tampa do Tanque!.", IGUI_RS_Source = "Fonte: ", /** From FuelAPI **/ IGUI_BarrelHasFuel = "Tem Combústivel dentro.", }

ItemName_PTBR.txt
ItemName_PTBR = { /** Storage Tanks **/ ItemName_Base.500FuelTankRS1 = "Tanque de Armazenamento", ItemName_Base.500FuelTankRS2 = "Tanque de Armazenamento", ItemName_Base.500FuelTankRS3 = "Tanque de Armazenamento", ItemName_Base.1000FuelTankRS1 = "Tanque de Armazenamento", ItemName_Base.1000FuelTankRS2 = "Tanque de Armazenamento", ItemName_Base.1000FuelTankRS3 = "Tanque de Armazenamento", /** Gas Tanks (Propane/LPG/Autogas - use name as popular in your language) **/ ItemName_Base.SmallLPGTankRS1 = "Tanque de Propano Pequeno", ItemName_Base.SmallLPGTankRS2 = "Tanque de Propano Pequeno", ItemName_Base.SmallLPGTankRS3 = "Tanque de Propano Pequeno", ItemName_Base.NormalLPGTankRS1 = "Tanque de Propano Padrão", ItemName_Base.NormalLPGTankRS2 = "Tanque de Propano Padrão", ItemName_Base.NormalLPGTankRS3 = "Tanque de Propano Padrão", ItemName_Base.BigLPGTankRS1 = "Tanque de Propano Grande", ItemName_Base.BigLPGTankRS2 = "Tanque de Propano Grande", ItemName_Base.BigLPGTankRS3 = "Tanque de Propano Grande", /** Fuel items **/ ItemName_FuelAPI.DieselCanFull = "Lata de Diesel", ItemName_FuelAPI.EmptyDieselCan = "Lata de Diesel Vazia", ItemName_FuelAPI.LargePetrolCanFullwDiesel = "Lata Grande de Gasolina com Diesel", ItemName_FuelAPI.PetrolCanFullwDiesel = "Lata de Gasolina com Diesel", ItemName_FuelAPI.DieselCanFullwPetrol = "Lata de Diesel com Gasolina", ItemName_FuelAPI.LargeDieselCan = "Lata Grande de Diesel Vazia", ItemName_FuelAPI.LargeDieselCanFull = "Lata Grande de Diesel", ItemName_FuelAPI.LargeDieselCanFullwPetrol = "Lata Grande de Diesel com Gasolina", ItemName_WaterDispenser.WaterJugDieselFull = "Garrafa de Água com Diesel", )

Sandbox_PTBR.txt
Sandbox_PTBR = { Sandbox_RSFuelTypesAPI = "Combustíveis (Tread's Fuel)", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap = "Tipos de Combustível usados por veículos", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_tooltip = "Escolha como o tipo de combustível é atribuído aos veículos.\n(Lista disponível na discussão do Steam Workshop)\n\nOpções:\n1) Tipo + Lista: Pesado - Diesel, Esportivo - Gasolina, Regular - Gasolina. A lista predefinida força alguns modelos de carro a usarem um tipo de combustível específico.\n2) Tipo: Pesado - Diesel, Esportivo - Gasolina, Regular - Gasolina.\n3) Lista: A lista força alguns veículos a usarem tipos de combustível específicos. Veículos que não estão na lista ainda usam somente Gasolina.\n4) Vanilla: Somente Gasolina. EXCEÇÃO: Se o mod do veículo forçar o veículo a usar um tipo de combustível diferente, ele o fará.", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option1 = "Tipo + Lista", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option2 = "Tipo", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option3 = "Lista", Sandbox_RSFuelTypesAPI_CarFuelTypesSwap_option4 = "Vanilla", Sandbox_RSFuelTypesAPI_PropaneOnGasStations = "O propano está disponível nas bombas de gasolina?", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_tooltip = "Escolha se as bombas de gasolina podem dispensar Propano (LPG, Autogas).", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option1 = "Disponível", Sandbox_RSFuelTypesAPI_PropaneOnGasStations_option2 = "Não disponível", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling = "Tanque de Propano como Lata de Combustível?", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_tooltip = "Escolha se o Tanque de Propano (Item) pode ser usado para abastecer/sifonar veículos LPG. Além disso, permite encher Tanques de Armazenamento de LPG a partir do Tanque de Propano (Item).", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option1 = "Não permitido", Sandbox_RSFuelTypesAPI_PropaneTankItemFuelling_option2 = "Permitido", }

Tooltip_PTBR.txt
Tooltip_PTBR = { Tooltip_outoffuel = "Sem Combustivel", }
< >
Showing 1-9 of 9 comments
Per page: 1530 50