Unify two free diskspace error messages
Although they won't be the same in the gettext catalog because of the '\n' we should still use the same text. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
fe6e90c21f
commit
55bff19b76
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ const char SYMEXPORT *alpm_strerror(int err)
|
||||||
case PM_ERR_WRONG_ARGS:
|
case PM_ERR_WRONG_ARGS:
|
||||||
return _("wrong or NULL argument passed");
|
return _("wrong or NULL argument passed");
|
||||||
case PM_ERR_DISK_SPACE:
|
case PM_ERR_DISK_SPACE:
|
||||||
return _("not enough disk space");
|
return _("not enough free disk space");
|
||||||
/* Interface */
|
/* Interface */
|
||||||
case PM_ERR_HANDLE_NULL:
|
case PM_ERR_HANDLE_NULL:
|
||||||
return _("library not initialized");
|
return _("library not initialized");
|
||||||
|
|
Loading…
Add table
Reference in a new issue