Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: remoting/host/win/version.rc.jinja2

Issue 20985002: Localized Chromoting Host on Mac and Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/host/win/session_desktop_environment.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 %}
OLDNEW
« no previous file with comments | « remoting/host/win/session_desktop_environment.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698