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.2 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. "Windows XP telep�t�si ind�t�lemez",
  33. "Windows XP - 2. sz. telep�t�lemez",
  34. "Windows XP - 3. sz. telep�t�lemez",
  35. "Windows XP - 4. sz. telep�t�lemez",
  36. "Nem tal�lhat� a k�vetkez� f�jl: %s\n",
  37. "Nincs el�g mem�ria a k�relem befejez�s�hez\n",
  38. "%s nem v�grehajthat� form�tum�\n",
  39. "****************************************************",
  40. "Ez a program hozza l�tre a telep�t�si ind�t�lemezeket a",
  41. "k�vetkez�h�z: Microsoft %s.",
  42. "A lemezek l�trehoz�s�hoz h�t �res, form�zott, nagykapacit�s�",
  43. "lemezre lesz sz�ks�g.",
  44. "Helyezze be a lemezek egyik�t a k�vetkez� meghajt�ba: %c:. Ez a",
  45. "lemez lesz a %s.",
  46. "Helyezzen be egy m�sik lemezt a k�vetkez� meghajt�ba: %c:. Ez a",
  47. "lemez lesz a %s.",
  48. "Ha elk�sz�lt, nyomjon le egy billenty�t.",
  49. "A telep�t�si ind�t�lemezek l�trehoz�sa sikeren megt�rt�nt.",
  50. "k�sz",
  51. "Ismeretlen hiba t�rt�nt %s v�grehajt�sa k�zben.",
  52. "Adja meg, mely hajl�konylemezre szeretn� m�solni a programk�dot: ",
  53. "�rv�nytelen meghajt�bet�jel\n",
  54. "%c: meghajt� nem hajl�konylemezmeghajt�\n",
  55. "Megpr�b�lja �jra l�trehozni a hajl�konylemezt?",
  56. "Az �jrapr�b�lkoz�shoz nyomja le az Enter, a kil�p�shez az Esc billenty�t.",
  57. "Hiba: A lemez �r�sv�dett\n",
  58. "Hiba: Ismeretlen lemezegys�g\n",
  59. "Hiba: A meghajt� nem �ll k�szen\n",
  60. "Hiba: Ismeretlen parancs\n",
  61. "Hiba: Adathiba (rossz CRC)\n",
  62. "Hiba: Rossz a k�relemstrukt�ra hossza\n",
  63. "Hiba: Pozicion�l�si hiba\n",
  64. "Hiba: A m�diat�pus nem tal�lhat�\n",
  65. "Hiba: A szektor nem tal�lhat�\n",
  66. "Hiba: �r�si hiba\n",
  67. "Hiba: �ltal�nos hiba\n",
  68. "Hiba: �rv�nytelen k�relem, vagy rossz hiba\n",
  69. "Hiba: A c�mjel nem tal�lhat�\n",
  70. "Hiba: Lemez�r�si hiba\n",
  71. "Hiba: K�zvetlen mem�riahozz�f�r�s (DMA) t�lfut�sa\n",
  72. "Hiba: Adathiba (CRC vagy ECC)\n",
  73. "Hiba: Vez�rl�hiba\n",
  74. "Hiba: A lemez ideje lej�rt, vagy nem v�laszolt\n",
  75. "Windows XP - 5. sz. telep�t�lemez",
  76. "Windows XP - 6. sz. telep�t�lemez",
  77. "Windows XP - 7. sz. telep�t�lemez"
  78. };
  79. const char *LocStrings[] = {"\0"};