You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/settings_translation_file.cpp
+26-6
Original file line number
Diff line number
Diff line change
@@ -405,12 +405,6 @@ fake_function() {
405
405
gettext("Advanced");
406
406
gettext("Deprecated Lua API handling");
407
407
gettext("Handling for deprecated lua api calls:\n- legacy: (try to) mimic old behaviour (default for release).\n- log: mimic and log backtrace of deprecated call (default for debug).\n- error: abort on usage of deprecated call (suggested for mod developers).");
408
-
gettext("Mod profiling");
409
-
gettext("Useful for mod developers.");
410
-
gettext("Detailed mod profiling");
411
-
gettext("Detailed mod profile data. Useful for mod developers.");
412
-
gettext("Profiling print interval");
413
-
gettext("Profiler data print interval. 0 = disable. Useful for developers.");
414
408
gettext("Max. clearobjects extra blocks");
415
409
gettext("Number of extra blocks that can be loaded by /clearobjects at once.\nThis is a trade-off between sqlite transaction overhead and\nmemory consumption (4096=100MB, as a rule of thumb).");
416
410
gettext("Unload unused server data");
@@ -600,6 +594,30 @@ fake_function() {
600
594
gettext("Comma-separated list of trusted mods that are allowed to access insecure\nfunctions even when mod security is on (via request_insecure_environment()).");
601
595
gettext("HTTP Mods");
602
596
gettext("Comma-seperated list of mods that are allowed to access HTTP APIs, which\nallow them to upload and download data to/from the internet.");
597
+
gettext("Advanced");
598
+
gettext("Profiling");
599
+
gettext("Load the game profiler");
600
+
gettext("Load the game profiler to collect game profiling data.\nProvides a /profiler command to access the compiled profile.\nUseful for mod developers and server operators.");
601
+
gettext("Default report format");
602
+
gettext("The default format in which profiles are being saved,\nwhen calling `/profiler save [format]` without format.");
603
+
gettext("Report path");
604
+
gettext("The file path relative to your worldpath in which profiles will be saved to.\n");
605
+
gettext("Instrumentation");
606
+
gettext("Entity methods");
607
+
gettext("Instrument the methods of entities on registration.");
608
+
gettext("Active Block Modifiers");
609
+
gettext("Instrument the action function of Active Block Modifiers on registration.");
610
+
gettext("Loading Block Modifiers");
611
+
gettext("Instrument the action function of Loading Block Modifiers on registration.");
612
+
gettext("Chatcommands");
613
+
gettext("Instrument chatcommands on registration.");
614
+
gettext("Global callbacks");
615
+
gettext("Instrument global callback functions on registration.\n(anything you pass to a minetest.register_*() function)");
616
+
gettext("Advanced");
617
+
gettext("Builtin");
618
+
gettext("Instrument builtin.\nThis is usually only needed by core/builtin contributors");
619
+
gettext("Profiler");
620
+
gettext("Have the profiler instrument itself:\n* Instrument an empty function.\nThis estimates the overhead, that instrumentation is adding (+1 function call).\n* Instrument the sampler being used to update the statistics.");
603
621
gettext("Client and Server");
604
622
gettext("Player name");
605
623
gettext("Name of the player.\nWhen running a server, clients connecting with this name are admins.\nWhen starting from the main menu, this is overridden.");
@@ -625,4 +643,6 @@ fake_function() {
625
643
gettext("Modstore download URL");
626
644
gettext("Modstore mods list URL");
627
645
gettext("Modstore details URL");
646
+
gettext("Engine profiling data print interval");
647
+
gettext("Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers.");
0 commit comments