mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 23:09:08 +00:00
Meta: Scale back overly informal user-facing strings
We were getting a little overly memey in some places, so let's scale things back to business-casual. Informal language is fine in comments, commits and debug logs, but let's keep the runtime nice and presentable. :^)
This commit is contained in:
parent
d7bf609376
commit
723f4e5ee6
Notes:
sideshowbarker
2024-07-19 05:35:53 +09:00
Author: https://github.com/awesomekling
Commit: 723f4e5ee6
8 changed files with 15 additions and 33 deletions
|
@ -339,7 +339,7 @@ int Shell::builtin_exit(int, const char**)
|
|||
{
|
||||
if (!jobs.is_empty()) {
|
||||
if (!m_should_ignore_jobs_on_next_exit) {
|
||||
printf("Shell: Hey dude, you have %zu active job%s, run 'exit' again to really exit.\n", jobs.size(), jobs.size() > 1 ? "s" : "");
|
||||
printf("Shell: You have %zu active job%s, run 'exit' again to really exit.\n", jobs.size(), jobs.size() > 1 ? "s" : "");
|
||||
m_should_ignore_jobs_on_next_exit = true;
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue