mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
Getting rid of gettext, moved some _(..) texts to themes and left some error
messages hard coded. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1503 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
fe5c94b050
commit
c2b2d45bd6
28 changed files with 61 additions and 950 deletions
|
|
@ -540,13 +540,13 @@ const char *net_gethosterror(int error)
|
|||
#else
|
||||
switch (error) {
|
||||
case HOST_NOT_FOUND:
|
||||
return _("Host not found");
|
||||
return "Host not found";
|
||||
case NO_ADDRESS:
|
||||
return _("No IP address found for name");
|
||||
return "No IP address found for name";
|
||||
case NO_RECOVERY:
|
||||
return _("A non-recovable name server error occurred");
|
||||
return "A non-recovable name server error occurred";
|
||||
case TRY_AGAIN:
|
||||
return _("A temporary error on an authoritative name server");
|
||||
return "A temporary error on an authoritative name server";
|
||||
}
|
||||
|
||||
/* unknown error */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue