Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
3.4 KiB

  1. //----------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1999 Microsoft Corporation
  4. // All rights reserved.
  5. //
  6. // File Name:
  7. // strings.c
  8. //
  9. // Description:
  10. // Contains all of the strings constants for DOS based MAKEBOOT program.
  11. //
  12. // To localize this file for a new language do the following:
  13. // - change the unsigned int CODEPAGE variable to the code page
  14. // of the language you are translating to
  15. // - translate the strings in the EngStrings array into the
  16. // LocStrings array. Be very careful that the 1st string in the
  17. // EngStrings array corresponds to the 1st string in the LocStrings
  18. // array, the 2nd corresponds to the 2nd, etc...
  19. //
  20. //----------------------------------------------------------------------------
  21. //
  22. // NOTE: To add more strings to this file, you need to:
  23. // - add the new #define descriptive constant to the makeboot.h file
  24. // - add the new string to the English language array and then make
  25. // sure localizers add the string to the Localized arrays
  26. // - the #define constant must match the string's index in the array
  27. //
  28. #include <stdlib.h>
  29. unsigned int CODEPAGE = 850;
  30. const char *EngStrings[] = {
  31. "Windows XP",
  32. "Disco de inicio de instalaci�n de Windows XP",
  33. "Disco de instalaci�n #2 de Windows XP",
  34. "Disco de instalaci�n #3 de Windows XP",
  35. "Disco de instalaci�n #4 de Windows XP",
  36. "No se encuentra el archivo %s\n",
  37. "Memoria insuficiente para satisfacer la solicitud\n",
  38. "%s no est� en un formato de archivo ejecutable\n",
  39. "****************************************************",
  40. "Este programa crea los discos de inicio de la instalaci�n",
  41. "para Microsoft %s.",
  42. "Para crearlos, necesita tener 7 discos",
  43. "de alta densidad formateados.",
  44. "Inserte uno de los discos en la unidad %c:. Este disco",
  45. "se convertir� en el %s.",
  46. "Inserte otro disco en la unidad %c:. Este disco se",
  47. "convertir� en el %s.",
  48. "Presione cualquier tecla cuando est� listo.",
  49. "Los discos de inicio de la instalaci�n se han creado correctamente.",
  50. "completo",
  51. "Error al intentar ejecutar %s.",
  52. "Especifique la unidad de disquete donde copiar las im�genes: ",
  53. "Letra de unidad no v�lida\n",
  54. "La unidad %c: no es una unidad de disquete\n",
  55. "�Desea volver a intentar crear este disco?",
  56. "Presione Entrar para volver a intentarlo o Esc para salir.",
  57. "Error: Disco protegido contra escritura\n",
  58. "Error: Unidad de disco desconocida\n",
  59. "Error: Unidad no preparada\n",
  60. "Error: Comando desconocido\n",
  61. "Error: Error de datos (CRC err�neo)\n",
  62. "Error: Longitud de estructura de solicitud err�nea\n",
  63. "Error: Error de b�squeda\n",
  64. "Error: No se encuentra el tipo de medio\n",
  65. "Error: No se encuentra el sector\n",
  66. "Error: Error de escritura\n",
  67. "Error: Error general\n",
  68. "Error: Solicitud no v�lida o comando err�neo\n",
  69. "Error: No se encuentra la marca de direcci�n\n",
  70. "Error: Error de escritura en el disco\n",
  71. "Error: Desbordamiento de Direct Memory Access (DMA)\n",
  72. "Error: Error de lectura de datos (CRC o ECC)\n",
  73. "Error: Error de la controladora\n",
  74. "Error: Tiempo de espera de disco agotado o no hay respuesta\n",
  75. "Disco 5 de instalaci�n de Windows XP"
  76. "Disco 6 de isntalaci�n de Windows XP"
  77. "Disco 7 de isntalaci�n de Windows XP"
  78. };
  79. const char *LocStrings[] = {"\0"};