diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 17:45:05 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 17:45:05 +0000 |
commit | d600e2d290492bcd30663c9f7b92aa35a16bc900 (patch) | |
tree | 74d635aeb1fd803341a888c56ccb3957f4847088 /remoting/host/ui_strings.cc | |
parent | 0999cb0ab1dcc73b824ac57d4ef7e42473da12be (diff) | |
download | chromium_src-d600e2d290492bcd30663c9f7b92aa35a16bc900.zip chromium_src-d600e2d290492bcd30663c9f7b92aa35a16bc900.tar.gz chromium_src-d600e2d290492bcd30663c9f7b92aa35a16bc900.tar.bz2 |
Host process i18n and Linux implementation.
BUG=None
TEST=Manual
Review URL: http://codereview.chromium.org/7635012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96972 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/ui_strings.cc')
-rw-r--r-- | remoting/host/ui_strings.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/remoting/host/ui_strings.cc b/remoting/host/ui_strings.cc new file mode 100644 index 0000000..760643f --- /dev/null +++ b/remoting/host/ui_strings.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "remoting/host/ui_strings.h" + +namespace remoting { + +UiStrings::UiStrings() : + direction(LTR), + product_name("Chromoting"), + // The default string doesn't include the user name, so this will be + // missing for remoting_simple_host + disconnect_message("Your desktop is currently being shared."), + disconnect_button_text("Disconnect"), + // This is the wrong shortcut on Mac OS X, but remoting_simple_host + // doesn't have a bundle (and hence no dialog) on that platform and + // the web-app will provide the correct localization for this string. + disconnect_button_shortcut("Ctrl+Alt+Esc"), + continue_prompt( + "You are currently sharing this machine with another user. " + "Please confirm that you want to continue sharing."), + continue_button_text("Continue"), + stop_sharing_button_text("Stop Sharing") { +} + +UiStrings::~UiStrings() { } + +} |