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

Side by Side Diff: remoting/host/ui_strings.cc

Issue 7635012: Host process i18n and Linux implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang error. Created 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 "remoting/host/ui_strings.h"
6
7 namespace remoting {
8
9 UIStrings::UIStrings() :
10 direction(LTR),
11 productName("Chromoting"),
12 // The default string doesn't include the user name, so this will be
13 // missing for remoting_simple_host
14 disconnectMessage("Your desktop is currently being shared."),
15 disconnectButtonText("Disconnect"),
16 // This is the wrong shortcut on Mac OS X, but remoting_simple_host
17 // doesn't have a bundle (and hence no dialog) on that platform and
18 // the web-app will provide the correct localization for this string.
19 disconnectButtonShortcut("Ctrl+Alt+Esc"),
20 continuePrompt(
21 "You are currently sharing this machine with another user. "
22 "Please confirm that you want to continue sharing."),
23 continueButtonText("Continue"),
24 stopSharingButtonText("Stop Sharing") {
25 }
26
27 UIStrings::~UIStrings() { }
28
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698