mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 01:37:18 +02:00
17 lines
564 B
Python
17 lines
564 B
Python
exit_msg = (
|
|
"System map count is not high enough to run DayZ. "
|
|
"Please exit and run 'dzgui -m' to update map count."
|
|
)
|
|
failed_to_parse = (
|
|
"Failed to parse system map count.\n"
|
|
"This usually indicates that systemd is not installed."
|
|
)
|
|
failed_to_update = (
|
|
"Failed to update system map count.\n"
|
|
"Please report the issue upstream and provide the following traceback.\n\n"
|
|
"{0}"
|
|
)
|
|
meets_minimum = "System map count of {0} already meets the minimum."
|
|
prompt = "Updated map count will be written to the file {0}."
|
|
user_exit = "User exit"
|