2025-04-27 07:49:33 -04:00

98 lines
3.1 KiB
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//----------------------------------------------------------------------------
//
// Copyright (c) 1999 Microsoft Corporation
// All rights reserved.
//
// File Name:
// strings.c
//
// Description:
// Contains all of the strings constants for DOS based MAKEBOOT program.
//
// To localize this file for a new language do the following:
// - change the unsigned int CODEPAGE variable to the code page
// of the language you are translating to
// - translate the strings in the EngStrings array into the
// LocStrings array. Be very careful that the 1st string in the
// EngStrings array corresponds to the 1st string in the LocStrings
// array, the 2nd corresponds to the 2nd, etc...
//
//----------------------------------------------------------------------------
//
// NOTE: To add more strings to this file, you need to:
// - add the new #define descriptive constant to the makeboot.h file
// - add the new string to the English language array and then make
// sure localizers add the string to the Localized arrays
// - the #define constant must match the string's index in the array
//
#include <stdlib.h>
unsigned int CODEPAGE = 850;
const char *EngStrings[] = {
"Windows XP SP1",
"Oppstartsdiskett for Windows XP SP1",
"Installasjonsdiskett 2 for Windows XP SP1",
"Installasjonsdiskett 3 for Windows XP SP1",
"Installasjonsdiskett 4 for Windows XP SP1",
"Finner ikke filen %s\n",
"Ikke nok minne til † fullfre foresprselen\n",
"%s er ikke i et kjrbart filformat\n",
"****************************************************",
"Dette programmet lager installasjonsdiskene",
"for Microsoft %s.",
"For † lage disse diskettene, trenger du 6 tomme og",
"formaterte disketter med hy tetthet.",
"Sett inn en av disse diskettene i stasjon %c:. Denne",
"disketten vil bli %s.",
"Sett inn en annen diskett i stasjon %c:. Denne",
"disketten vil bli %s.",
"Trykk en tast n†r du er klar.",
"Installasjonsdiskettene er opprettet.",
"fullfrt",
"Det har oppst†tt en ukjent feil ved forsk p† † kjre %s.",
"Angi diskettstasjonen avbildingene skal kopieres til: ",
"Ugyldig stasjonsbokstav\n",
"Stasjon %c: er ikke en diskettstasjon\n",
"Vil du prve † lage denne disketten p† nytt?",
"Trykk Enter for † prve igjen eller ESC for † avslutte.",
"Feil: Disken er skrivebeskyttet\n",
"Feil: Ukjent diskenhet\n",
"Feil: Stasjonen er ikke klar\n",
"Feil: Ukjent kommando\n",
"Feil: Datafeil (Feil CRC)\n",
"Feil: Ugyldig lengde p† foresprselsstruktur\n",
"Feil: Skefeil\n",
"Feil: Finner ikke medietypen\n",
"Feil: Finner ikke sektor\n",
"Feil: Skrivefeil\n",
"Feil: Generell feil\n",
"Feil: Ugyldig foresprsel eller kommando\n",
"Feil: Finner ikke adressemerke\n",
"Feil: Diskskrivefeil\n",
"Feil: DMA-overkjring (Direct Memory Access)\n",
"Feil: Datalesefeil (CRC eller ECC)\n",
"Feil: Kontrollerfeil\n",
"Feil: Disken ble tidsavbrutt eller svarte ikke\n",
"Installasjonsdiskett 5 for Windows XP SP1",
"Installasjonsdiskett 6 for Windows XP SP1"
};
const char *LocStrings[] = {"\0"};