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.

98 lines
3.3 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. "Windows XP Setup-opstartdiskette",
  33. "Windows XP Setup-diskette 2",
  34. "Windows XP Setup-diskette 3",
  35. "Windows XP Setup-diskette 4",
  36. "Kan het bestand %s niet vinden\n",
  37. "Onvoldoende geheugen om de aanvraag te voltooien\n",
  38. "%s heeft geen indeling als uitvoerbaar bestand\n",
  39. "****************************************************",
  40. "Dit programma maakt de Setup-diskettes",
  41. "voor Microsoft %s.",
  42. "U hebt 7 lege, geformatteerde diskettes met een hoge",
  43. "dichtheid nodig om de Setup-diskettes te kunnen maken.",
  44. "Plaats een van de diskettes in station %c:.",
  45. "Deze diskette wordt: %s.",
  46. "Plaats een andere diskette in station %c:.",
  47. "Deze diskette wordt: %s.",
  48. "Druk op een toets als u de diskette nu wilt maken.",
  49. "De Setup-diskettes zijn gemaakt.",
  50. "voltooid",
  51. "Er is een onbekende fout opgetreden tijdens het\nuitvoeren van %s.",
  52. "Geef op naar welke diskette de installatiekopie\nmoet worden gekopieerd: ",
  53. "Ongeldige stationsletter\n",
  54. "Station %c: is geen diskettestation\n",
  55. "Wilt u opnieuw proberen deze diskette te maken?",
  56. "Druk op Enter als u het opnieuw wilt proberen of\nop Esc als u dit niet wilt.",
  57. "Fout: de diskette is tegen schrijven beveiligd\n",
  58. "Fout: onbekende indelingseenheid op de diskette\n",
  59. "Fout: het station is niet gereed\n",
  60. "Fout: onbekende opdracht\n",
  61. "Fout: gegevensfout (ongeldige CRC)\n",
  62. "Fout: ongeldige structuurlengte van de aanvraag\n",
  63. "Fout: zoekfout\n",
  64. "Fout: mediumtype niet gevonden\n",
  65. "Fout: sector niet gevonden\n",
  66. "Fout: schrijffout\n",
  67. "Fout: algemene fout\n",
  68. "Fout: ongeldige aanvraag of opdracht\n",
  69. "Fout: kan adresmarkering niet vinden\n",
  70. "Fout: fout bij het schrijven\n",
  71. "Fout: DMA-overloop (Direct Memory Access)\n",
  72. "Fout: fout bij het lezen van gegevens (CRC of ECC)\n",
  73. "Fout: storing bij de controller\n",
  74. "Fout: time-out van de diskette of kan niet reageren\n",
  75. "Windows XP Setup-diskette 5"
  76. "Windows XP Setup-diskette 6"
  77. "Windows XP Setup-diskette 7"
  78. };
  79. const char *LocStrings[] = {"\0"};