https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f1d4a83bf7b0cdf88ae26815e1cb14a45368d044

commit f1d4a83bf7b0cdf88ae26815e1cb14a45368d044
Author:     Joachim Henze <[email protected]>
AuthorDate: Sun Oct 10 21:23:47 2021 +0200
Commit:     Joachim Henze <[email protected]>
CommitDate: Sun Oct 10 21:29:05 2021 +0200

    [NOTEPAD] Properly fix accelerator issue in es-ES.rc CORE-17809
    
    In 0.4.14-dev-1321-g d6e0fe78e741fa8af9ec80b7ef70853fda14b8d6
    we introduced the following compiler warning for MSVC2010 release build:
    
    reactos/base/applications/notepad/lang/es-ES.rc(12) : warning RC4204 : 
ASCII character not equivalent to virtual key code
    
    That warning was muted without investing too much love by
    0.4.15-dev-2469-g d0bb7757747cb6d2c500e687df78eb8afea8edc8
    
    Today we apply the proper fix that brings us back in sync with other 
languages.
    I do intend to port the proper fix back to 0.4.14RC as well.
---
 base/applications/notepad/lang/es-ES.rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base/applications/notepad/lang/es-ES.rc 
b/base/applications/notepad/lang/es-ES.rc
index d77b49ebf75..6b43662c06c 100644
--- a/base/applications/notepad/lang/es-ES.rc
+++ b/base/applications/notepad/lang/es-ES.rc
@@ -8,7 +8,7 @@ BEGIN
     "^C", CMD_COPY
     "^B", CMD_SEARCH
     "^T", CMD_GOTO
-    "^R", CMD_REPLACE
+    "R", CMD_REPLACE, VIRTKEY, CONTROL
     "^N", CMD_NEW
     "N", CMD_NEW_WINDOW, VIRTKEY,CONTROL , SHIFT
     "^A", CMD_OPEN

Reply via email to