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.

93 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 = 852;
  30. const char *EngStrings[] = {
  31. "Windows XP",
  32. "Spou�t�c� instala�n� disketa syst�mu Windows XP",
  33. "Instala�n� disketa �. 2 syst�mu Windows XP",
  34. "Instala�n� disketa �. 3 syst�mu Windows XP",
  35. "Instala�n� disketa �. 4 syst�mu Windows XP",
  36. "Nepoda�ilo se nal�zt soubor %s.\n",
  37. "Pro dokon�en� po�adavku nen� dostatek pam�ti.\n",
  38. "%s nen� spustiteln� soubor.\n",
  39. "****************************************************",
  40. "Tento program vytvo�� spou�t�c� instala�n� diskety",
  41. "pro syst�m Microsoft %s.",
  42. "K vytvo�en� t�chto disket budete pot�ebovat sedm pr�zdn�ch,",
  43. "naform�tovan�ch disket s vysokou hustotou z�znamu.",
  44. "Vlo�te jednu z disket do jednotky %c:. Pojmenujte disketu",
  45. "%s.",
  46. "Vlo�te dal�� disketu do jednotky %c:. Pojmenujte disketu",
  47. "%s.",
  48. "Pot� stiskn�te libovolnou kl�vesu.",
  49. "Spou�t�c� instala�n� diskety byly �sp��n� vytvo�eny.",
  50. "Dokon�eno",
  51. "P�i pokusu spustit %s do�lo k nezn�m� chyb�.",
  52. "Zadejte c�lovou disketovou jednotku pro zkop�rov�n� bitov�ch kopi�: ",
  53. "P�smeno jednotky je neplatn�.\n",
  54. "Jednotka %c: nen� disketov� jednotka.\n",
  55. "Chcete se pokusit vytvo�it disketu znovu?",
  56. "Pokra�ujte stisknut�m kl�vesy Enter, nebo kl�vesou Esc program ukon�ete.",
  57. "Chyba: Disk je chr�n�n proti z�pisu.\n",
  58. "Chyba: Nezn�m� diskov� jednotka.\n",
  59. "Chyba: Jednotka nen� p�ipravena.\n",
  60. "Chyba: Nezn�m� p��kaz.\n",
  61. "Chyba: Chyba dat (chybn� kontroln� sou�et CRC).\n",
  62. "Chyba: Chybn� d�lka ��dosti.\n",
  63. "Chyba: Chyba vystaven�.\n",
  64. "Chyba: Typ m�dia nebyl nalezen.\n",
  65. "Chyba: Sektor nebyl nalezen.\n",
  66. "Chyba: Chyba z�pisu.\n",
  67. "Chyba: Obecn� chyba.\n",
  68. "Chyba: Neplatn� ��dost nebo chybn� p��kaz.\n",
  69. "Chyba: Adresn� zna�ka nebyla nalezena.\n",
  70. "Chyba: Chyba z�pisu na disk.\n",
  71. "Chyba: Do�lo k p�eb�hu DMA (Direct Memory Access).\n",
  72. "Chyba: Chyba �ten� dat (chybn� CRC nebo ECC).\n",
  73. "Chyba: Chyba �adi�e.\n",
  74. "Chyba: �asov� limit diskov� operace vypr�el nebo disk neodpov�d�l.\n",
  75. "Instala�n� disketa �. 5 syst�mu Windows XP",
  76. "Instala�n� disketa �. 6 syst�mu Windows XP",
  77. "Instala�n� disketa �. 7 syst�mu Windows XP"
  78. };
  79. const char *LocStrings[] = {"\0"};