1
1

tweaks: capitalize the word "nano" when at the start of a sentence

As is done in two other messages.
Этот коммит содержится в:
Benno Schulenberg 2018-10-23 19:42:07 +02:00
родитель 280ac81b31
Коммит e901387b72

Просмотреть файл

@ -357,7 +357,7 @@ void *nmalloc(size_t howmuch)
void *r = malloc(howmuch);
if (r == NULL && howmuch != 0)
die(_("nano is out of memory!\n"));
die(_("Nano is out of memory!\n"));
return r;
}
@ -369,7 +369,7 @@ void *nrealloc(void *ptr, size_t howmuch)
void *r = realloc(ptr, howmuch);
if (r == NULL && howmuch != 0)
die(_("nano is out of memory!\n"));
die(_("Nano is out of memory!\n"));
return r;
}