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 = 857;
  30. const char *EngStrings[] = {
  31. "Windows XP",
  32. "Windows XP Kurulum �ny�kleme Disketi",
  33. "Windows XP Kurulum Disketi #2",
  34. "Windows XP Kurulum Disketi #3",
  35. "Windows XP Kurulum Disketi #4",
  36. "%s dosyas� bulunam�yor\n",
  37. "�ste�i tamamlamak i�in yeterli bellek yok\n",
  38. "%s �al��t�r�labilir dosya bi�iminde de�il\n",
  39. "****************************************************",
  40. "Bu program, �unun i�in Kurulum �ny�kleme disketleri olu�turur:",
  41. "Microsoft %s.",
  42. "Bu disketleri olu�turmak i�in bi�imlendirilmi�, y�ksek yo�unlukta",
  43. "7 bo� disket gerekir.",
  44. "Bu disketlerden birini %c: s�r�c�s�ne yerle�tirin. Bu",
  45. "disket %s olur.",
  46. "%c: s�r�c�s�ne ba�ka bir disket yerle�tirin. Bu",
  47. "disket %s olur.",
  48. "Haz�r oldu�unuzda bir tu�a bas�n.",
  49. "Kur �ny�kleme disketleri ba�ar�yla olu�turuldu.",
  50. "tamamland�",
  51. "%s �al��t�r�lmas� denenirken bilinmeyen bir hata olu�tu.",
  52. "Yans�malar�n kopyalanaca�� disket s�r�c�s�n� belirtin: ",
  53. "Ge�ersiz s�r�c� harfi\n",
  54. "%c: bir disket s�r�c�s� de�ildir\n",
  55. "Bu disketi yeniden olu�turmay� denemek istiyor musunuz?",
  56. "Yeniden denemek i�in Enter'e, ��kmak i�in Esc'ye bas�n.",
  57. "Hata: Disket yazma korumal�\n",
  58. "Hata: Bilinmeyen disket birimi\n",
  59. "Hata: S�r�c� haz�r de�il\n",
  60. "Hata: Bilinmeyen komut\n",
  61. "Hata: Veri hatas� (Hatal� CRC)\n",
  62. "Hata: Hatal� istek yap�s� uzunlu�u\n",
  63. "Hata: Arama hatas�\n",
  64. "Hata: Ortam t�r� bulunamad�\n",
  65. "Hata: Kesim bulunamad�\n",
  66. "Hata: Yazma hatas�\n",
  67. "Hata: Genel hata\n",
  68. "Hata: Ge�ersiz istek ya da hatal� komut\n",
  69. "Hata: Adres i�areti bulunamad�\n",
  70. "Hata: Disk yazma hatas�\n",
  71. "Hata: Do�rudan Bellek Eri�imi (DMA) ta�mas�\n",
  72. "Hata: Veri okuma (CRC ya da ECC) hatas�\n",
  73. "Hata: Denetleyici hatas�\n",
  74. "Hata: Disk zaman a��m�na u�rad� ya da yan�tlayamad�\n",
  75. "Windows XP Kurulum Disketi #5",
  76. "Windows XP Kurulum Disketi #6"
  77. "Windows XP Kurulum Disketi #7"
  78. };
  79. const char *LocStrings[] = {"\0"};