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 = 850;
  30. const char *EngStrings[] = {
  31. "Windows XP",
  32. "Disco di avvio dell'installazione di Windows XP",
  33. "Disco 2 - Installazione di Windows XP",
  34. "Disco 3 - Installazione di Windows XP",
  35. "Disco 4 - Installazione di Windows XP",
  36. "Impossibile trovare file %s\n",
  37. "Memoria insufficiente per completare la richiesta\n",
  38. "%s: formato file non eseguibile\n",
  39. "****************************************************",
  40. "Questo programma crea dischi di installazione",
  41. "per Microsoft %s.",
  42. "Per creare questi dischi sono necessari 7 dischi floppy,",
  43. "ad alta densit�, formattati e vuoti.",
  44. "Inserire un disco nell'unit� %c:. Questo disco",
  45. "diverr� il %s.",
  46. "Inserire un altro disco nell'unit� %c:. Questo disco",
  47. "diverr� il %s.",
  48. "Premere un tasto per continuare.",
  49. "I dischi di avvio dell'installazione sono stati creati",
  50. "completato",
  51. "Errore sconosciuto durante l'esecuzione di %s.",
  52. "Specificare l'unit� floppy su cui copiare l'immagine: ",
  53. "Lettera di unit� non valida\n",
  54. "L'unit� %c: non � un'unit� floppy\n",
  55. "Creare di nuovo questo floppy?",
  56. "Premere INVIO per riprovare o ESC per uscire.",
  57. "Errore: disco protetto da scrittura\n",
  58. "Errore: unit� disco sconosciuta\n",
  59. "Errore: unit� non pronta\n",
  60. "Errore: comando sconosciuto\n",
  61. "Errore: errore di dati (CRC errato)\n",
  62. "Errore: lunghezza struttura richiesta errata\n",
  63. "Errore: errore ricerca\n",
  64. "Errore: tipo supporto non trovato\n",
  65. "Errore: settore non trovato\n",
  66. "Errore: errore scrittura\n",
  67. "Errore: errore generale\n",
  68. "Errore: richiesta non valida o comando errato\n",
  69. "Errore: segno indirizzo non trovato\n",
  70. "Errore: errore scrittura disco\n",
  71. "Errore: sovraccarico Direct Memory Access (DMA)\n",
  72. "Errore: errore lettura dati (CRC o ECC)\n",
  73. "Errore: errore controller\n",
  74. "Errore: timeout o mancata risposta del disco\n",
  75. "Disco 5 - Installazione di Windows XP",
  76. "Disco 6 - Installazione di Windows XP",
  77. "Disco 7 - Installazione di Windows XP"
  78. };
  79. const char *LocStrings[] = {"\0"};