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

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

Issue 18323017: Localized Chromoting Host on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 7 years, 5 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include <winresrc.h>
6 #include "remoting/host/win/core_resource.h"
7 #ifdef IDC_STATIC
8 #undef IDC_STATIC
9 #endif
10 #define IDC_STATIC (-1)
11
12 {% for lang in languages %}
13 {% do SelectLanguage(lang) %}
14
15 LANGUAGE {{ lang | GetPrimaryLanguage }}, {{ lang | GetSublanguage }}
16
17 #if (BINARY == BINARY_CORE)
18
19 STRINGTABLE
20 BEGIN
21 IDS_DISPLAY_SERVICE_NAME "{% trans %}DISPLAY_SERVICE_NAME{% endtrans %}"
22 IDS_SERVICE_DESCRIPTION "{% trans %}SERVICE_DESCRIPTION{% endtrans %}"
23 IDS_CONTROLLER_NAME "{% trans %}CONTROLLER_NAME{% endtrans %}"
24 END
25
26 #endif // (BINARY == BINARY_CORE)
27
28 IDD_VERIFY_CONFIG_DIALOG ICON "remoting/resources/chromoting.ico"
29
30 IDD_VERIFY_CONFIG_DIALOG DIALOGEX 0, 0, 221, 106
31 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUPWINDOW | WS_CAPTION
32 EXSTYLE 0 {% if IsRtlLanguage(lang) %} | WS_EX_LAYOUTRTL {% endif %}
33 CAPTION "{% trans %}PRODUCT_NAME{% endtrans %}"
34 FONT 8, "MS Shell Dlg", 400, 0, 0x1
35 BEGIN
36 LTEXT "{% trans %}VERIFY_PIN_DIALOG_MESSAGE{% endtrans %}",IDC_MES SAGE,7,7,207,30
37 LTEXT "{% trans %}VERIFY_PIN_DIALOG_EMAIL_LABEL{% endtrans %}",IDC _EMAIL_LABEL,7,38,50,30
38 LTEXT "",IDC_EMAIL,60,38,110,30
39 LTEXT "{% trans %}ASK_PIN_DIALOG_LABEL{% endtrans %}",IDC_PIN_LABE L,7,55,50,30
40 EDITTEXT IDC_PIN,60,55,100,15,WS_TABSTOP | ES_PASSWORD | ES_NUMBER
41 DEFPUSHBUTTON "{% trans %}OK{% endtrans %}",IDOK,68,86,68,14,WS_TABSTOP
42 PUSHBUTTON "{% trans %}CANCEL{% endtrans %}",IDCANCEL,146,86,68,14,WS_T ABSTOP
43 END
44
45 IDD_DISCONNECT DIALOGEX 0, 0, 145, 24
46 STYLE DS_SETFONT | WS_POPUP
47 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL {% endif %}
48 FONT 9, "Microsoft Sans Serif", 400, 0, 0x0
49 BEGIN
50 DEFPUSHBUTTON "{% trans %}DISCONNECT_OTHER_BUTTON{% endtrans %}",IDC_DISCO NNECT,68,5,70,14
51 LTEXT "{% trans %}MESSAGE_SHARED{% endtrans %}",IDC_DISCONNECT_SHA RINGWITH,18,7,43,8
52 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,6,6,1,12
53 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDVERT,8,6,1,12
54 END
55
56 IDD_CONTINUE DIALOGEX 0, 0, 221, 58
57 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
58 EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW {% if IsRtlLanguage(lang) %} | WS_EX_LA YOUTRTL {% endif %}
59 CAPTION "kTitle"
60 FONT 8, "MS Shell Dlg", 400, 0, 0x1
61 BEGIN
62 DEFPUSHBUTTON "{% trans %}CONTINUE_BUTTON{% endtrans %}",IDC_CONTINUE_DEFA ULT,116,38,98,14
63 LTEXT "{% trans %}CONTINUE_PROMPT{% endtrans %}",IDC_CONTINUE_MESS AGE,7,7,207,30
64 PUSHBUTTON "{% trans %}STOP_SHARING_BUTTON{% endtrans %}",IDC_CONTINUE_ CANCEL,7,38,98,14
65 END
66
67 {% endfor %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698