mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2026-09-21 17:04:00 +00:00
@@ -3,6 +3,7 @@
|
||||
|
||||
local ExpUtil = require("modules/exp_util")
|
||||
local Async = require("modules/exp_util/async")
|
||||
local config_server_detail = require("modules.exp_legacy.config.server_detail") --- @dep config.server_detail
|
||||
|
||||
local floor = math.floor
|
||||
local random = math.random
|
||||
@@ -26,13 +27,13 @@ local afk_time_units = {
|
||||
return {
|
||||
--- @type table<string, LocalisedString | fun(player: LuaPlayer, is_command: boolean): LocalisedString>
|
||||
messages = { --- @setting messages will trigger when ever the word is said
|
||||
["discord"] = { "info.discord" },
|
||||
["expgaming"] = { "info.website" },
|
||||
["website"] = { "info.website" },
|
||||
["status"] = { "info.status" },
|
||||
["github"] = { "info.github" },
|
||||
["patreon"] = { "info.patreon" },
|
||||
["donate"] = { "info.patreon" },
|
||||
["discord"] = { "info.discord", config_server_detail["discord"] },
|
||||
["expgaming"] = { "info.website", config_server_detail["website"] },
|
||||
["website"] = { "info.website", config_server_detail["website"] },
|
||||
["status"] = { "info.status", config_server_detail["status"] },
|
||||
["github"] = { "info.github", config_server_detail["github"] },
|
||||
["patreon"] = { "info.patreon", config_server_detail["patreon"] },
|
||||
["donate"] = { "info.patreon", config_server_detail["patreon"] },
|
||||
["command"] = { "info.custom-commands" },
|
||||
["commands"] = { "info.custom-commands" },
|
||||
["softmod"] = { "info.softmod" },
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
--- Config file for the compliatrons including where they spawn and what messages they show
|
||||
-- @config Compilatron
|
||||
local config_server_detail = require("modules.exp_legacy.config.server_detail") --- @dep config.server_detail
|
||||
|
||||
return {
|
||||
message_cycle = 60 * 15, --- @setting message_cycle 15 seconds default, how often (in ticks) the messages will cycle
|
||||
@@ -9,16 +10,16 @@ return {
|
||||
spawn_surface = "nauvis",
|
||||
entity_name = "small-biter",
|
||||
messages = {
|
||||
{ "info.website" },
|
||||
{ "info.website", config_server_detail["website"] },
|
||||
{ "info.read-readme" },
|
||||
{ "info.discord" },
|
||||
{ "info.discord", config_server_detail["discord"] },
|
||||
{ "info.softmod" },
|
||||
{ "info.redmew" },
|
||||
{ "info.custom-commands" },
|
||||
{ "info.status" },
|
||||
{ "info.status", config_server_detail["status"] },
|
||||
{ "info.lhd" },
|
||||
{ "info.github" },
|
||||
{ "info.patreon" },
|
||||
{ "info.github", config_server_detail["github"] },
|
||||
{ "info.patreon", config_server_detail["patreon"] },
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- Config file for the server detail
|
||||
-- @config Server
|
||||
|
||||
return {
|
||||
community_name = "Explosive Gaming",
|
||||
discord = "https://discord.explosivegaming.nl",
|
||||
website = "https://www.explosivegaming.nl",
|
||||
status = "https://status.explosivegaming.nl",
|
||||
github = "https://github.com/explosivegaming/ExpCluster",
|
||||
patreon = "https://www.patreon.com/ExpGaming"
|
||||
}
|
||||
@@ -0,0 +1,256 @@
|
||||
# addons
|
||||
[info]
|
||||
players-online=There are __1__ players online
|
||||
total-map-time=This map has been on for __1__
|
||||
discord=Join us on our discord at: __1__
|
||||
website=Please visit our website at: __1__
|
||||
status=Want to check if out servers are down? Visit: __1__
|
||||
github=Want to help improve our server with some extra features? Help us at: __1__
|
||||
patreon=Consider supporting our server at: __1__
|
||||
custom-commands=We use custom commands, such as /tag and /me, use /chelp for more info.
|
||||
read-readme=Make sure you have read the information gui (It can be found through the info mark on the top left)
|
||||
softmod=We run a softmod on our servers. A softmod is a custom scenario that runs on this server, an example is the player list.
|
||||
redmew=We don't talk about redmew here; they beat us to 1000 members ;-;
|
||||
lhd=All trains must be LHD! This is a long standing rule on our servers, please respect this.
|
||||
|
||||
# data
|
||||
[join-message]
|
||||
description-add=Sets / Gets your custom join message.
|
||||
description-remove=Removes you custom join message.
|
||||
arg-message=Your custom join message.
|
||||
greet=[color=0,1,0] Welcome to __1__ community server! If you like the server join our discord: __2__ [/color]
|
||||
message-set=Your join message has been updated.
|
||||
message-get=Your join message is: __1__
|
||||
message-cleared=Your join message has been cleared.
|
||||
|
||||
[quickbar]
|
||||
saved=Your quickbar filters have been saved.
|
||||
|
||||
[exp-settings]
|
||||
Colour=Colour
|
||||
Colour-tooltip=Your player colour
|
||||
Colour-value-tooltip=Change by using /color
|
||||
JoinMessage=Join Message
|
||||
JoinMessage-tooltip=The message displayed when you join
|
||||
JoinMessage-value-tooltip=Change by using /join-message
|
||||
QuickbarFilters=Quickbar Filters
|
||||
QuickbarFilters-tooltip=The filters on your quickbar
|
||||
QuickbarFilters-value-tooltip=Change by using /save-quickbar
|
||||
UsesAlt=Alt View
|
||||
UsesAlt-tooltip=Whether you use alt view when you play
|
||||
UsesAlt-value-tooltip=Change by pressing __CONTROL__show-info__
|
||||
UsesServerUps=Server UPS
|
||||
UsesServerUps-tooltip=Whether the current server UPS is shown
|
||||
UsesServerUps-value-tooltip=Change by using /server-ups
|
||||
Tag=Player Tag
|
||||
Tag-tooltip=The tag shown after your name
|
||||
Tag-value-tooltip=Change by using /tag
|
||||
TagColor=Player Tag color
|
||||
TagColor-tooltip=The color of the tag shown after your name
|
||||
TagColor-value-tooltip=Change by using /tag-color
|
||||
Bonus=Player Bonus
|
||||
Bonus-tooltip=The bonus given to your character
|
||||
Bonus-value-tooltip=Change by using /bonus
|
||||
HasEnabledDecon=Quick Tree Decon
|
||||
ToolbarState=Toolbox
|
||||
ToolbarState-tooltip=The order and favourites in your toolbox
|
||||
ToolbarState-value-tooltip=This value is calculated automatically when you leave the game
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=Maps Played
|
||||
MapsPlayed-tooltip=The number of unique maps you have played on
|
||||
JoinCount=Join Count
|
||||
JoinCount-tooltip=The number of times you have joined our servers
|
||||
Playtime=Playtime
|
||||
Playtime-tooltip=The amount of time you have spent on our servers
|
||||
AfkTime=AFK Time
|
||||
AfkTime-tooltip=The amount of time you have been AFK on our servers
|
||||
ChatMessages=Messages
|
||||
ChatMessages-tooltip=The number of messages you have sent in chat
|
||||
CommandsUsed=Commands
|
||||
CommandsUsed-tooltip=The number of commands you have used
|
||||
RocketsLaunched=Rockets Launched
|
||||
RocketsLaunched-tooltip=The number of rockets launched while you were online
|
||||
ResearchCompleted=Research Completed
|
||||
ResearchCompleted-tooltip=The number of research projects completed while you were online
|
||||
MachinesBuilt=Machines Built
|
||||
MachinesBuilt-tooltip=The number of machines you have built
|
||||
MachinesRemoved=Machines Removed
|
||||
MachinesRemoved-tooltip=The number of machines you have removed
|
||||
TilesBuilt=Tiles Placed
|
||||
TilesBuilt-tooltip=The number of tiles you have placed
|
||||
TilesRemoved=Tiles Removed
|
||||
TilesRemoved-tooltip=The number of tiles you have removed
|
||||
TreesDestroyed=Trees Destroyed
|
||||
TreesDestroyed-tooltip=The number of trees you have destroyed
|
||||
OreMined=Ore Mined
|
||||
OreMined-tooltip=The amount of ore you have mined
|
||||
ItemsCrafted=Items Crafted
|
||||
ItemsCrafted-tooltip=The number of items you have crafted
|
||||
ItemsPickedUp=Items Picked Up
|
||||
ItemsPickedUp-tooltip=The number of items you have picked up
|
||||
Kills=Kills
|
||||
Kills-tooltip=The number of biters and biter bases you have squished
|
||||
Deaths=Deaths
|
||||
Deaths-tooltip=The number of times you have died
|
||||
DamageDealt=Damage Dealt
|
||||
DamageDealt-tooltip=The amount of damage you have dealt to other forces
|
||||
DistanceTravelled=Distance Travelled
|
||||
DistanceTravelled-tooltip=The total distance in tiles that you have travelled
|
||||
CapsulesUsed=Capsules Used
|
||||
CapsulesUsed-tooltip=The number of capsules you have used
|
||||
EntityRepaired=Machines Repaired
|
||||
EntityRepaired-tooltip=The number of machines which you have repaired
|
||||
DeconstructionPlannerUsed=Decon Planner Used
|
||||
DeconstructionPlannerUsed-tooltip=The number of times you have used the deconstruction planner
|
||||
MapTagsMade=Map Tags Created
|
||||
MapTagsMade-tooltip=The number of map tags you have created
|
||||
DamageDeathRatio=Damage Death Ratio
|
||||
DamageDeathRatio-tooltip=Damage over Death
|
||||
KillDeathRatio=Kill Death Ratio
|
||||
KillDeathRatio-tooltip=Kill over Death
|
||||
SessionTime=Session Time
|
||||
SessionTime-tooltip=Session Time
|
||||
BuildRatio=Build Ratio
|
||||
BuildRatio-tooltip=Build over Remove
|
||||
RocketPerHour=Rocket Per Hour
|
||||
RocketPerHour-tooltip=Rocket Launched Over Play Time in Hour
|
||||
TreeKillPerMinute=Tree Kill Per Minute
|
||||
TreeKillPerMinute-tooltip=Tree Destroyed Per Minute
|
||||
NetPlayTime=Net Play Time
|
||||
NetPlayTime-tooltip=Net Play Time
|
||||
AFKTimeRatio=AFK Time Ratio
|
||||
AFKTimeRatio-tooltip=AFK Time over Play Time
|
||||
Locale=Locale
|
||||
Locale-tooltip=The language of player interface
|
||||
|
||||
# expcore
|
||||
[expcore-data]
|
||||
description-preference=Allows you to set/get your data saving preference.
|
||||
description-data=Writes all your player data to a file on your computer.
|
||||
arg-option=One of "All", "Statistics", "Settings", "Required"
|
||||
set-preference=You data saving preference has been set to __1__. Existing data will not be effected until you rejoin.
|
||||
get-preference=You data saving preference is __1__. Use /set-preference to change this. Use /save-data to get a local copy of your data.
|
||||
get-data=Your player data has been writen to file, location: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=Your player data has failed to load. Any changes to your data will not be saved.
|
||||
data-restore=Your player data has been restored and changes will now save when you leave.
|
||||
preference=Saving Preference
|
||||
preference-tooltip=Which categories will be saved when you leave the game
|
||||
preference-value-tooltip=Change by using /set-preference
|
||||
preference-All=All data will be saved
|
||||
preference-Statistics=Only statistics, settings, and required data will be saved
|
||||
preference-Settings=Only settings and required data will be saved
|
||||
preference-Required=Only required data will be saved
|
||||
|
||||
# gui
|
||||
[player-list]
|
||||
main-tooltip=Player List
|
||||
open-action-bar=Options
|
||||
close-action-bar=Close Options
|
||||
reason-confirm=Confirm Reason
|
||||
reason-entry=Enter Reason
|
||||
goto-player=Goto player
|
||||
bring-player=Bring player
|
||||
report-player=Report player
|
||||
jail-player=Jail player
|
||||
kick-player=Kick player
|
||||
ban-player=Ban player
|
||||
afk-time=__1__% of total map time\nLast moved __2__ ago
|
||||
open-map=__1__ __2__\n__3__\nClick to open map
|
||||
|
||||
[warp-list]
|
||||
main-caption=Warp List [img=info]
|
||||
main-tooltip=Warp List
|
||||
sub-tooltip=Warps can only be used every __1__ seconds and when within __2__ tiles\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ This is your current warp point;
|
||||
sub-tooltip-connected= - __1__ You can travel to this warp point;
|
||||
sub-tooltip-different= - __1__ This warp is on a different network;
|
||||
sub-tooltip-cooldown= - __1__ You are currently on cooldown;
|
||||
sub-tooltip-not_available= - __1__ You are not in range of a warp point;
|
||||
sub-tooltip-bypass= - __1__ Your role allows you to travel here;
|
||||
too-close=Cannot create warp; too close to existing warp point: __1__
|
||||
too-close-to-water=Cannot create warp; too close to water, please move __1__ tiles away from the water body or landfill it
|
||||
too-close-to-entities=Cannot create warp; too close to other entities, please move __1__ tiles away from the entities or remove them
|
||||
last-edit=Last edited by __1__ at __2__\nClick to view on map
|
||||
add-tooltip=Add new warp
|
||||
confirm-tooltip=Save changes
|
||||
cancel-tooltip=Discard changes
|
||||
edit-tooltip=Currently being edited by: __1__
|
||||
edit-tooltip-none=Currently being edited by: Nobody
|
||||
remove-tooltip=Remove warp
|
||||
timer-tooltip=Please wait __1__ seconds before you can warp
|
||||
timer-tooltip-zero=After each warp you will need to wait __1__ seconds before you can warp again
|
||||
goto-tooltip=Go to x __1__ y __2__
|
||||
goto-bypass=Go to x __1__ y __2__, bypass mode
|
||||
goto-bypass-different-network=Go to x __1__ y __2__, bypass mode different network
|
||||
goto-same-warp=You are already on this warp
|
||||
goto-different-network=This warp is on a different network, use power poles to connect it
|
||||
goto-cooldown=You are on cooldown, wait for your cooldown to recharge
|
||||
goto-disabled=You are not on a warp point, walk to a warp point
|
||||
goto-edit=Edit warp icon
|
||||
|
||||
[bonus]
|
||||
description=Get / Set the amount of bonus you receive.
|
||||
arg-amount=Amount to set your bonus to, 0 will disable bonus.
|
||||
set=Your bonus has been set to __1__.
|
||||
get=Your bonus is __1__.
|
||||
perm=You dont have enough permission to set more than __1__.
|
||||
display-fmms=Mining
|
||||
display-fmms-tooltip=Force manual mining speed
|
||||
display-frs=Running
|
||||
display-frs-tooltip=Force running speed
|
||||
display-fcs=Crafting
|
||||
display-fcs-tooltip=Force crafting speed
|
||||
display-fisb=Inventory
|
||||
display-fisb-tooltip=Force inventory slots bonus
|
||||
display-fhb=Health
|
||||
display-fhb-tooltip=Force health bonus
|
||||
display-frdb=Reach
|
||||
display-frdb-tooltip=Force reach distance bonus
|
||||
display-fwrsm=Robot Speed
|
||||
display-fwrsm-tooltip=Force worker robots speed modifier
|
||||
display-fwrbm=Robot Battery
|
||||
display-fwrbm-tooltip=Force worker robots battery modifier
|
||||
display-fwrsb=Robot Storage
|
||||
display-fwrsb-tooltip=Force worker robots storage bonus
|
||||
display-ffrlm=Robot Lifetime
|
||||
display-ffrlm-tooltip=Force following robots lifetime modifier
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=vlayer
|
||||
description-pbr=Recharge Player Battery upto a portion with vlayer
|
||||
description-vi=Vlayer Info
|
||||
pbr-not-running=vlayer need to be running
|
||||
display-item-solar=[img=entity/solar-panel] Solar Panel
|
||||
display-item-accumulator=[img=entity/accumulator] Accumulator
|
||||
display-current-production=[virtual-signal=signal-P] Current Production
|
||||
display-sustained-production=[virtual-signal=signal-S] Sustained Production
|
||||
display-max-capacity=[virtual-signal=signal-C] Battery Capacity
|
||||
display-current-capacity=[virtual-signal=signal-E] Battery Charge
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] Remaining Surface
|
||||
display-item-solar-tooltip=The amount of Solar Panel
|
||||
display-item-accumulator-tooltip=The amount of Accumulator
|
||||
display-current-production-tooltip=Current Power Production
|
||||
display-sustained-production-tooltip=Sustained Power Production
|
||||
display-max-capacity-tooltip=Battery Max Capacity
|
||||
display-current-capacity-tooltip=Battery Current Charge
|
||||
display-remaining-surface-area-tooltip=Remaining Surface. Insert Landfill to increase
|
||||
steel-chest-detect=No steel chest detected
|
||||
steel-chest-empty=Chest is not emptied
|
||||
control-refresh=Refresh List
|
||||
control-see=See Interface
|
||||
control-build=Build Interface
|
||||
control-remove=Remove Interface
|
||||
result-build=built
|
||||
result-remove=removed
|
||||
result-interface-location=__1__ interface was located at __2__
|
||||
interface-result=__1__ __2__ __4__ interface at __3__
|
||||
result-unable=Unable to build __1__ interface, because of __2__
|
||||
result-multiple=Multiple steel chest detected
|
||||
result-limit=Max limit exceeded
|
||||
result-space=Not enough space
|
||||
control-type-energy=Energy
|
||||
control-type-circuit=Circuit
|
||||
control-type-storage-input=Storage Input
|
||||
control-type-storage-output=Storage Output
|
||||
power-on-space-research=You need to research [technology=__1__] at __2__ level for the space platform vlayer feature.
|
||||
@@ -1,20 +0,0 @@
|
||||
[links]
|
||||
discord=https://discord.explosivegaming.nl
|
||||
website=https://www.explosivegaming.nl
|
||||
status=https://status.explosivegaming.nl
|
||||
github=https://github.com/explosivegaming/ExpCluster
|
||||
patreon=https://www.patreon.com/ExpGaming
|
||||
|
||||
[info]
|
||||
players-online=There are __1__ players online
|
||||
total-map-time=This map has been on for __1__
|
||||
discord=Join us on our discord at: https://discord.explosivegaming.nl
|
||||
website=Please visit our website at: https://www.explosivegaming.nl
|
||||
status=Want to check if out servers are down? Visit: https://status.explosivegaming.nl
|
||||
github=Want to help improve our server with some extra features? Help us at: https://github.com/explosivegaming/ExpCluster
|
||||
patreon=Consider supporting our server at: https://www.patreon.com/ExpGaming
|
||||
custom-commands=We use custom commands, such as /tag and /me, use /chelp for more info.
|
||||
read-readme=Make sure you have read the information gui (It can be found through the info mark on the top left)
|
||||
softmod=We run a softmod on our servers. A softmod is a custom scenario that runs on this server, an example is the player list.
|
||||
redmew=We don't talk about redmew here; they beat us to 1000 members ;-;
|
||||
lhd=All trains must be LHD! This is a long standing rule on our servers, please respect this.
|
||||
@@ -1,109 +0,0 @@
|
||||
[join-message]
|
||||
description-add=Sets / Gets your custom join message.
|
||||
description-remove=Removes you custom join message.
|
||||
arg-message=Your custom join message.
|
||||
greet=[color=0,1,0] Welcome to explosive gaming community server! If you like the server join our discord: __1__ [/color]
|
||||
message-set=Your join message has been updated.
|
||||
message-get=Your join message is: __1__
|
||||
message-cleared=Your join message has been cleared.
|
||||
|
||||
[quickbar]
|
||||
saved=Your quickbar filters have been saved.
|
||||
|
||||
[exp-settings]
|
||||
Colour=Colour
|
||||
Colour-tooltip=Your player colour
|
||||
Colour-value-tooltip=Change by using /color
|
||||
JoinMessage=Join Message
|
||||
JoinMessage-tooltip=The message displayed when you join
|
||||
JoinMessage-value-tooltip=Change by using /join-message
|
||||
QuickbarFilters=Quickbar Filters
|
||||
QuickbarFilters-tooltip=The filters on your quickbar
|
||||
QuickbarFilters-value-tooltip=Change by using /save-quickbar
|
||||
UsesAlt=Alt View
|
||||
UsesAlt-tooltip=Whether you use alt view when you play
|
||||
UsesAlt-value-tooltip=Change by pressing __CONTROL__show-info__
|
||||
UsesServerUps=Server UPS
|
||||
UsesServerUps-tooltip=Whether the current server UPS is shown
|
||||
UsesServerUps-value-tooltip=Change by using /server-ups
|
||||
Tag=Player Tag
|
||||
Tag-tooltip=The tag shown after your name
|
||||
Tag-value-tooltip=Change by using /tag
|
||||
TagColor=Player Tag color
|
||||
TagColor-tooltip=The color of the tag shown after your name
|
||||
TagColor-value-tooltip=Change by using /tag-color
|
||||
Bonus=Player Bonus
|
||||
Bonus-tooltip=The bonus given to your character
|
||||
Bonus-value-tooltip=Change by using /bonus
|
||||
HasEnabledDecon=Quick Tree Decon
|
||||
ToolbarState=Toolbox
|
||||
ToolbarState-tooltip=The order and favourites in your toolbox
|
||||
ToolbarState-value-tooltip=This value is calculated automatically when you leave the game
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=Maps Played
|
||||
MapsPlayed-tooltip=The number of unique maps you have played on
|
||||
JoinCount=Join Count
|
||||
JoinCount-tooltip=The number of times you have joined our servers
|
||||
Playtime=Playtime
|
||||
Playtime-tooltip=The amount of time you have spent on our servers
|
||||
AfkTime=AFK Time
|
||||
AfkTime-tooltip=The amount of time you have been AFK on our servers
|
||||
ChatMessages=Messages
|
||||
ChatMessages-tooltip=The number of messages you have sent in chat
|
||||
CommandsUsed=Commands
|
||||
CommandsUsed-tooltip=The number of commands you have used
|
||||
RocketsLaunched=Rockets Launched
|
||||
RocketsLaunched-tooltip=The number of rockets launched while you were online
|
||||
ResearchCompleted=Research Completed
|
||||
ResearchCompleted-tooltip=The number of research projects completed while you were online
|
||||
MachinesBuilt=Machines Built
|
||||
MachinesBuilt-tooltip=The number of machines you have built
|
||||
MachinesRemoved=Machines Removed
|
||||
MachinesRemoved-tooltip=The number of machines you have removed
|
||||
TilesBuilt=Tiles Placed
|
||||
TilesBuilt-tooltip=The number of tiles you have placed
|
||||
TilesRemoved=Tiles Removed
|
||||
TilesRemoved-tooltip=The number of tiles you have removed
|
||||
TreesDestroyed=Trees Destroyed
|
||||
TreesDestroyed-tooltip=The number of trees you have destroyed
|
||||
OreMined=Ore Mined
|
||||
OreMined-tooltip=The amount of ore you have mined
|
||||
ItemsCrafted=Items Crafted
|
||||
ItemsCrafted-tooltip=The number of items you have crafted
|
||||
ItemsPickedUp=Items Picked Up
|
||||
ItemsPickedUp-tooltip=The number of items you have picked up
|
||||
Kills=Kills
|
||||
Kills-tooltip=The number of biters and biter bases you have squished
|
||||
Deaths=Deaths
|
||||
Deaths-tooltip=The number of times you have died
|
||||
DamageDealt=Damage Dealt
|
||||
DamageDealt-tooltip=The amount of damage you have dealt to other forces
|
||||
DistanceTravelled=Distance Travelled
|
||||
DistanceTravelled-tooltip=The total distance in tiles that you have travelled
|
||||
CapsulesUsed=Capsules Used
|
||||
CapsulesUsed-tooltip=The number of capsules you have used
|
||||
EntityRepaired=Machines Repaired
|
||||
EntityRepaired-tooltip=The number of machines which you have repaired
|
||||
DeconstructionPlannerUsed=Decon Planner Used
|
||||
DeconstructionPlannerUsed-tooltip=The number of times you have used the deconstruction planner
|
||||
MapTagsMade=Map Tags Created
|
||||
MapTagsMade-tooltip=The number of map tags you have created
|
||||
DamageDeathRatio=Damage Death Ratio
|
||||
DamageDeathRatio-tooltip=Damage over Death
|
||||
KillDeathRatio=Kill Death Ratio
|
||||
KillDeathRatio-tooltip=Kill over Death
|
||||
SessionTime=Session Time
|
||||
SessionTime-tooltip=Session Time
|
||||
BuildRatio=Build Ratio
|
||||
BuildRatio-tooltip=Build over Remove
|
||||
RocketPerHour=Rocket Per Hour
|
||||
RocketPerHour-tooltip=Rocket Launched Over Play Time in Hour
|
||||
TreeKillPerMinute=Tree Kill Per Minute
|
||||
TreeKillPerMinute-tooltip=Tree Destroyed Per Minute
|
||||
NetPlayTime=Net Play Time
|
||||
NetPlayTime-tooltip=Net Play Time
|
||||
AFKTimeRatio=AFK Time Ratio
|
||||
AFKTimeRatio-tooltip=AFK Time over Play Time
|
||||
Locale=Locale
|
||||
Locale-tooltip=The language of player interface
|
||||
@@ -1,16 +0,0 @@
|
||||
[expcore-data]
|
||||
description-preference=Allows you to set/get your data saving preference.
|
||||
description-data=Writes all your player data to a file on your computer.
|
||||
arg-option=One of "All", "Statistics", "Settings", "Required"
|
||||
set-preference=You data saving preference has been set to __1__. Existing data will not be effected until you rejoin.
|
||||
get-preference=You data saving preference is __1__. Use /set-preference to change this. Use /save-data to get a local copy of your data.
|
||||
get-data=Your player data has been writen to file, location: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=Your player data has failed to load. Any changes to your data will not be saved.
|
||||
data-restore=Your player data has been restored and changes will now save when you leave.
|
||||
preference=Saving Preference
|
||||
preference-tooltip=Which categories will be saved when you leave the game
|
||||
preference-value-tooltip=Change by using /set-preference
|
||||
preference-All=All data will be saved
|
||||
preference-Statistics=Only statistics, settings, and required data will be saved
|
||||
preference-Settings=Only settings and required data will be saved
|
||||
preference-Required=Only required data will be saved
|
||||
@@ -1,113 +0,0 @@
|
||||
[player-list]
|
||||
main-tooltip=Player List
|
||||
open-action-bar=Options
|
||||
close-action-bar=Close Options
|
||||
reason-confirm=Confirm Reason
|
||||
reason-entry=Enter Reason
|
||||
goto-player=Goto player
|
||||
bring-player=Bring player
|
||||
report-player=Report player
|
||||
jail-player=Jail player
|
||||
kick-player=Kick player
|
||||
ban-player=Ban player
|
||||
afk-time=__1__% of total map time\nLast moved __2__ ago
|
||||
open-map=__1__ __2__\n__3__\nClick to open map
|
||||
|
||||
[warp-list]
|
||||
main-caption=Warp List [img=info]
|
||||
main-tooltip=Warp List
|
||||
sub-tooltip=Warps can only be used every __1__ seconds and when within __2__ tiles\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ This is your current warp point;
|
||||
sub-tooltip-connected= - __1__ You can travel to this warp point;
|
||||
sub-tooltip-different= - __1__ This warp is on a different network;
|
||||
sub-tooltip-cooldown= - __1__ You are currently on cooldown;
|
||||
sub-tooltip-not_available= - __1__ You are not in range of a warp point;
|
||||
sub-tooltip-bypass= - __1__ Your role allows you to travel here;
|
||||
too-close=Cannot create warp; too close to existing warp point: __1__
|
||||
too-close-to-water=Cannot create warp; too close to water, please move __1__ tiles away from the water body or landfill it
|
||||
too-close-to-entities=Cannot create warp; too close to other entities, please move __1__ tiles away from the entities or remove them
|
||||
last-edit=Last edited by __1__ at __2__\nClick to view on map
|
||||
add-tooltip=Add new warp
|
||||
confirm-tooltip=Save changes
|
||||
cancel-tooltip=Discard changes
|
||||
edit-tooltip=Currently being edited by: __1__
|
||||
edit-tooltip-none=Currently being edited by: Nobody
|
||||
remove-tooltip=Remove warp
|
||||
timer-tooltip=Please wait __1__ seconds before you can warp
|
||||
timer-tooltip-zero=After each warp you will need to wait __1__ seconds before you can warp again
|
||||
goto-tooltip=Go to x __1__ y __2__
|
||||
goto-bypass=Go to x __1__ y __2__, bypass mode
|
||||
goto-bypass-different-network=Go to x __1__ y __2__, bypass mode different network
|
||||
goto-same-warp=You are already on this warp
|
||||
goto-different-network=This warp is on a different network, use power poles to connect it
|
||||
goto-cooldown=You are on cooldown, wait for your cooldown to recharge
|
||||
goto-disabled=You are not on a warp point, walk to a warp point
|
||||
goto-edit=Edit warp icon
|
||||
|
||||
[bonus]
|
||||
description=Get / Set the amount of bonus you receive.
|
||||
arg-amount=Amount to set your bonus to, 0 will disable bonus.
|
||||
set=Your bonus has been set to __1__.
|
||||
get=Your bonus is __1__.
|
||||
perm=You dont have enough permission to set more than __1__.
|
||||
display-fmms=Mining
|
||||
display-fmms-tooltip=Force manual mining speed
|
||||
display-frs=Running
|
||||
display-frs-tooltip=Force running speed
|
||||
display-fcs=Crafting
|
||||
display-fcs-tooltip=Force crafting speed
|
||||
display-fisb=Inventory
|
||||
display-fisb-tooltip=Force inventory slots bonus
|
||||
display-fhb=Health
|
||||
display-fhb-tooltip=Force health bonus
|
||||
display-frdb=Reach
|
||||
display-frdb-tooltip=Force reach distance bonus
|
||||
display-fwrsm=Robot Speed
|
||||
display-fwrsm-tooltip=Force worker robots speed modifier
|
||||
display-fwrbm=Robot Battery
|
||||
display-fwrbm-tooltip=Force worker robots battery modifier
|
||||
display-fwrsb=Robot Storage
|
||||
display-fwrsb-tooltip=Force worker robots storage bonus
|
||||
display-ffrlm=Robot Lifetime
|
||||
display-ffrlm-tooltip=Force following robots lifetime modifier
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=Vlayer GUI
|
||||
description-pbr=Recharge Player Battery upto a portion with vlayer
|
||||
description-vi=Vlayer Info
|
||||
pbr-not-running=vlayer need to be running
|
||||
display-item-solar=[img=entity/solar-panel] Solar Panel
|
||||
display-item-accumulator=[img=entity/accumulator] Accumulator
|
||||
display-current-production=[virtual-signal=signal-P] Current Production
|
||||
display-sustained-production=[virtual-signal=signal-S] Sustained Production
|
||||
display-max-capacity=[virtual-signal=signal-C] Battery Capacity
|
||||
display-current-capacity=[virtual-signal=signal-E] Battery Charge
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] Remaining Surface
|
||||
display-item-solar-tooltip=The amount of Solar Panel
|
||||
display-item-accumulator-tooltip=The amount of Accumulator
|
||||
display-current-production-tooltip=Current Power Production
|
||||
display-sustained-production-tooltip=Sustained Power Production
|
||||
display-max-capacity-tooltip=Battery Max Capacity
|
||||
display-current-capacity-tooltip=Battery Current Charge
|
||||
display-remaining-surface-area-tooltip=Remaining Surface. Insert Landfill to increase
|
||||
steel-chest-detect=No steel chest detected
|
||||
steel-chest-empty=Chest is not emptied
|
||||
control-refresh=Refresh List
|
||||
control-see=See Interface
|
||||
control-build=Build Interface
|
||||
control-remove=Remove Interface
|
||||
result-build=built
|
||||
result-remove=removed
|
||||
result-interface-location=__1__ interface was located at __2__
|
||||
interface-result=__1__ __2__ __4__ interface at __3__
|
||||
result-unable=Unable to build __1__ interface, because of __2__
|
||||
result-multiple=Multiple steel chest detected
|
||||
result-limit=Max limit exceeded
|
||||
result-space=Not enough space
|
||||
control-type-energy=Energy
|
||||
control-type-circuit=Circuit
|
||||
control-type-storage-input=Storage Input
|
||||
control-type-storage-output=Storage Output
|
||||
power-on-space-research=You need to research [technology=__1__] at __2__ level for the space platform vlayer feature.
|
||||
enter=Entered vlayer selection mode.
|
||||
exit=Exited vlayer selection mode.
|
||||
@@ -0,0 +1,264 @@
|
||||
# addons
|
||||
[info]
|
||||
players-online=現在有 __1__ 人在線
|
||||
total-map-time=地圖時間為 __1__
|
||||
discord=加入社群: __1__
|
||||
website=訪問網站: __1__
|
||||
status=伺服器狀態: __1__
|
||||
github=增加功能或回報錯誤: __1__
|
||||
patreon=支持我們: __1__
|
||||
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
||||
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
||||
softmod=這裹用了自設情境,是一種軟裝模組。
|
||||
redmew=
|
||||
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
||||
|
||||
# data
|
||||
[join-message]
|
||||
description-add=設定 / 取得你的加入信息。
|
||||
description-remove=移除你的加入信息。
|
||||
arg-message=你的加入信息。
|
||||
greet=[color=0,1,0] 歡迎來到 __1__ 的服務器! 若果你喜歡本服務器可加入 DISCORD: __2__ [/color]
|
||||
message-set=你的加入信息已更新。
|
||||
message-get=你的加入信息為: __1__
|
||||
message-cleared=你的加入信息已清除。
|
||||
|
||||
[quickbar]
|
||||
saved=你的工具列已儲存。
|
||||
|
||||
[exp-settings]
|
||||
Colour=顏色
|
||||
Colour-tooltip=你的人物顏色
|
||||
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
||||
JoinMessage=加入信息
|
||||
JoinMessage-tooltip=你加入時所顯示的信息
|
||||
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
||||
QuickbarFilters=快捷欄
|
||||
QuickbarFilters-tooltip=快捷欄的選項
|
||||
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
||||
UsesAlt=細節模式
|
||||
UsesAlt-tooltip=你加入時是否使用細節模式
|
||||
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
||||
UsesServerUps=服務器更新數 (SUPS)
|
||||
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
||||
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
||||
Tag=你的人物標籤
|
||||
Tag-tooltip=你的人物標籤
|
||||
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
||||
TagColor=人物標籤顏色
|
||||
TagColor-tooltip=你的人物標籤顏色
|
||||
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
||||
Bonus=人物附加屬性
|
||||
Bonus-tooltip=你的人物附加屬性
|
||||
Bonus-value-tooltip=使用 /bonus 來更改
|
||||
HasEnabledDecon=快速拆除樹木
|
||||
ToolbarState=工具箱
|
||||
ToolbarState-tooltip=次序和喜愛項目
|
||||
ToolbarState-value-tooltip=此值在離開時自動計算
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=地圖遊玩次數
|
||||
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
||||
JoinCount=登入次數
|
||||
JoinCount-tooltip=你在本服務器遊玩的次數
|
||||
Playtime=遊玩時間
|
||||
Playtime-tooltip=你在本服務器遊玩的時間
|
||||
AfkTime=掛機時間
|
||||
AfkTime-tooltip=你在本服務器掛機的時間
|
||||
ChatMessages=傳送信息次數
|
||||
ChatMessages-tooltip=你在本服務器發送信息的次數
|
||||
CommandsUsed=使用指令次數
|
||||
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
||||
RocketsLaunched=火箭發射次數
|
||||
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
||||
ResearchCompleted=研究次數
|
||||
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
||||
MachinesBuilt=機器建造次數
|
||||
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
||||
MachinesRemoved=機器拆除次數
|
||||
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
||||
TilesBuilt=地磚建造次數
|
||||
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
||||
TilesRemoved=地磚拆除次數
|
||||
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
||||
TreesDestroyed=樹木拆除次數
|
||||
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
||||
OreMined=挖礦次數
|
||||
OreMined-tooltip=你在本服務器挖掘礦的次數
|
||||
ItemsCrafted=物品合成數
|
||||
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
||||
ItemsPickedUp=物品拾起數
|
||||
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
||||
Kills=撃殺數
|
||||
Kills-tooltip=你在本服務器殺過的敵人數量
|
||||
Deaths=死亡次數
|
||||
Deaths-tooltip=你在本服務器死過的數量
|
||||
DamageDealt=傷害量
|
||||
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
||||
DistanceTravelled=移動距離
|
||||
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
||||
CapsulesUsed=膠囊使用次數
|
||||
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
||||
EntityRepaired=機器維修次數
|
||||
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
||||
DeconstructionPlannerUsed=拆除規劃器使用次數
|
||||
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
||||
MapTagsMade=地圖標籤數量
|
||||
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
||||
DamageDeathRatio=傷害死亡比
|
||||
DamageDeathRatio-tooltip=傷害除以死亡
|
||||
KillDeathRatio=撃殺死亡比
|
||||
KillDeathRatio-tooltip=撃殺除以死亡
|
||||
SessionTime=平均遊玩時間
|
||||
SessionTime-tooltip=平均遊玩時間
|
||||
BuildRatio=建築比
|
||||
BuildRatio-tooltip=建築次數除以拆除次數
|
||||
RocketPerHour=每小時火箭發射次數
|
||||
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
||||
TreeKillPerMinute=每分鐘樹木拆除數
|
||||
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
||||
NetPlayTime=淨遊玩時間
|
||||
NetPlayTime-tooltip=遊玩時間減掛機時間
|
||||
AFKTimeRatio=掛機時間比
|
||||
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
||||
Locale=語言
|
||||
Locale-tooltip=用戶介面語言
|
||||
|
||||
# expcore
|
||||
[expcore-data]
|
||||
description-preference=允許寫入資料。
|
||||
description-data=把用戶資料寫入電腦
|
||||
arg-option="All", "Statistics", "Settings", "Required" 之中
|
||||
set-preference=你的喜好已設定為 __1__ 。在你重新加入前將不會有任何改動。
|
||||
get-preference=你的喜好為 __1__ 。使用 /set-preference 來更改,使用 /save-data 來獲得一份資料副本。
|
||||
get-data=你的個人資料已寫入: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=無法載入你的個人資料,任何改動將不會保存。
|
||||
data-restore=已載入你的個人資料,所有改動將會被保存。
|
||||
preference=儲存喜好
|
||||
preference-tooltip=那種資料將在退出時保存
|
||||
preference-value-tooltip=使用 /set-preference 來更換儲存喜好
|
||||
preference-All=所有資料都會被儲存
|
||||
preference-Statistics=只有數據, 設定和資料會被儲存
|
||||
preference-Settings=只有設定和資料會被儲存
|
||||
preference-Required=只有需要的資料會被儲存
|
||||
|
||||
# gui
|
||||
[player-list]
|
||||
main-tooltip=用戶名單
|
||||
open-action-bar=選項
|
||||
close-action-bar=關閉選項
|
||||
reason-confirm=確認原因
|
||||
reason-entry=輸入原因
|
||||
goto-player=傳送到用戶
|
||||
bring-player=傳送用戶到自己
|
||||
report-player=舉報用戶
|
||||
jail-player=監禁用戶
|
||||
kick-player=踢除用戶
|
||||
ban-player=封禁用戶
|
||||
afk-time=__1__% 地圖時間\n上次移動: __2__
|
||||
open-map=__1__ __2__\n__3__\n按下打開地圖
|
||||
|
||||
[warp-list]
|
||||
main-caption=傳送陣清單 [img=info]
|
||||
main-tooltip=傳送陣清單
|
||||
sub-tooltip=傳送陣在 __1__ 秒內只能使用一次。 亦需在 __2__ 格之內使用\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ 你目前的傳送陣;
|
||||
sub-tooltip-connected= - __1__ 你可以到本傳送陣;
|
||||
sub-tooltip-different= - __1__ 該傳送陣未連接;
|
||||
sub-tooltip-cooldown= - __1__ 傳送冷卻中;
|
||||
sub-tooltip-not_available= - __1__ 你不在傳送陣範圍;
|
||||
sub-tooltip-bypass= - __1__ 你可以傳送到這裏;
|
||||
too-close=無法新建傳送陣; 太接近 __1__ 了
|
||||
too-close-to-water=無法新建傳送陣; 太接近水源了, 請移動 __1__ 格又或者填平該地方
|
||||
too-close-to-entities=無法新建傳送陣; 太接近其他東西, 請移動 __1__ 格又或者拆除該東西
|
||||
last-edit=最後由 __1__ 在 __2__ 更改\n按這在地圖上看
|
||||
add-tooltip=新建傳送陣
|
||||
confirm-tooltip=儲存更改
|
||||
cancel-tooltip=放棄更改
|
||||
edit-tooltip=現被 __1__ 修改中
|
||||
edit-tooltip-none=現沒有被人修改
|
||||
remove-tooltip=拆除傳送陣
|
||||
timer-tooltip=請等 __1__ 秒才再次傳送
|
||||
timer-tooltip-zero=你要等 __1__ 秒才可以再次傳送
|
||||
goto-tooltip=到 X __1__ Y __2__
|
||||
goto-bypass=到 X __1__ Y __2__, 繞行模式
|
||||
goto-bypass-different-network=到 X __1__ Y __2__, 繞行模式 (不同網絡)
|
||||
goto-same-warp=你已在該傳送陣
|
||||
goto-different-network=該傳送陣未連接, 你可使用電纜連接
|
||||
goto-cooldown=傳送冷卻中, 請等候冷卻
|
||||
goto-disabled=你不在傳送陣, 請移至任意傳送陣
|
||||
goto-edit=修改傳送陣圖案
|
||||
|
||||
[bonus]
|
||||
description=取得 / 設定 Bonus 量。
|
||||
arg-amount=Bonus 數量, 0 來停用。
|
||||
set=你的 Bonus 已設為 __1__。
|
||||
get=你的 Bonus 為 __1__。
|
||||
perm=你沒有足夠權限設多過 __1__。
|
||||
display-fmms=挖掘速度
|
||||
display-fmms-tooltip=勢力挖掘速度
|
||||
display-frs=跑步速度
|
||||
display-frs-tooltip=勢力跑步速度
|
||||
display-fcs=合成速度
|
||||
display-fcs-tooltip=勢力合成速度
|
||||
display-fisb=儲存位
|
||||
display-fisb-tooltip=勢力儲存位
|
||||
display-fhb=生命
|
||||
display-fhb-tooltip=勢力生命
|
||||
display-frdb=到達距離
|
||||
display-frdb-tooltip=勢力到達距離
|
||||
display-fwrsm=機械人速度
|
||||
display-fwrsm-tooltip=勢力機械人速度
|
||||
display-fwrbm=機械人電力
|
||||
display-fwrbm-tooltip=勢力機械人電力
|
||||
display-fwrsb=械人儲存
|
||||
display-fwrsb-tooltip=勢力機械人儲存
|
||||
display-ffrlm=機械人生命
|
||||
display-ffrlm-tooltip=勢力戰鬥機械人生命時間
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=vlayer
|
||||
description-pbr=使用 Vlayer 為玩家電池充電
|
||||
description-vi=Vlayer 資訊
|
||||
pbr-not-running=vlayer 沒有運行
|
||||
display-item-solar=[img=entity/solar-panel] 太陽能板
|
||||
display-item-accumulator=[img=entity/accumulator] 蓄電池
|
||||
display-current-production=[virtual-signal=signal-P] 現時產能
|
||||
display-sustained-production=[virtual-signal=signal-S] 持續產能
|
||||
display-max-capacity=[virtual-signal=signal-C] 電池容量
|
||||
display-current-capacity=[virtual-signal=signal-E] 電池電量
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] 餘下土地
|
||||
display-item-solar-tooltip=太陽能板數量
|
||||
display-item-accumulator-tooltip=蓄電池數量
|
||||
display-current-production-tooltip=現時電力產能
|
||||
display-sustained-production-tooltip=持續電力產能
|
||||
display-max-capacity-tooltip=電池最大容量
|
||||
display-current-capacity-tooltip=現時電池電量
|
||||
display-remaining-surface-area-tooltip=餘下土地。 放入堆填來增加
|
||||
steel-chest-detect=沒檢測到鋼箱
|
||||
steel-chest-empty=鋼箱不是空的
|
||||
control-refresh=刷新列表
|
||||
control-see=查看介面
|
||||
control-build=建造介面
|
||||
control-remove=拆除介面
|
||||
result-build=建造了
|
||||
result-remove=拆除了
|
||||
result-interface-location=__1__ 介面在 __2__
|
||||
interface-result=__1__ 在 __2__ __3__ __4__ 介面
|
||||
result-unable=無法建造 __1__ 介面,因 __2__
|
||||
result-multiple=檢測到多個鋼箱
|
||||
result-limit=超出最大限制
|
||||
result-space=空間不足
|
||||
control-type-energy=電力
|
||||
control-type-circuit=回路
|
||||
control-type-storage-input=放入箱
|
||||
control-type-storage-output=提取箱
|
||||
power-on-space-research=你要研究 [technology=__1__] 在 __2__ 級 才可使用太空平台 vlayer 功能。
|
||||
|
||||
[toolbar]
|
||||
main-caption=工具箱
|
||||
main-tooltip=工具箱設定\n選上來設定喜好
|
||||
reset=重設
|
||||
toggle=啟用喜好
|
||||
move-up=向上
|
||||
move-down=向下
|
||||
@@ -1,20 +0,0 @@
|
||||
[links]
|
||||
discord=https://discord.explosivegaming.nl
|
||||
website=https://www.explosivegaming.nl
|
||||
status=https://status.explosivegaming.nl
|
||||
github=https://github.com/explosivegaming/ExpCluster
|
||||
patreon=https://www.patreon.com/ExpGaming
|
||||
|
||||
[info]
|
||||
players-online=現在有 __1__ 人在線
|
||||
total-map-time=地圖時間為 __1__
|
||||
discord=加入社群: https://discord.explosivegaming.nl
|
||||
website=訪問網站: https://www.explosivegaming.nl
|
||||
status=伺服器狀態: https://status.explosivegaming.nl
|
||||
github=增加功能或回報錯誤: https://github.com/explosivegaming/ExpCluster
|
||||
patreon=支持我們: https://www.patreon.com/ExpGaming
|
||||
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
||||
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
||||
softmod=這裹用了自設情境,是一種軟裝模組。
|
||||
redmew=
|
||||
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
||||
@@ -1,109 +0,0 @@
|
||||
[join-message]
|
||||
description-add=設定 / 取得你的加入信息。
|
||||
description-remove=移除你的加入信息。
|
||||
arg-message=你的加入信息。
|
||||
greet=[color=0,1,0] 歡迎來到 EXP 的服務器! 若果你喜歡本服務器可加入 DISCORD: __1__ [/color]
|
||||
message-set=你的加入信息已更新。
|
||||
message-get=你的加入信息為: __1__
|
||||
message-cleared=你的加入信息已清除。
|
||||
|
||||
[quickbar]
|
||||
saved=你的工具列已儲存。
|
||||
|
||||
[exp-settings]
|
||||
Colour=顏色
|
||||
Colour-tooltip=你的人物顏色
|
||||
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
||||
JoinMessage=加入信息
|
||||
JoinMessage-tooltip=你加入時所顯示的信息
|
||||
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
||||
QuickbarFilters=快捷欄
|
||||
QuickbarFilters-tooltip=快捷欄的選項
|
||||
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
||||
UsesAlt=細節模式
|
||||
UsesAlt-tooltip=你加入時是否使用細節模式
|
||||
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
||||
UsesServerUps=服務器更新數 (SUPS)
|
||||
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
||||
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
||||
Tag=你的人物標籤
|
||||
Tag-tooltip=你的人物標籤
|
||||
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
||||
TagColor=人物標籤顏色
|
||||
TagColor-tooltip=你的人物標籤顏色
|
||||
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
||||
Bonus=人物附加屬性
|
||||
Bonus-tooltip=你的人物附加屬性
|
||||
Bonus-value-tooltip=使用 /bonus 來更改
|
||||
HasEnabledDecon=快速拆除樹木
|
||||
ToolbarState=工具箱
|
||||
ToolbarState-tooltip=次序和喜愛項目
|
||||
ToolbarState-value-tooltip=此值在離開時自動計算
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=地圖遊玩次數
|
||||
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
||||
JoinCount=登入次數
|
||||
JoinCount-tooltip=你在本服務器遊玩的次數
|
||||
Playtime=遊玩時間
|
||||
Playtime-tooltip=你在本服務器遊玩的時間
|
||||
AfkTime=掛機時間
|
||||
AfkTime-tooltip=你在本服務器掛機的時間
|
||||
ChatMessages=傳送信息次數
|
||||
ChatMessages-tooltip=你在本服務器發送信息的次數
|
||||
CommandsUsed=使用指令次數
|
||||
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
||||
RocketsLaunched=火箭發射次數
|
||||
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
||||
ResearchCompleted=研究次數
|
||||
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
||||
MachinesBuilt=機器建造次數
|
||||
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
||||
MachinesRemoved=機器拆除次數
|
||||
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
||||
TilesBuilt=地磚建造次數
|
||||
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
||||
TilesRemoved=地磚拆除次數
|
||||
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
||||
TreesDestroyed=樹木拆除次數
|
||||
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
||||
OreMined=挖礦次數
|
||||
OreMined-tooltip=你在本服務器挖掘礦的次數
|
||||
ItemsCrafted=物品合成數
|
||||
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
||||
ItemsPickedUp=物品拾起數
|
||||
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
||||
Kills=撃殺數
|
||||
Kills-tooltip=你在本服務器殺過的敵人數量
|
||||
Deaths=死亡次數
|
||||
Deaths-tooltip=你在本服務器死過的數量
|
||||
DamageDealt=傷害量
|
||||
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
||||
DistanceTravelled=移動距離
|
||||
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
||||
CapsulesUsed=膠囊使用次數
|
||||
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
||||
EntityRepaired=機器維修次數
|
||||
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
||||
DeconstructionPlannerUsed=拆除規劃器使用次數
|
||||
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
||||
MapTagsMade=地圖標籤數量
|
||||
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
||||
DamageDeathRatio=傷害死亡比
|
||||
DamageDeathRatio-tooltip=傷害除以死亡
|
||||
KillDeathRatio=撃殺死亡比
|
||||
KillDeathRatio-tooltip=撃殺除以死亡
|
||||
SessionTime=平均遊玩時間
|
||||
SessionTime-tooltip=平均遊玩時間
|
||||
BuildRatio=建築比
|
||||
BuildRatio-tooltip=建築次數除以拆除次數
|
||||
RocketPerHour=每小時火箭發射次數
|
||||
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
||||
TreeKillPerMinute=每分鐘樹木拆除數
|
||||
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
||||
NetPlayTime=淨遊玩時間
|
||||
NetPlayTime-tooltip=遊玩時間減掛機時間
|
||||
AFKTimeRatio=掛機時間比
|
||||
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
||||
Locale=語言
|
||||
Locale-tooltip=用戶介面語言
|
||||
@@ -1,16 +0,0 @@
|
||||
[expcore-data]
|
||||
description-preference=允許寫入資料。
|
||||
description-data=把用戶資料寫入電腦
|
||||
arg-option="All", "Statistics", "Settings", "Required" 之中
|
||||
set-preference=你的喜好已設定為 __1__ 。在你重新加入前將不會有任何改動。
|
||||
get-preference=你的喜好為 __1__ 。使用 /set-preference 來更改,使用 /save-data 來獲得一份資料副本。
|
||||
get-data=你的個人資料已寫入: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=無法載入你的個人資料,任何改動將不會保存。
|
||||
data-restore=已載入你的個人資料,所有改動將會被保存。
|
||||
preference=儲存喜好
|
||||
preference-tooltip=那種資料將在退出時保存
|
||||
preference-value-tooltip=使用 /set-preference 來更換儲存喜好
|
||||
preference-All=所有資料都會被儲存
|
||||
preference-Statistics=只有數據, 設定和資料會被儲存
|
||||
preference-Settings=只有設定和資料會被儲存
|
||||
preference-Required=只有需要的資料會被儲存
|
||||
@@ -1,121 +0,0 @@
|
||||
[player-list]
|
||||
main-tooltip=用戶名單
|
||||
open-action-bar=選項
|
||||
close-action-bar=關閉選項
|
||||
reason-confirm=確認原因
|
||||
reason-entry=輸入原因
|
||||
goto-player=傳送到用戶
|
||||
bring-player=傳送用戶到自己
|
||||
report-player=舉報用戶
|
||||
jail-player=監禁用戶
|
||||
kick-player=踢除用戶
|
||||
ban-player=封禁用戶
|
||||
afk-time=__1__% 地圖時間\n上次移動: __2__
|
||||
open-map=__1__ __2__\n__3__\n按下打開地圖
|
||||
|
||||
[warp-list]
|
||||
main-caption=傳送陣清單 [img=info]
|
||||
main-tooltip=傳送陣清單
|
||||
sub-tooltip=傳送陣在 __1__ 秒內只能使用一次。 亦需在 __2__ 格之內使用\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ 你目前的傳送陣;
|
||||
sub-tooltip-connected= - __1__ 你可以到本傳送陣;
|
||||
sub-tooltip-different= - __1__ 該傳送陣未連接;
|
||||
sub-tooltip-cooldown= - __1__ 傳送冷卻中;
|
||||
sub-tooltip-not_available= - __1__ 你不在傳送陣範圍;
|
||||
sub-tooltip-bypass= - __1__ 你可以傳送到這裏;
|
||||
too-close=無法新建傳送陣; 太接近 __1__ 了
|
||||
too-close-to-water=無法新建傳送陣; 太接近水源了, 請移動 __1__ 格又或者填平該地方
|
||||
too-close-to-entities=無法新建傳送陣; 太接近其他東西, 請移動 __1__ 格又或者拆除該東西
|
||||
last-edit=最後由 __1__ 在 __2__ 更改\n按這在地圖上看
|
||||
add-tooltip=新建傳送陣
|
||||
confirm-tooltip=儲存更改
|
||||
cancel-tooltip=放棄更改
|
||||
edit-tooltip=現被 __1__ 修改中
|
||||
edit-tooltip-none=現沒有被人修改
|
||||
remove-tooltip=拆除傳送陣
|
||||
timer-tooltip=請等 __1__ 秒才再次傳送
|
||||
timer-tooltip-zero=你要等 __1__ 秒才可以再次傳送
|
||||
goto-tooltip=到 X __1__ Y __2__
|
||||
goto-bypass=到 X __1__ Y __2__, 繞行模式
|
||||
goto-bypass-different-network=到 X __1__ Y __2__, 繞行模式 (不同網絡)
|
||||
goto-same-warp=你已在該傳送陣
|
||||
goto-different-network=該傳送陣未連接, 你可使用電纜連接
|
||||
goto-cooldown=傳送冷卻中, 請等候冷卻
|
||||
goto-disabled=你不在傳送陣, 請移至任意傳送陣
|
||||
goto-edit=修改傳送陣圖案
|
||||
|
||||
[bonus]
|
||||
description=取得 / 設定 Bonus 量。
|
||||
arg-amount=Bonus 數量, 0 來停用。
|
||||
set=你的 Bonus 已設為 __1__。
|
||||
get=你的 Bonus 為 __1__。
|
||||
perm=你沒有足夠權限設多過 __1__。
|
||||
display-fmms=挖掘速度
|
||||
display-fmms-tooltip=勢力挖掘速度
|
||||
display-frs=跑步速度
|
||||
display-frs-tooltip=勢力跑步速度
|
||||
display-fcs=合成速度
|
||||
display-fcs-tooltip=勢力合成速度
|
||||
display-fisb=儲存位
|
||||
display-fisb-tooltip=勢力儲存位
|
||||
display-fhb=生命
|
||||
display-fhb-tooltip=勢力生命
|
||||
display-frdb=到達距離
|
||||
display-frdb-tooltip=勢力到達距離
|
||||
display-fwrsm=機械人速度
|
||||
display-fwrsm-tooltip=勢力機械人速度
|
||||
display-fwrbm=機械人電力
|
||||
display-fwrbm-tooltip=勢力機械人電力
|
||||
display-fwrsb=械人儲存
|
||||
display-fwrsb-tooltip=勢力機械人儲存
|
||||
display-ffrlm=機械人生命
|
||||
display-ffrlm-tooltip=勢力戰鬥機械人生命時間
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=Vlayer 介面
|
||||
description-pbr=使用 Vlayer 為玩家電池充電
|
||||
description-vi=Vlayer 資訊
|
||||
pbr-not-running=vlayer 沒有運行
|
||||
display-item-solar=[img=entity/solar-panel] 太陽能板
|
||||
display-item-accumulator=[img=entity/accumulator] 蓄電池
|
||||
display-current-production=[virtual-signal=signal-P] 現時產能
|
||||
display-sustained-production=[virtual-signal=signal-S] 持續產能
|
||||
display-max-capacity=[virtual-signal=signal-C] 電池容量
|
||||
display-current-capacity=[virtual-signal=signal-E] 電池電量
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] 餘下土地
|
||||
display-item-solar-tooltip=太陽能板數量
|
||||
display-item-accumulator-tooltip=蓄電池數量
|
||||
display-current-production-tooltip=現時電力產能
|
||||
display-sustained-production-tooltip=持續電力產能
|
||||
display-max-capacity-tooltip=電池最大容量
|
||||
display-current-capacity-tooltip=現時電池電量
|
||||
display-remaining-surface-area-tooltip=餘下土地。 放入堆填來增加
|
||||
steel-chest-detect=沒檢測到鋼箱
|
||||
steel-chest-empty=鋼箱不是空的
|
||||
control-refresh=刷新列表
|
||||
control-see=查看介面
|
||||
control-build=建造介面
|
||||
control-remove=拆除介面
|
||||
result-build=建造了
|
||||
result-remove=拆除了
|
||||
result-interface-location=__1__ 介面在 __2__
|
||||
interface-result=__1__ 在 __2__ __3__ __4__ 介面
|
||||
result-unable=無法建造 __1__ 介面,因 __2__
|
||||
result-multiple=檢測到多個鋼箱
|
||||
result-limit=超出最大限制
|
||||
result-space=空間不足
|
||||
control-type-energy=電力
|
||||
control-type-circuit=回路
|
||||
control-type-storage-input=放入箱
|
||||
control-type-storage-output=提取箱
|
||||
power-on-space-research=你要研究 [technology=__1__] 在 __2__ 級 才可使用太空平台 vlayer 功能。
|
||||
enter=現在進入 vlayer 區域選擇
|
||||
exit=已進入 vlayer 區域選擇
|
||||
|
||||
[toolbar]
|
||||
main-caption=工具箱
|
||||
main-tooltip=工具箱設定\n選上來設定喜好
|
||||
reset=重設
|
||||
toggle=啟用喜好
|
||||
move-up=向上
|
||||
move-down=向下
|
||||
@@ -0,0 +1,264 @@
|
||||
# addons
|
||||
[info]
|
||||
players-online=現在有 __1__ 人在線
|
||||
total-map-time=地圖時間為 __1__
|
||||
discord=加入社群: __1__
|
||||
website=訪問網站: __1__
|
||||
status=伺服器狀態: __1__
|
||||
github=增加功能或回報錯誤: __1__
|
||||
patreon=支持我們: __1__
|
||||
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
||||
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
||||
softmod=這裹用了自設情境,是一種軟裝模組。
|
||||
redmew=
|
||||
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
||||
|
||||
# data
|
||||
[join-message]
|
||||
description-add=設定 / 取得你的加入信息。
|
||||
description-remove=移除你的加入信息。
|
||||
arg-message=你的加入信息。
|
||||
greet=[color=0,1,0] 歡迎來到 __1__ 的服務器! 若果你喜歡本服務器可加入 DISCORD: __2__ [/color]
|
||||
message-set=你的加入信息已更新。
|
||||
message-get=你的加入信息為: __1__
|
||||
message-cleared=你的加入信息已清除。
|
||||
|
||||
[quickbar]
|
||||
saved=你的工具列已儲存。
|
||||
|
||||
[exp-settings]
|
||||
Colour=顏色
|
||||
Colour-tooltip=你的人物顏色
|
||||
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
||||
JoinMessage=加入信息
|
||||
JoinMessage-tooltip=你加入時所顯示的信息
|
||||
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
||||
QuickbarFilters=快捷欄
|
||||
QuickbarFilters-tooltip=快捷欄的選項
|
||||
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
||||
UsesAlt=細節模式
|
||||
UsesAlt-tooltip=你加入時是否使用細節模式
|
||||
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
||||
UsesServerUps=服務器更新數 (SUPS)
|
||||
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
||||
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
||||
Tag=你的人物標籤
|
||||
Tag-tooltip=你的人物標籤
|
||||
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
||||
TagColor=人物標籤顏色
|
||||
TagColor-tooltip=你的人物標籤顏色
|
||||
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
||||
Bonus=人物附加屬性
|
||||
Bonus-tooltip=你的人物附加屬性
|
||||
Bonus-value-tooltip=使用 /bonus 來更改
|
||||
HasEnabledDecon=快速拆除樹木
|
||||
ToolbarState=工具箱
|
||||
ToolbarState-tooltip=次序和喜愛項目
|
||||
ToolbarState-value-tooltip=此值在離開時自動計算
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=地圖遊玩次數
|
||||
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
||||
JoinCount=登入次數
|
||||
JoinCount-tooltip=你在本服務器遊玩的次數
|
||||
Playtime=遊玩時間
|
||||
Playtime-tooltip=你在本服務器遊玩的時間
|
||||
AfkTime=掛機時間
|
||||
AfkTime-tooltip=你在本服務器掛機的時間
|
||||
ChatMessages=傳送信息次數
|
||||
ChatMessages-tooltip=你在本服務器發送信息的次數
|
||||
CommandsUsed=使用指令次數
|
||||
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
||||
RocketsLaunched=火箭發射次數
|
||||
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
||||
ResearchCompleted=研究次數
|
||||
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
||||
MachinesBuilt=機器建造次數
|
||||
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
||||
MachinesRemoved=機器拆除次數
|
||||
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
||||
TilesBuilt=地磚建造次數
|
||||
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
||||
TilesRemoved=地磚拆除次數
|
||||
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
||||
TreesDestroyed=樹木拆除次數
|
||||
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
||||
OreMined=挖礦次數
|
||||
OreMined-tooltip=你在本服務器挖掘礦的次數
|
||||
ItemsCrafted=物品合成數
|
||||
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
||||
ItemsPickedUp=物品拾起數
|
||||
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
||||
Kills=撃殺數
|
||||
Kills-tooltip=你在本服務器殺過的敵人數量
|
||||
Deaths=死亡次數
|
||||
Deaths-tooltip=你在本服務器死過的數量
|
||||
DamageDealt=傷害量
|
||||
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
||||
DistanceTravelled=移動距離
|
||||
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
||||
CapsulesUsed=膠囊使用次數
|
||||
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
||||
EntityRepaired=機器維修次數
|
||||
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
||||
DeconstructionPlannerUsed=拆除規劃器使用次數
|
||||
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
||||
MapTagsMade=地圖標籤數量
|
||||
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
||||
DamageDeathRatio=傷害死亡比
|
||||
DamageDeathRatio-tooltip=傷害除以死亡
|
||||
KillDeathRatio=撃殺死亡比
|
||||
KillDeathRatio-tooltip=撃殺除以死亡
|
||||
SessionTime=平均遊玩時間
|
||||
SessionTime-tooltip=平均遊玩時間
|
||||
BuildRatio=建築比
|
||||
BuildRatio-tooltip=建築次數除以拆除次數
|
||||
RocketPerHour=每小時火箭發射次數
|
||||
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
||||
TreeKillPerMinute=每分鐘樹木拆除數
|
||||
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
||||
NetPlayTime=淨遊玩時間
|
||||
NetPlayTime-tooltip=遊玩時間減掛機時間
|
||||
AFKTimeRatio=掛機時間比
|
||||
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
||||
Locale=語言
|
||||
Locale-tooltip=用戶介面語言
|
||||
|
||||
# expcore
|
||||
[expcore-data]
|
||||
description-preference=允許寫入資料。
|
||||
description-data=把用戶資料寫入電腦
|
||||
arg-option="All", "Statistics", "Settings", "Required" 之中
|
||||
set-preference=你的喜好已設定為 __1__ 。在你重新加入前將不會有任何改動。
|
||||
get-preference=你的喜好為 __1__ 。使用 /set-preference 來更改,使用 /save-data 來獲得一份資料副本。
|
||||
get-data=你的個人資料已寫入: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=無法載入你的個人資料,任何改動將不會保存。
|
||||
data-restore=已載入你的個人資料,所有改動將會被保存。
|
||||
preference=儲存喜好
|
||||
preference-tooltip=那種資料將在退出時保存
|
||||
preference-value-tooltip=使用 /set-preference 來更換儲存喜好
|
||||
preference-All=所有資料都會被儲存
|
||||
preference-Statistics=只有數據, 設定和資料會被儲存
|
||||
preference-Settings=只有設定和資料會被儲存
|
||||
preference-Required=只有需要的資料會被儲存
|
||||
|
||||
# gui
|
||||
[player-list]
|
||||
main-tooltip=用戶名單
|
||||
open-action-bar=選項
|
||||
close-action-bar=關閉選項
|
||||
reason-confirm=確認原因
|
||||
reason-entry=輸入原因
|
||||
goto-player=傳送到用戶
|
||||
bring-player=傳送用戶到自己
|
||||
report-player=舉報用戶
|
||||
jail-player=監禁用戶
|
||||
kick-player=踢除用戶
|
||||
ban-player=封禁用戶
|
||||
afk-time=__1__% 地圖時間\n上次移動: __2__
|
||||
open-map=__1__ __2__\n__3__\n按下打開地圖
|
||||
|
||||
[warp-list]
|
||||
main-caption=傳送陣清單 [img=info]
|
||||
main-tooltip=傳送陣清單
|
||||
sub-tooltip=傳送陣在 __1__ 秒內只能使用一次。 亦需在 __2__ 格之內使用\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ 你目前的傳送陣;
|
||||
sub-tooltip-connected= - __1__ 你可以到本傳送陣;
|
||||
sub-tooltip-different= - __1__ 該傳送陣未連接;
|
||||
sub-tooltip-cooldown= - __1__ 傳送冷卻中;
|
||||
sub-tooltip-not_available= - __1__ 你不在傳送陣範圍;
|
||||
sub-tooltip-bypass= - __1__ 你可以傳送到這裏;
|
||||
too-close=無法新建傳送陣; 太接近 __1__ 了
|
||||
too-close-to-water=無法新建傳送陣; 太接近水源了, 請移動 __1__ 格又或者填平該地方
|
||||
too-close-to-entities=無法新建傳送陣; 太接近其他東西, 請移動 __1__ 格又或者拆除該東西
|
||||
last-edit=最後由 __1__ 在 __2__ 更改\n按這在地圖上看
|
||||
add-tooltip=新建傳送陣
|
||||
confirm-tooltip=儲存更改
|
||||
cancel-tooltip=放棄更改
|
||||
edit-tooltip=現被 __1__ 修改中
|
||||
edit-tooltip-none=現沒有被人修改
|
||||
remove-tooltip=拆除傳送陣
|
||||
timer-tooltip=請等 __1__ 秒才再次傳送
|
||||
timer-tooltip-zero=你要等 __1__ 秒才可以再次傳送
|
||||
goto-tooltip=到 X __1__ Y __2__
|
||||
goto-bypass=到 X __1__ Y __2__, 繞行模式
|
||||
goto-bypass-different-network=到 X __1__ Y __2__, 繞行模式 (不同網絡)
|
||||
goto-same-warp=你已在該傳送陣
|
||||
goto-different-network=該傳送陣未連接, 你可使用電纜連接
|
||||
goto-cooldown=傳送冷卻中, 請等候冷卻
|
||||
goto-disabled=你不在傳送陣, 請移至任意傳送陣
|
||||
goto-edit=修改傳送陣圖案
|
||||
|
||||
[bonus]
|
||||
description=取得 / 設定 Bonus 量。
|
||||
arg-amount=Bonus 數量, 0 來停用。
|
||||
set=你的 Bonus 已設為 __1__。
|
||||
get=你的 Bonus 為 __1__。
|
||||
perm=你沒有足夠權限設多過 __1__。
|
||||
display-fmms=挖掘速度
|
||||
display-fmms-tooltip=勢力挖掘速度
|
||||
display-frs=跑步速度
|
||||
display-frs-tooltip=勢力跑步速度
|
||||
display-fcs=合成速度
|
||||
display-fcs-tooltip=勢力合成速度
|
||||
display-fisb=儲存位
|
||||
display-fisb-tooltip=勢力儲存位
|
||||
display-fhb=生命
|
||||
display-fhb-tooltip=勢力生命
|
||||
display-frdb=到達距離
|
||||
display-frdb-tooltip=勢力到達距離
|
||||
display-fwrsm=機械人速度
|
||||
display-fwrsm-tooltip=勢力機械人速度
|
||||
display-fwrbm=機械人電力
|
||||
display-fwrbm-tooltip=勢力機械人電力
|
||||
display-fwrsb=械人儲存
|
||||
display-fwrsb-tooltip=勢力機械人儲存
|
||||
display-ffrlm=機械人生命
|
||||
display-ffrlm-tooltip=勢力戰鬥機械人生命時間
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=vlayer
|
||||
description-pbr=使用 Vlayer 為玩家電池充電
|
||||
description-vi=Vlayer 資訊
|
||||
pbr-not-running=vlayer 沒有運行
|
||||
display-item-solar=[img=entity/solar-panel] 太陽能板
|
||||
display-item-accumulator=[img=entity/accumulator] 蓄電池
|
||||
display-current-production=[virtual-signal=signal-P] 現時產能
|
||||
display-sustained-production=[virtual-signal=signal-S] 持續產能
|
||||
display-max-capacity=[virtual-signal=signal-C] 電池容量
|
||||
display-current-capacity=[virtual-signal=signal-E] 電池電量
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] 餘下土地
|
||||
display-item-solar-tooltip=太陽能板數量
|
||||
display-item-accumulator-tooltip=蓄電池數量
|
||||
display-current-production-tooltip=現時電力產能
|
||||
display-sustained-production-tooltip=持續電力產能
|
||||
display-max-capacity-tooltip=電池最大容量
|
||||
display-current-capacity-tooltip=現時電池電量
|
||||
display-remaining-surface-area-tooltip=餘下土地。 放入堆填來增加
|
||||
steel-chest-detect=沒檢測到鋼箱
|
||||
steel-chest-empty=鋼箱不是空的
|
||||
control-refresh=刷新列表
|
||||
control-see=查看介面
|
||||
control-build=建造介面
|
||||
control-remove=拆除介面
|
||||
result-build=建造了
|
||||
result-remove=拆除了
|
||||
result-interface-location=__1__ 介面在 __2__
|
||||
interface-result=__1__ 在 __2__ __3__ __4__ 介面
|
||||
result-unable=無法建造 __1__ 介面,因 __2__
|
||||
result-multiple=檢測到多個鋼箱
|
||||
result-limit=超出最大限制
|
||||
result-space=空間不足
|
||||
control-type-energy=電力
|
||||
control-type-circuit=回路
|
||||
control-type-storage-input=放入箱
|
||||
control-type-storage-output=提取箱
|
||||
power-on-space-research=你要研究 [technology=__1__] 在 __2__ 級 才可使用太空平台 vlayer 功能。
|
||||
|
||||
[toolbar]
|
||||
main-caption=工具箱
|
||||
main-tooltip=工具箱設定\n選上來設定喜好
|
||||
reset=重設
|
||||
toggle=啟用喜好
|
||||
move-up=向上
|
||||
move-down=向下
|
||||
@@ -1,20 +0,0 @@
|
||||
[links]
|
||||
discord=https://discord.explosivegaming.nl
|
||||
website=https://www.explosivegaming.nl
|
||||
status=https://status.explosivegaming.nl
|
||||
github=https://github.com/explosivegaming/ExpCluster
|
||||
patreon=https://www.patreon.com/ExpGaming
|
||||
|
||||
[info]
|
||||
players-online=現在有 __1__ 人在線
|
||||
total-map-time=地圖時間為 __1__
|
||||
discord=加入社群: https://discord.explosivegaming.nl
|
||||
website=訪問網站: https://www.explosivegaming.nl
|
||||
status=伺服器狀態: https://status.explosivegaming.nl
|
||||
github=增加功能或回報錯誤: https://github.com/explosivegaming/ExpCluster
|
||||
patreon=支持我們: https://www.patreon.com/ExpGaming
|
||||
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
||||
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
||||
softmod=這裹用了自設情境,是一種軟裝模組。
|
||||
redmew=
|
||||
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
||||
@@ -1,109 +0,0 @@
|
||||
[join-message]
|
||||
description-add=設定 / 取得你的加入信息。
|
||||
description-remove=移除你的加入信息。
|
||||
arg-message=你的加入信息。
|
||||
greet=[color=0,1,0] 歡迎來到 EXP 的服務器! 若果你喜歡本服務器可加入 DISCORD: __1__ [/color]
|
||||
message-set=你的加入信息已更新。
|
||||
message-get=你的加入信息為: __1__
|
||||
message-cleared=你的加入信息已清除。
|
||||
|
||||
[quickbar]
|
||||
saved=你的工具列已儲存。
|
||||
|
||||
[exp-settings]
|
||||
Colour=顏色
|
||||
Colour-tooltip=你的人物顏色
|
||||
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
||||
JoinMessage=加入信息
|
||||
JoinMessage-tooltip=你加入時所顯示的信息
|
||||
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
||||
QuickbarFilters=快捷欄
|
||||
QuickbarFilters-tooltip=快捷欄的選項
|
||||
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
||||
UsesAlt=細節模式
|
||||
UsesAlt-tooltip=你加入時是否使用細節模式
|
||||
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
||||
UsesServerUps=服務器更新數 (SUPS)
|
||||
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
||||
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
||||
Tag=你的人物標籤
|
||||
Tag-tooltip=你的人物標籤
|
||||
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
||||
TagColor=人物標籤顏色
|
||||
TagColor-tooltip=你的人物標籤顏色
|
||||
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
||||
Bonus=人物附加屬性
|
||||
Bonus-tooltip=你的人物附加屬性
|
||||
Bonus-value-tooltip=使用 /bonus 來更改
|
||||
HasEnabledDecon=快速拆除樹木
|
||||
ToolbarState=工具箱
|
||||
ToolbarState-tooltip=次序和喜愛項目
|
||||
ToolbarState-value-tooltip=此值在離開時自動計算
|
||||
|
||||
[exp-statistics]
|
||||
MapsPlayed=地圖遊玩次數
|
||||
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
||||
JoinCount=登入次數
|
||||
JoinCount-tooltip=你在本服務器遊玩的次數
|
||||
Playtime=遊玩時間
|
||||
Playtime-tooltip=你在本服務器遊玩的時間
|
||||
AfkTime=掛機時間
|
||||
AfkTime-tooltip=你在本服務器掛機的時間
|
||||
ChatMessages=傳送信息次數
|
||||
ChatMessages-tooltip=你在本服務器發送信息的次數
|
||||
CommandsUsed=使用指令次數
|
||||
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
||||
RocketsLaunched=火箭發射次數
|
||||
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
||||
ResearchCompleted=研究次數
|
||||
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
||||
MachinesBuilt=機器建造次數
|
||||
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
||||
MachinesRemoved=機器拆除次數
|
||||
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
||||
TilesBuilt=地磚建造次數
|
||||
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
||||
TilesRemoved=地磚拆除次數
|
||||
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
||||
TreesDestroyed=樹木拆除次數
|
||||
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
||||
OreMined=挖礦次數
|
||||
OreMined-tooltip=你在本服務器挖掘礦的次數
|
||||
ItemsCrafted=物品合成數
|
||||
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
||||
ItemsPickedUp=物品拾起數
|
||||
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
||||
Kills=撃殺數
|
||||
Kills-tooltip=你在本服務器殺過的敵人數量
|
||||
Deaths=死亡次數
|
||||
Deaths-tooltip=你在本服務器死過的數量
|
||||
DamageDealt=傷害量
|
||||
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
||||
DistanceTravelled=移動距離
|
||||
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
||||
CapsulesUsed=膠囊使用次數
|
||||
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
||||
EntityRepaired=機器維修次數
|
||||
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
||||
DeconstructionPlannerUsed=拆除規劃器使用次數
|
||||
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
||||
MapTagsMade=地圖標籤數量
|
||||
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
||||
DamageDeathRatio=傷害死亡比
|
||||
DamageDeathRatio-tooltip=傷害除以死亡
|
||||
KillDeathRatio=撃殺死亡比
|
||||
KillDeathRatio-tooltip=撃殺除以死亡
|
||||
SessionTime=平均遊玩時間
|
||||
SessionTime-tooltip=平均遊玩時間
|
||||
BuildRatio=建築比
|
||||
BuildRatio-tooltip=建築次數除以拆除次數
|
||||
RocketPerHour=每小時火箭發射次數
|
||||
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
||||
TreeKillPerMinute=每分鐘樹木拆除數
|
||||
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
||||
NetPlayTime=淨遊玩時間
|
||||
NetPlayTime-tooltip=遊玩時間減掛機時間
|
||||
AFKTimeRatio=掛機時間比
|
||||
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
||||
Locale=語言
|
||||
Locale-tooltip=用戶介面語言
|
||||
@@ -1,16 +0,0 @@
|
||||
[expcore-data]
|
||||
description-preference=允許寫入資料。
|
||||
description-data=把用戶資料寫入電腦
|
||||
arg-option="All", "Statistics", "Settings", "Required" 之中
|
||||
set-preference=你的喜好已設定為 __1__ 。在你重新加入前將不會有任何改動。
|
||||
get-preference=你的喜好為 __1__ 。使用 /set-preference 來更改,使用 /save-data 來獲得一份資料副本。
|
||||
get-data=你的個人資料已寫入: factorio/script_output/expgaming_player_data.json
|
||||
data-failed=無法載入你的個人資料,任何改動將不會保存。
|
||||
data-restore=已載入你的個人資料,所有改動將會被保存。
|
||||
preference=儲存喜好
|
||||
preference-tooltip=那種資料將在退出時保存
|
||||
preference-value-tooltip=使用 /set-preference 來更換儲存喜好
|
||||
preference-All=所有資料都會被儲存
|
||||
preference-Statistics=只有數據, 設定和資料會被儲存
|
||||
preference-Settings=只有設定和資料會被儲存
|
||||
preference-Required=只有需要的資料會被儲存
|
||||
@@ -1,121 +0,0 @@
|
||||
[player-list]
|
||||
main-tooltip=用戶名單
|
||||
open-action-bar=選項
|
||||
close-action-bar=關閉選項
|
||||
reason-confirm=確認原因
|
||||
reason-entry=輸入原因
|
||||
goto-player=傳送到用戶
|
||||
bring-player=傳送用戶到自己
|
||||
report-player=舉報用戶
|
||||
jail-player=監禁用戶
|
||||
kick-player=踢除用戶
|
||||
ban-player=封禁用戶
|
||||
afk-time=__1__% 地圖時間\n上次移動: __2__
|
||||
open-map=__1__ __2__\n__3__\n按下打開地圖
|
||||
|
||||
[warp-list]
|
||||
main-caption=傳送陣清單 [img=info]
|
||||
main-tooltip=傳送陣清單
|
||||
sub-tooltip=傳送陣在 __1__ 秒內只能使用一次。 亦需在 __2__ 格之內使用\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
||||
sub-tooltip-current= - __1__ 你目前的傳送陣;
|
||||
sub-tooltip-connected= - __1__ 你可以到本傳送陣;
|
||||
sub-tooltip-different= - __1__ 該傳送陣未連接;
|
||||
sub-tooltip-cooldown= - __1__ 傳送冷卻中;
|
||||
sub-tooltip-not_available= - __1__ 你不在傳送陣範圍;
|
||||
sub-tooltip-bypass= - __1__ 你可以傳送到這裏;
|
||||
too-close=無法新建傳送陣; 太接近 __1__ 了
|
||||
too-close-to-water=無法新建傳送陣; 太接近水源了, 請移動 __1__ 格又或者填平該地方
|
||||
too-close-to-entities=無法新建傳送陣; 太接近其他東西, 請移動 __1__ 格又或者拆除該東西
|
||||
last-edit=最後由 __1__ 在 __2__ 更改\n按這在地圖上看
|
||||
add-tooltip=新建傳送陣
|
||||
confirm-tooltip=儲存更改
|
||||
cancel-tooltip=放棄更改
|
||||
edit-tooltip=現被 __1__ 修改中
|
||||
edit-tooltip-none=現沒有被人修改
|
||||
remove-tooltip=拆除傳送陣
|
||||
timer-tooltip=請等 __1__ 秒才再次傳送
|
||||
timer-tooltip-zero=你要等 __1__ 秒才可以再次傳送
|
||||
goto-tooltip=到 X __1__ Y __2__
|
||||
goto-bypass=到 X __1__ Y __2__, 繞行模式
|
||||
goto-bypass-different-network=到 X __1__ Y __2__, 繞行模式 (不同網絡)
|
||||
goto-same-warp=你已在該傳送陣
|
||||
goto-different-network=該傳送陣未連接, 你可使用電纜連接
|
||||
goto-cooldown=傳送冷卻中, 請等候冷卻
|
||||
goto-disabled=你不在傳送陣, 請移至任意傳送陣
|
||||
goto-edit=修改傳送陣圖案
|
||||
|
||||
[bonus]
|
||||
description=取得 / 設定 Bonus 量。
|
||||
arg-amount=Bonus 數量, 0 來停用。
|
||||
set=你的 Bonus 已設為 __1__。
|
||||
get=你的 Bonus 為 __1__。
|
||||
perm=你沒有足夠權限設多過 __1__。
|
||||
display-fmms=挖掘速度
|
||||
display-fmms-tooltip=勢力挖掘速度
|
||||
display-frs=跑步速度
|
||||
display-frs-tooltip=勢力跑步速度
|
||||
display-fcs=合成速度
|
||||
display-fcs-tooltip=勢力合成速度
|
||||
display-fisb=儲存位
|
||||
display-fisb-tooltip=勢力儲存位
|
||||
display-fhb=生命
|
||||
display-fhb-tooltip=勢力生命
|
||||
display-frdb=到達距離
|
||||
display-frdb-tooltip=勢力到達距離
|
||||
display-fwrsm=機械人速度
|
||||
display-fwrsm-tooltip=勢力機械人速度
|
||||
display-fwrbm=機械人電力
|
||||
display-fwrbm-tooltip=勢力機械人電力
|
||||
display-fwrsb=械人儲存
|
||||
display-fwrsb-tooltip=勢力機械人儲存
|
||||
display-ffrlm=機械人生命
|
||||
display-ffrlm-tooltip=勢力戰鬥機械人生命時間
|
||||
|
||||
[vlayer]
|
||||
main-tooltip=Vlayer 介面
|
||||
description-pbr=使用 Vlayer 為玩家電池充電
|
||||
description-vi=Vlayer 資訊
|
||||
pbr-not-running=vlayer 沒有運行
|
||||
display-item-solar=[img=entity/solar-panel] 太陽能板
|
||||
display-item-accumulator=[img=entity/accumulator] 蓄電池
|
||||
display-current-production=[virtual-signal=signal-P] 現時產能
|
||||
display-sustained-production=[virtual-signal=signal-S] 持續產能
|
||||
display-max-capacity=[virtual-signal=signal-C] 電池容量
|
||||
display-current-capacity=[virtual-signal=signal-E] 電池電量
|
||||
display-remaining-surface-area=[virtual-signal=signal-R] 餘下土地
|
||||
display-item-solar-tooltip=太陽能板數量
|
||||
display-item-accumulator-tooltip=蓄電池數量
|
||||
display-current-production-tooltip=現時電力產能
|
||||
display-sustained-production-tooltip=持續電力產能
|
||||
display-max-capacity-tooltip=電池最大容量
|
||||
display-current-capacity-tooltip=現時電池電量
|
||||
display-remaining-surface-area-tooltip=餘下土地。 放入堆填來增加
|
||||
steel-chest-detect=沒檢測到鋼箱
|
||||
steel-chest-empty=鋼箱不是空的
|
||||
control-refresh=刷新列表
|
||||
control-see=查看介面
|
||||
control-build=建造介面
|
||||
control-remove=拆除介面
|
||||
result-build=建造了
|
||||
result-remove=拆除了
|
||||
result-interface-location=__1__ 介面在 __2__
|
||||
interface-result=__1__ 在 __2__ __3__ __4__ 介面
|
||||
result-unable=無法建造 __1__ 介面,因 __2__
|
||||
result-multiple=檢測到多個鋼箱
|
||||
result-limit=超出最大限制
|
||||
result-space=空間不足
|
||||
control-type-energy=電力
|
||||
control-type-circuit=回路
|
||||
control-type-storage-input=放入箱
|
||||
control-type-storage-output=提取箱
|
||||
power-on-space-research=你要研究 [technology=__1__] 在 __2__ 級 才可使用太空平台 vlayer 功能。
|
||||
enter=現在進入 vlayer 區域選擇
|
||||
exit=已進入 vlayer 區域選擇
|
||||
|
||||
[toolbar]
|
||||
main-caption=工具箱
|
||||
main-tooltip=工具箱設定\n選上來設定喜好
|
||||
reset=重設
|
||||
toggle=啟用喜好
|
||||
move-up=向上
|
||||
move-down=向下
|
||||
@@ -2,6 +2,7 @@
|
||||
-- @data Greetings
|
||||
|
||||
local config = require("modules.exp_legacy.config.join_messages") --- @dep config.join_messages
|
||||
local config_server_detail = require("modules.exp_legacy.config.server_detail") --- @dep config.server_detail
|
||||
local Commands = require("modules/exp_commands")
|
||||
|
||||
--- Stores the join message that the player have
|
||||
@@ -18,7 +19,11 @@ CustomMessages:on_load(function(player_name, player_message)
|
||||
if custom_message then
|
||||
game.print(custom_message, { color = player.color })
|
||||
else
|
||||
player.print{ "join-message.greet", { "links.discord" } }
|
||||
player.print{
|
||||
"join-message.greet",
|
||||
config_server_detail["community_name"],
|
||||
config_server_detail["discord"]
|
||||
}
|
||||
end
|
||||
end)
|
||||
|
||||
|
||||
@@ -405,10 +405,10 @@ local vlayer_gui_control_build = Gui.define("vlayer_gui_control_build")
|
||||
width = 200,
|
||||
}:on_click(function(def, player, element)
|
||||
if SelectArea:stop(player) then
|
||||
player.print{ "vlayer.exit" }
|
||||
player.print{ "exp_util.selection_exit", { "vlayer.main-tooltip" } }
|
||||
else
|
||||
SelectArea:start(player)
|
||||
player.print{ "vlayer.enter" }
|
||||
player.print{ "exp_util.selection_enter", { "vlayer.main-tooltip" } }
|
||||
end
|
||||
|
||||
vlayer_gui_list_refresh(player)
|
||||
|
||||
Reference in New Issue
Block a user