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

98 lines
3.2 KiB
C
Raw 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 = 857;
const char *EngStrings[] = {
"Windows XP SP1",
"Windows XP SP1 Kurulum ™ny<6E>kleme Disketi",
"Windows XP SP1 Kurulum Disketi #2",
"Windows XP SP1 Kurulum Disketi #3",
"Windows XP SP1 Kurulum Disketi #4",
"%s dosyas<61> bulunam<61>yor\n",
"˜ste§i tamamlamak i‡in yeterli bellek yok\n",
"%s ‡al<61>Ÿt<C5B8>r<EFBFBD>labilir dosya bi‡iminde de§il\n",
"****************************************************",
"Bu program, Ÿunun i‡in Kurulum ”ny<6E>kleme disketleri oluŸturur:",
"Microsoft %s.",
"Bu disketleri oluŸturmak i‡in bi‡imlendirilmiŸ, y<>ksek yo§unlukta",
"6 boŸ disket gerekir.",
"Bu disketlerden birini %c: s<>r<EFBFBD>c<EFBFBD>s<EFBFBD>ne yerleŸtirin. Bu",
"disket %s olur.",
"%c: s<>r<EFBFBD>c<EFBFBD>s<EFBFBD>ne baŸka bir disket yerleŸtirin. Bu",
"disket %s olur.",
"Haz<EFBFBD>r oldu§unuzda bir tuŸa bas<61>n.",
"Kur ”ny<6E>kleme disketleri baŸar<61>yla oluŸturuldu.",
"tamamland<EFBFBD>",
"%s ‡al<61>Ÿt<C5B8>r<EFBFBD>lmas<61> denenirken bilinmeyen bir hata oluŸtu.",
"Yans<EFBFBD>malar<EFBFBD>n kopyalanaca§<61> disket s<>r<EFBFBD>c<EFBFBD>s<EFBFBD>n<EFBFBD> belirtin: ",
"Ge‡ersiz s<>r<EFBFBD>c<EFBFBD> harfi\n",
"%c: bir disket s<>r<EFBFBD>c<EFBFBD>s<EFBFBD> de§ildir\n",
"Bu disketi yeniden oluŸturmay<61> denemek istiyor musunuz?",
"Yeniden denemek i‡in Enter'e, ‡<>kmak i‡in Esc'ye bas<61>n.",
"Hata: Disket yazma korumal<61>\n",
"Hata: Bilinmeyen disket birimi\n",
"Hata: S<>r<EFBFBD>c<EFBFBD> haz<61>r de§il\n",
"Hata: Bilinmeyen komut\n",
"Hata: Veri hatas<61> (Hatal<61> CRC)\n",
"Hata: Hatal<61> istek yap<61>s<EFBFBD> uzunlu§u\n",
"Hata: Arama hatas<61>\n",
"Hata: Ortam t<>r<EFBFBD> bulunamad<61>\n",
"Hata: Kesim bulunamad<61>\n",
"Hata: Yazma hatas<61>\n",
"Hata: Genel hata\n",
"Hata: Ge‡ersiz istek ya da hatal<61> komut\n",
"Hata: Adres iŸareti bulunamad<61>\n",
"Hata: Disk yazma hatas<61>\n",
"Hata: Do§rudan Bellek EriŸimi (DMA) taŸmas<61>\n",
"Hata: Veri okuma (CRC ya da ECC) hatas<61>\n",
"Hata: Denetleyici hatas<61>\n",
"Hata: Disk zaman aŸ<61>m<EFBFBD>na u§rad<61> ya da yan<61>tlayamad<61>\n",
"Windows XP SP1 Kurulum Disketi #5",
"Windows XP SP1 Kurulum Disketi #6"
};
const char *LocStrings[] = {"\0"};