Advertisement
deseven

tfce en locale

Dec 19th, 2016
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.21 KB | None | 0 0
  1. defStrings("translatedBy") = "Translated by John Doe"
  2. defStrings("thanksTo") = "Thanks to:"
  3.  
  4. -- basic interface
  5. defStrings("toolbarSave") = "Save"
  6. defStrings("toolbarRevert") = "Revert all parameters"
  7. defStrings("toolbarAbout") = "About"
  8. defStrings("constr") = "Construction"
  9. defStrings("towns") = "Towns"
  10. defStrings("world") = "World"
  11. defStrings("enable") = "Enable"
  12.  
  13. -- messages
  14. defStrings("wrongPath") = "Selected path is wrong. There is no base_config.lua file or it cannot be opened."
  15. defStrings("saveError") = "Failed to save config. File base_config.lua cannot be found or opened for writing."
  16. defStrings("missingValues") = "There are some missing values in your TF config file, please restore original base_config.lua by reinstalling the game or by running integrity check in Steam."
  17. defStrings("revertToDefaults") = "Do you really want to revert everything to defaults?"
  18.  
  19. -- world captions
  20. defStrings("millisPerDay") = "Game day length (ms): "
  21. defStrings("areaPerTown") = "Area per town (km²): "
  22. defStrings("areaPerIndustry") = "Area per industry (km²): "
  23. defStrings("enforceMainConnections") = "Enforce main connections: "
  24. defStrings("forestLevel") = "Forest frequency: "
  25. defStrings("forestDensity") = "Forest density: "
  26. defStrings("singleDensity") = "Single tree frequency: "
  27. defStrings("treeLine") = "Maximum forest growth height (m): "
  28.  
  29. -- world help
  30. defStrings("helpMillisPerDay") = "Make it lower or higher if you want to alter game speed, however keep in mind that economics system will adapt to this"
  31. defStrings("helpAreaPerTown") = "Lower values creates more towns, bigger values create less towns"
  32. defStrings("helpAreaPerIndustry") = "Lower values creates more industries, bigger values create less industries"
  33. defStrings("helpEnforceMainConnections") = "This forces you to have roads between towns/industries"
  34. defStrings("helpForestLevel") = "How many forests will be generated on a map, be careful as it may slow down your game"
  35. defStrings("helpForestDensity") = "Tree density in generated forests, be careful as it may slow down your game"
  36. defStrings("helpSingleDensity") = "Basically a number of single trees on a map, be careful as it may slow down your game"
  37. defStrings("helpTreeLine") = "Trees won't grow at places which are located higher than this value"
  38.  
  39. -- towns captions
  40. defStrings("townSizeFactor") = "Town size: "
  41. defStrings("townGrowthFactor") = "Town growth factor: "
  42. defStrings("townGrowthExponent") = "Town growth exponent: "
  43. defStrings("maxTownSize") = "Maximum town population (citizens): "
  44. defStrings("makeInitialStreets") = "Generate roads between towns: "
  45. defStrings("townMajorStreetAngleRange") = "Streets angle randomization (deg): "
  46.  
  47. -- towns help
  48. defStrings("helpTownSizeFactor") = "Starting town size"
  49. defStrings("helpTownGrowthFactor") = "That literally determines a town growth rate :)"
  50. defStrings("helpTownGrowthExponent") = "This value determines how town growth changes over time, use 100% to disable"
  51. defStrings("helpMaxTownSize") = "Max population in a town, use 0 for unlimited (which is the default value anyway)"
  52. defStrings("helpMakeInitialStreets") = "This should disable the creation of roads between towns (and industries), but it works somehow strange, be careful"
  53. defStrings("helpTownMajorStreetAngleRange") = "This adds some kind of randomization in city generation and development, by altering major town streets angle to the random value between 0 and defined amount of degrees"
  54.  
  55. -- construction captions
  56. defStrings("industryButton") = "Allow to build industries: "
  57. defStrings("tramCatenaryYearFrom") = "Tram catenary available from: "
  58. defStrings("trackCatenaryYearFrom") = "Track catenary available from: "
  59. defStrings("busLaneYearFrom") = "Bus lane available from: "
  60.  
  61. -- construction help
  62. defStrings("helpIndustryButton") = "If enabled you can build industries in-game, like stations or depots"
  63. defStrings("helpTramCatenaryYearFrom") = "This setting determines at which year you can start to use catenaries for tram tracks"
  64. defStrings("helpTrackCatenaryYearFrom") = "This setting determines at which year you can start to use catenaries for railroad tracks"
  65. defStrings("helpBusLaneYearFrom") = "This setting determines at which year you can start to use dedicated bus lanes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement