OLD | NEW |
(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 namespace ui_strings { |
| 9 Direction direction = LTR; |
| 10 |
| 11 std::string productName = "Chromoting"; |
| 12 |
| 13 // The default string doesn't include the user name, so this will be missing |
| 14 // for remoting_simple_host |
| 15 std::string disconnectMessage = "Your desktop is currently being shared."; |
| 16 |
| 17 std::string disconnectButtonText = "Disconnect"; |
| 18 |
| 19 // This is the wrong shortcut on Mac OS X, but remoting_simple_host doesn't |
| 20 // have a bundle (and hence no dialog) on that platform and the web-app |
| 21 // will provide the correct localization for this string. |
| 22 std::string disconnectButtonShortcut = " (Ctrl+Alt+Esc)"; |
| 23 |
| 24 std::string continuePrompt = |
| 25 "You are currently sharing this machine with another user. " |
| 26 "Please confirm that you want to continue sharing."; |
| 27 |
| 28 std::string continueButtonText = "Continue"; |
| 29 |
| 30 std::string stopSharingButtonText = "Stop Sharing"; |
| 31 |
| 32 } |
| 33 } |
OLD | NEW |