stringtable.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. 3APA3A simpliest proxy server
  3. (c) 2002-2016 by Vladimir Dubrovin <3proxy@3proxy.ru>
  4. please read License Agreement
  5. */
  6. #include <stdio.h>
  7. #include "version.h"
  8. char * strings[] = {
  9. /* 00 */ "3proxy tiny proxy server " VERSION " stringtable file",
  10. /* 01 */ "3proxy",
  11. /* 02 */ "3proxy tiny proxy server",
  12. /* 03 */ VERSION " (" BUILDDATE ")",
  13. /* 04 */ "3proxy allows to share and control Internet connection and count traffic",
  14. /* 05 */ "SERVR",
  15. /* 06 */ "PROXY",
  16. /* 07 */ "TCPPM",
  17. /* 08 */ "POP3P",
  18. /* 09 */ "SOCK4",
  19. /* 10 */ "SOCK5",
  20. /* 11 */ "UDPPM",
  21. /* 12 */ "SOCKS",
  22. /* 13 */ "SOC45",
  23. /* 14 */ "ADMIN",
  24. /* 15 */ "DNSPR",
  25. /* 16 */ "FTPPR",
  26. /* 17 */ "SMTPP",
  27. /* 18 */ "ZOMBIE",
  28. /* 19 */ NULL,
  29. /* 20 */ NULL,
  30. /* 21 */ NULL,
  31. /* 22 */ NULL,
  32. /* 23 */ NULL,
  33. /* 24 */ NULL,
  34. #ifndef TPROXY_CONF
  35. #ifndef _WIN32
  36. /* 25 */ "/usr/local/etc/3proxy/3proxy.cfg",
  37. #else
  38. /* 25 */ "3proxy.cfg",
  39. #endif
  40. #else
  41. /* 25 */ TPROXY_CONF,
  42. #endif
  43. /* 26 */ NULL,
  44. /* 27 */ NULL,
  45. /* 28 */ NULL,
  46. /* 29 */ NULL,
  47. /* 30 */ NULL,
  48. /* 31 */ NULL,
  49. /* 32 */ NULL,
  50. /* 33 */ NULL,
  51. /* 34 */ NULL,
  52. /* 35 */
  53. "<table align=\"center\" width=\"75%\"><tr><td>\n"
  54. "<h3>Welcome to 3proxy Web Interface</h3>\n"
  55. "Probably you've noticed interface is very ugly currently.\n"
  56. "It's because you have development version of 3proxy and interface\n"
  57. "is coded right now. What you see is a part of work that is done\n"
  58. "already.\n"
  59. "<p>Please send all your comments to\n"
  60. "<A HREF=\"mailto:3proxy@security.nnov.ru\">3proxy@security.nnov.ru</A>\n"
  61. "<p>Documentation:\n"
  62. "<A HREF=\"http://3proxy.ru/\">http://3proxy.ru/</A>\n"
  63. "</tr></td></table>",
  64. /* 36 */ NULL,
  65. /* 37 */ NULL,
  66. /* 38 */ NULL,
  67. /* 39 */ NULL,
  68. /* 40 */ NULL,
  69. /* 41 */ NULL,
  70. /* 42 */ NULL,
  71. /* 43 */ NULL,
  72. /* 44 */ NULL,
  73. };
  74. int constants[] = {0,0};