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.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. "Dysk rozruchowy Instalatora systemu Windows XP",
  33. "Windows XP - dysk instalacyjny nr 2",
  34. "Windows XP - dysk instalacyjny nr 3",
  35. "Windows XP - dysk instalacyjny nr 4",
  36. "Nie mo�na znale�� pliku %s\n",
  37. "Za ma�o wolnej pami�ci do wykonania ��dania\n",
  38. "%s nie ma formatu pliku wykonywalnego\n",
  39. "****************************************************",
  40. "Ten program tworzy dyskietki rozruchowe Instalatora",
  41. "dla systemu Microsoft %s.",
  42. "Aby utworzy� te dyskietki, potrzebnych jest 6 pustych,",
  43. "sformatowanych dyskietek du�ej g�sto�ci.",
  44. "W��� jedn� z tych dyskietek do stacji dysk�w %c:. B�dzie to",
  45. "%s.",
  46. "W��� kolejn� dyskietk� do stacji dysk�w %c:. B�dzie to",
  47. "%s.",
  48. "Naci�nij dowolny klawisz, gdy zechcesz kontynuowa�.",
  49. "Dyskietki rozruchowe Instalatora zosta�y utworzone pomy�lnie.",
  50. "zako�czono",
  51. "Podczas pr�by wykonania %s wyst�pi� nieznany b��d.",
  52. "Okre�l stacj� dyskietek, do kt�rej maj� by� skopiowane obrazy: ",
  53. "Nieprawid�owa litera stacji dysk�w\n",
  54. "Stacja dysk�w %c: nie jest stacj� dyskietek\n",
  55. "Czy chcesz ponownie spr�bowa� utworzy� t� dyskietk�?",
  56. "Naci�nij klawisz Enter, aby ponowi� pr�b�, lub klawisz Esc, aby zako�czy�.",
  57. "B��d: dysk jest zabezpieczony przed zapisem\n",
  58. "B��d: nieznana jednostka dyskowa\n",
  59. "B��d: stacja dysk�w nie jest gotowa\n",
  60. "B��d: nieznane polecenie\n",
  61. "B��d: b��d danych (z�a suma kontrolna CRC)\n",
  62. "B��d: z�a d�ugo�� struktury ��dania\n",
  63. "B��d: b��d wyszukiwania\n",
  64. "B��d: nie znaleziono typu no�nika\n",
  65. "B��d: nie znaleziono sektora\n",
  66. "B��d: niepowodzenie zapisu\n",
  67. "B��d: b��d og�lny\n",
  68. "B��d: nieprawid�owe ��danie lub z�e polecenie\n",
  69. "B��d: nie znaleziono znacznika adresu\n",
  70. "B��d: niepowodzenie zapisu na dysku\n",
  71. "B��d: przepe�nienie podczas bezpo�redniego dost�pu do pami�ci (DMA)\n",
  72. "B��d: b��d odczytu danych (suma kontrolna CRC lub ECC)\n",
  73. "B��d: b��d kontrolera\n",
  74. "B��d: up�yn�� limit czasu dysku lub dysk nie odpowiada\n",
  75. "Windows XP - dysk instalacyjny nr 5",
  76. "Windows XP - dysk instalacyjny nr 6",
  77. "Windows XP - dysk instalacyjny nr 7"
  78. };
  79. const char *LocStrings[] = {"\0"};