mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
17617221ce
## Overview 1. msctfime.ime is an IME file interface for new-style IMEs a.k.a. "Text Input Processors" (TIPs). 2. msctfime.ime is loaded as old-style IME file at ImmLoadLayout in specific condition. 3. msctfime.ime communicates with the current TIP (This feature is not implemented yet). ## Proposed changes - Add msctfime module at dll/ime/msctfime. - The functions in this module are currently stub. - Move IME file interface declarations from <imm.h> to <ddk/immdev.h>. - Modify ImmNotifyIME, NotifyIME, and ImeProcessKey prototypes for x64 compliance. CORE-19360
23 lines
678 B
Text
23 lines
678 B
Text
/*
|
|
* PROJECT: ReactOS msctfime.ime
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: English (United States) resource file
|
|
* TRANSLATOR: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_OK "OK"
|
|
IDS_CANCEL "Cancel"
|
|
IDS_ABORT "&Abort"
|
|
IDS_RETRY "&Retry"
|
|
IDS_IGNORE "&Ignore"
|
|
IDS_YES "&Yes"
|
|
IDS_NO "&No"
|
|
|
|
IDS_ENTER "Enter"
|
|
IDS_FINALIZE_STRING "Finalize the string"
|
|
IDS_CONVERSION "Conversion"
|
|
END
|