Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix solar panel description typo #636

Open
wants to merge 2 commits into
base: 1.20.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@
"info.ad_astra.rocket": "A rocket used for interplanetary travel. Must be placed on a launch pad. Shift-right-click to access its fuel and inventory.",
"info.ad_astra.rover": "An all-terrain vehicle. Shift-right-click to access its inventory. Click on the screen to access the rover's radio. This radio can play real radio stations.",
"info.ad_astra.sliding_door": "A large 3x3 door. Shift-right-click with a wrench to lock it. Locked doors can only be opened with redstone.",
"info.ad_astra.solar_panel": "Generates energy from the sun during the dat. Note that the energy generated is dependent on the planet.",
"info.ad_astra.solar_panel": "Generates energy from the sun during the day. Note that the energy generated is dependent on the planet.",
"info.ad_astra.space_suit": "Supplies the wearer with oxygen and protects them from the extreme-cold of space.",
"info.ad_astra.ti_69": "Displays local oxygen, temperature, and gravity information.",
"info.ad_astra.vent": "Allows oxygen to flow through.",
Expand Down Expand Up @@ -825,4 +825,4 @@
"tooltip.ad_astra.space_station_land": "Land on space station in %s at [%s, %s]",
"tooltip.ad_astra.space_station_owner": "Owner: %s",
"tooltip.ad_astra.ticks_per_iteration": "Takes %s ticks per iteration"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ protected void addTranslations() {
add(ConstantComponents.NASA_WORKBENCH_INFO, "Used to craft rockets.");
add(ConstantComponents.FUEL_REFINERY_INFO, "Refines fuel from oil.");
add(ConstantComponents.OXYGEN_LOADER_INFO, "Converts water into oxygen. Use it to fill up space suits and gas tanks.");
add(ConstantComponents.SOLAR_PANEL_INFO, "Generates energy from the sun during the dat. Note that the energy generated is dependent on the planet.");
add(ConstantComponents.SOLAR_PANEL_INFO, "Generates energy from the sun during the day. Note that the energy generated is dependent on the planet.");
add(ConstantComponents.WATER_PUMP_INFO, "Pumps water. Ensure a water source is below the pump for it to function.");
add(ConstantComponents.OXYGEN_DISTRIBUTOR_INFO, "Distributes oxygen and regulates the temperature. Use it to create livable environments. Should be used in a completely sealed structure.");
add(ConstantComponents.GRAVITY_NORMALIZER_INFO, "Allows you to control gravity in the local area. Should be used in a completely sealed structure.");
Expand Down