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

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

Issue 2553393002: Rename BINARY to REMOTING_HOST_BINARY (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « remoting/host/win/BUILD.gn ('k') | remoting/host/win/version.rc.jinja2 » ('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 #include "remoting/host/win/core_resource.h" 6 #include "remoting/host/win/core_resource.h"
7 #ifdef IDC_STATIC 7 #ifdef IDC_STATIC
8 #undef IDC_STATIC 8 #undef IDC_STATIC
9 #endif 9 #endif
10 #define IDC_STATIC (-1) 10 #define IDC_STATIC (-1)
11 11
12 {% for lang in languages %} 12 {% for lang in languages %}
13 {% do SelectLanguage(lang) %} 13 {% do SelectLanguage(lang) %}
14 14
15 LANGUAGE {{ lang | GetPrimaryLanguage }}, {{ lang | GetSublanguage }} 15 LANGUAGE {{ lang | GetPrimaryLanguage }}, {{ lang | GetSublanguage }}
16 16
17 #if (BINARY == BINARY_CORE) 17 #if (REMOTING_HOST_BINARY == BINARY_CORE)
18 18
19 STRINGTABLE 19 STRINGTABLE
20 BEGIN 20 BEGIN
21 IDS_DISPLAY_SERVICE_NAME "{% trans %}DISPLAY_SERVICE_NAME{% endtrans %}" 21 IDS_DISPLAY_SERVICE_NAME "{% trans %}DISPLAY_SERVICE_NAME{% endtrans %}"
22 IDS_SERVICE_DESCRIPTION "{% trans %}SERVICE_DESCRIPTION{% endtrans %}" 22 IDS_SERVICE_DESCRIPTION "{% trans %}SERVICE_DESCRIPTION{% endtrans %}"
23 IDS_PRODUCT_NAME "{% trans %}PRODUCT_NAME{% endtrans %}" 23 IDS_PRODUCT_NAME "{% trans %}PRODUCT_NAME{% endtrans %}"
24 IDS_SHARE_CONFIRM_DIALOG_MESSAGE "{% trans %}SHARE_CONFIRM_DIALOG_MESSAGE{% en dtrans %}" 24 IDS_SHARE_CONFIRM_DIALOG_MESSAGE "{% trans %}SHARE_CONFIRM_DIALOG_MESSAGE{% en dtrans %}"
25 IDS_SHARE_CONFIRM_DIALOG_MESSAGE_WITH_USERNAME "{% trans %}SHARE_CONFIRM_DIALO G_MESSAGE_WITH_USERNAME{% endtrans %}" 25 IDS_SHARE_CONFIRM_DIALOG_MESSAGE_WITH_USERNAME "{% trans %}SHARE_CONFIRM_DIALO G_MESSAGE_WITH_USERNAME{% endtrans %}"
26 IDS_SHARE_CONFIRM_DIALOG_CONFIRM "{% trans %}SHARE_CONFIRM_DIALOG_CONFIRM{% en dtrans %}" 26 IDS_SHARE_CONFIRM_DIALOG_CONFIRM "{% trans %}SHARE_CONFIRM_DIALOG_CONFIRM{% en dtrans %}"
27 IDS_SHARE_CONFIRM_DIALOG_DECLINE "{% trans %}SHARE_CONFIRM_DIALOG_DECLINE{% en dtrans %}" 27 IDS_SHARE_CONFIRM_DIALOG_DECLINE "{% trans %}SHARE_CONFIRM_DIALOG_DECLINE{% en dtrans %}"
28 END 28 END
29 29
30 IDI_CHROME_REMOTE_DESKTOP ICON "remoting/resources/chromoting.ico" 30 IDI_CHROME_REMOTE_DESKTOP ICON "remoting/resources/chromoting.ico"
31 31
32 #endif // (BINARY == BINARY_CORE) 32 #endif // (REMOTING_HOST_BINARY == BINARY_CORE)
33 33
34 IDD_DISCONNECT DIALOGEX 0, 0, 145, 24 34 IDD_DISCONNECT DIALOGEX 0, 0, 145, 24
35 STYLE DS_SETFONT | WS_POPUP 35 STYLE DS_SETFONT | WS_POPUP
36 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL | WS_EX_RTLREADING {% endif %} 36 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL | WS_EX_RTLREADING {% endif %}
37 FONT 9, "Microsoft Sans Serif", 400, 0, 0x0 37 FONT 9, "Microsoft Sans Serif", 400, 0, 0x0
38 BEGIN 38 BEGIN
39 DEFPUSHBUTTON "{% trans %}STOP_SHARING_BUTTON{% endtrans %}",IDC_DISCONNEC T,68,5,70,14 39 DEFPUSHBUTTON "{% trans %}STOP_SHARING_BUTTON{% endtrans %}",IDC_DISCONNEC T,68,5,70,14
40 LTEXT "{% trans %}MESSAGE_SHARED{% endtrans %}",IDC_DISCONNECT_SHA RINGWITH,18,7,43,8 40 LTEXT "{% trans %}MESSAGE_SHARED{% endtrans %}",IDC_DISCONNECT_SHA RINGWITH,18,7,43,8
41 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,6,6,1,12 41 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,6,6,1,12
42 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,8,6,1,12 42 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,8,6,1,12
43 END 43 END
44 44
45 IDD_CONTINUE DIALOGEX 0, 0, 221, 58 45 IDD_CONTINUE DIALOGEX 0, 0, 221, 58
46 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION 46 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
47 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL | WS_EX_RTLREADING {% endif %} 47 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL | WS_EX_RTLREADING {% endif %}
48 CAPTION "{% trans %}PRODUCT_NAME{% endtrans %}" 48 CAPTION "{% trans %}PRODUCT_NAME{% endtrans %}"
49 FONT 8, "MS Shell Dlg", 400, 0, 0x1 49 FONT 8, "MS Shell Dlg", 400, 0, 0x1
50 BEGIN 50 BEGIN
51 DEFPUSHBUTTON "{% trans %}CONTINUE_BUTTON{% endtrans %}",IDC_CONTINUE_DEFA ULT,116,38,98,14 51 DEFPUSHBUTTON "{% trans %}CONTINUE_BUTTON{% endtrans %}",IDC_CONTINUE_DEFA ULT,116,38,98,14
52 LTEXT "{% trans %}CONTINUE_PROMPT{% endtrans %}",IDC_CONTINUE_MESS AGE,7,7,207,30 52 LTEXT "{% trans %}CONTINUE_PROMPT{% endtrans %}",IDC_CONTINUE_MESS AGE,7,7,207,30
53 PUSHBUTTON "{% trans %}STOP_SHARING_BUTTON{% endtrans %}",IDC_CONTINUE_ CANCEL,7,38,98,14 53 PUSHBUTTON "{% trans %}STOP_SHARING_BUTTON{% endtrans %}",IDC_CONTINUE_ CANCEL,7,38,98,14
54 END 54 END
55 55
56 {% endfor %} 56 {% endfor %}
OLDNEW
« no previous file with comments | « remoting/host/win/BUILD.gn ('k') | remoting/host/win/version.rc.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698