Приветствую Вас Гость | RSS

Меню сайта

Реклама

Категории раздела
BIOS [8]
DOS и Консоль [0]
Kylix [0]
Windows [0]
Аудиокарта и Видеокарта [0]
Буфер обмена [0]
Драйвера [1]
Клавиши [0]
Компьютер [0]
Монитор и Экран [0]
Мышка и Курсор [0]
Переменные окружения [0]
Принтеры и Печать [0]
Процессор [0]
Реестр [0]
Сканер [0]
Сообщения Windows [0]
Справочник по сообщениям [0]
Язык [17]

Наш опрос
Есть ли у Вас свой сайт?
Всего ответов: 48

Статистика

Онлайн всего: 1
Гостей: 1
Пользователей: 0

Форма входа

Главная » Статьи » ОС и Железо » Язык

Возвращать сообщения на родном языке компьютера
{ 
Call inLanguage like this to get the German text else return english
if you use different coutntry codes you can do more
}


{############### FGetLanguageSettings ############################
# Author: Walter Verhoeven
# Date: 14.Sep.2000
# Coming From: InLanguage
# Next Event: NONE
# Parameters: NONE
# Objective: See the users regional settings and return Country #number code
# Change:
# DD-MMM-YYYYY ¦Programmer
# 1)
#
########################################################}


function FGetLanguageSettings: Integer;
var
OutputBuffer: PChar;
SelectedLCID: LCID; //DWORD constand in Windows.pas
begin
OutputBuffer := StrAlloc(4); //alocate memory for the PChar
try
try
SelectedLCID := GetUserDefaultLCID;
GetLocaleInfo(SelectedLCID, LOCALE_ICOUNTRY, OutputBuffer, 3);
Result := StrToInt(OutputBuffer);
except
Result := 49; //german
Abort;
end;
finally
StrDispose(OutputBuffer); //alway's free the memory alocated
end;
end;

{############## INLanguage #######################################
# Author: Walter Verhoeven
# Date: .Jun.2000
# Coming From:
# Next Event: FGetLanguageSettings
# Parameters: Eglish and german text
# Objective: provide a method to return
# english or german results based on the
# users window prefered language setting.
# Change:
# DD-MMM-YYYYY ¦Programmer
# 1)
#
##############################################################}



function INLanguage(English, German: string): string;
begin
case FGetLanguageSettings of
49: Result := German; // Return the german string
43: Result := German; // If the PC has a german preferance
41: Result := German;
352: Result := German;
else
Result := English; // if not german then english
end;
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage(Format(INLanguage('My %s English Word',
'Riesiges %s Software-Angebot'), ['Hopla']));
end;
Категория: Язык | Добавил: Skinner (11.09.2008)
Просмотров: 387 | Рейтинг: 0.0/0
  Delphi Lab   Главная   Регистрация   Вход  
Интересная Цитата

Поиск

Магазин


Copyright MyCorp © 2024 Хостинг от uCoz