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

98 lines
3.2 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",
"Windows XP SP1 Startdiskette",
"Windows XP SP1 Installationsdiskette nr. 2",
"Windows XP SP1 Installationsdiskette nr. 3",
"Windows XP SP1 Installationsdiskette nr. 4",
"Filen %s blev ikke fundet\n",
"Der er ikke nok hukommelse til at fuldfre anmodningen\n",
"%s er ikke en eksekverbar fil\n",
"****************************************************",
"Dette program opretter installationsdisketterne",
"til Microsoft %s.",
"For at oprette disse, skal du bruge 6 tomme,",
"formaterede, high-density disketter.",
"Indst en af de tomme disketter i drev %c:. Denne diskette",
"bliver %s.",
"Indst en anden diskette i drev %c:. Denne diskette bliver",
"%s.",
"Tryk p† en vilk†rlig tast, n†r du er klar.",
"Installationsdisketterne er nu blevet oprettet.",
"Fuldfrt",
"Der opstod en ukendt fejl under forsget p† at kre %s.",
"Angiv diskettedrevet, som afbildningerne skal kopieres til: ",
"Ugyldigt drevbogstav\n",
"Drev %c: er ikke et diskettedrev\n",
"Vil du forsge at oprette denne diskette igen?",
"Tryk p† Enter for at forsge igen, eller p† Esc for at afslutte.",
"Fejl: Disketten er skrivebeskyttet\n",
"Fejl: Ukendt diskenhed\n",
"Fejl: Drevet er ikke klar\n",
"Fejl: Ukendt kommando\n",
"Fejl: Datafejl (fejl i CRC)\n",
"Fejl: Ugyldig lngde p† anmodningsstruktur\n",
"Fejl: Sgefejl\n",
"Fejl: Medietypen blev ikke fundet\n",
"Fejl: Sektoren blev ikke fundet\n",
"Fejl: Skrivefejl\n",
"Fejl: Generel fejl\n",
"Fejl: Ugyldig anmodning eller kommando\n",
"Fejl: Adressemrke blev ikke fundet\n",
"Fejl: Diskskrivningsfejl\n",
"Fejl: DAM-overlb (Direct Memory Access)\n",
"Fejl: Datalsningsfejl (CRC eller ECC)\n",
"Fejl: Controllerfejl\n",
"Fejl: Disken svarede ikke, eller timeout opstod\n",
"Windows XP SP1 Installationsdiskette nr. 5",
"Windows XP SP1 Installationsdiskette nr. 6"
};
const char *LocStrings[] = {"\0"};