winio.c:do_credits() - Add Thomas Dickey
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1131 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
b83e61aea0
commit
dce44abec7
|
@ -26,7 +26,11 @@ CVS code -
|
||||||
search_init()
|
search_init()
|
||||||
- Fix a missing free (Rocco).
|
- Fix a missing free (Rocco).
|
||||||
- utils.c:
|
- utils.c:
|
||||||
stristr() - Defined regardless of NANO_SMALL (noticed by Jordi).
|
stristr()
|
||||||
|
- Defined regardless of NANO_SMALL (noticed by Jordi).
|
||||||
|
- winio.c:
|
||||||
|
do_credits()
|
||||||
|
- Add Thomas Dickey.
|
||||||
- po/sv.po:
|
- po/sv.po:
|
||||||
- Swedish translation updates (Christian Rose).
|
- Swedish translation updates (Christian Rose).
|
||||||
- po/de.po:
|
- po/de.po:
|
||||||
|
|
9
winio.c
9
winio.c
|
@ -1871,7 +1871,7 @@ void do_replace_highlight(int highlight_flag, char *word)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef NANO_EXTRA
|
#ifdef NANO_EXTRA
|
||||||
#define CREDIT_LEN 48
|
#define CREDIT_LEN 52
|
||||||
void do_credits(void)
|
void do_credits(void)
|
||||||
{
|
{
|
||||||
int i, j = 0, k, place = 0, start_x;
|
int i, j = 0, k, place = 0, start_x;
|
||||||
|
@ -1882,8 +1882,7 @@ void do_credits(void)
|
||||||
char *brought = _("Brought to you by:");
|
char *brought = _("Brought to you by:");
|
||||||
char *specialthx = _("Special thanks to:");
|
char *specialthx = _("Special thanks to:");
|
||||||
char *fsf = _("The Free Software Foundation");
|
char *fsf = _("The Free Software Foundation");
|
||||||
char *ncurses =
|
char *ncurses = _("For ncurses:");
|
||||||
_("Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses");
|
|
||||||
char *anyonelse = _("and anyone else we forgot...");
|
char *anyonelse = _("and anyone else we forgot...");
|
||||||
char *thankyou = _("Thank you for using nano!\n");
|
char *thankyou = _("Thank you for using nano!\n");
|
||||||
|
|
||||||
|
@ -1923,6 +1922,10 @@ void do_credits(void)
|
||||||
fsf,
|
fsf,
|
||||||
"Linus Torvalds",
|
"Linus Torvalds",
|
||||||
ncurses,
|
ncurses,
|
||||||
|
"Thomas Dickey",
|
||||||
|
"Pavel Curtis",
|
||||||
|
"Zeyd Ben-Halim",
|
||||||
|
"Eric S. Raymond",
|
||||||
anyonelse,
|
anyonelse,
|
||||||
thankyou,
|
thankyou,
|
||||||
"", "", "", "",
|
"", "", "", "",
|
||||||
|
|
Loading…
Reference in New Issue