| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <winresrc.h> | 5 #include <winresrc.h> |
| 6 |
| 6 #ifdef IDC_STATIC | 7 #ifdef IDC_STATIC |
| 7 #undef IDC_STATIC | 8 #undef IDC_STATIC |
| 8 #endif | 9 #endif |
| 9 #define IDC_STATIC (-1) | 10 #define IDC_STATIC (-1) |
| 10 | 11 |
| 11 {% for lang in languages %} | 12 {% for lang in languages %} |
| 12 {% do SelectLanguage(lang) %} | 13 {% do SelectLanguage(lang) %} |
| 13 | 14 |
| 14 LANGUAGE {{ lang | GetPrimaryLanguage }}, {{ lang | GetSublanguage }} | 15 LANGUAGE {{ lang | GetPrimaryLanguage }}, {{ lang | GetSublanguage }} |
| 15 | 16 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 VALUE "InternalName", "remoting_desktop.exe" | 51 VALUE "InternalName", "remoting_desktop.exe" |
| 51 VALUE "OriginalFilename", "remoting_desktop.exe" | 52 VALUE "OriginalFilename", "remoting_desktop.exe" |
| 52 #elif (BINARY == BINARY_HOST_ME2ME) | 53 #elif (BINARY == BINARY_HOST_ME2ME) |
| 53 VALUE "FileDescription", "{% trans %}REMOTING_HOST_DESCRIPTION{% endtrans
%}" | 54 VALUE "FileDescription", "{% trans %}REMOTING_HOST_DESCRIPTION{% endtrans
%}" |
| 54 VALUE "InternalName", "remoting_host.exe" | 55 VALUE "InternalName", "remoting_host.exe" |
| 55 VALUE "OriginalFilename", "remoting_host.exe" | 56 VALUE "OriginalFilename", "remoting_host.exe" |
| 56 #elif (BINARY == BINARY_HOST_PLUGIN) | 57 #elif (BINARY == BINARY_HOST_PLUGIN) |
| 57 VALUE "FileDescription", "{% trans %}REMOTING_HOST_PLUGIN_DESCRIPTION{% en
dtrans %}" | 58 VALUE "FileDescription", "{% trans %}REMOTING_HOST_PLUGIN_DESCRIPTION{% en
dtrans %}" |
| 58 VALUE "InternalName", "remoting_host_plugin.dll" | 59 VALUE "InternalName", "remoting_host_plugin.dll" |
| 59 VALUE "OriginalFilename", "remoting_host_plugin.dll" | 60 VALUE "OriginalFilename", "remoting_host_plugin.dll" |
| 60 VALUE "MIMEType", "application/vnd.chromium.remoting-host" | 61 VALUE "MIMEType", HOST_PLUGIN_MIME_TYPE |
| 61 #else | 62 #else |
| 62 #error BINARY must be set to one of BINARY_XXX values. | 63 #error BINARY must be set to one of BINARY_XXX values. |
| 63 #endif | 64 #endif |
| 64 END | 65 END |
| 65 END | 66 END |
| 66 BLOCK "VarFileInfo" | 67 BLOCK "VarFileInfo" |
| 67 BEGIN | 68 BEGIN |
| 68 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} | 69 VALUE "Translation", 0x{{ lang | GetLangId }}, {{ lang | GetCodepageDecimal
}} |
| 69 END | 70 END |
| 70 END | 71 END |
| 71 | 72 |
| 72 {% endfor %} | 73 {% endfor %} |
| OLD | NEW |