Chromium Code Reviews| 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 #ifndef REMOTING_UI_STRINGS_H_ | |
|
Sergey Ulanov
2011/08/13 01:11:36
REMOTING_HOST_UI_STRINGS_H_
Jamie
2011/08/13 01:34:03
Done.
| |
| 6 #define REMOTING_UI_STRINGS_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 // This struct contains localized strings to be displayed in host dialogs. | |
| 11 // For the web-app, these are loaded from the appropriate messages.json | |
| 12 // file when the plugin is created. For remoting_simple_host, they are | |
| 13 // left set to the default (English) values. | |
| 14 // | |
| 15 // Since we don't anticipate having a significant host-side UI presented | |
| 16 // in this way, a namespace containing all available strings should be | |
| 17 // a reasonable way to implement this. | |
| 18 | |
| 19 namespace remoting { | |
| 20 | |
| 21 struct UiStrings { | |
| 22 UiStrings(); | |
| 23 ~UiStrings(); | |
| 24 | |
| 25 // The direction (left-to-right or right-to-left) for the current language. | |
| 26 enum Direction { RTL, LTR }; | |
|
Sergey Ulanov
2011/08/13 01:11:36
nit: each value on a separate line.
Jamie
2011/08/13 01:34:03
I don't see anything about this in the style guide
| |
| 27 Direction direction; | |
| 28 | |
| 29 // The product name (Chromoting or Chrome Remote Desktop). | |
| 30 std::string productName; | |
|
Sergey Ulanov
2011/08/13 01:11:36
product_name? same for the other methods.
Jamie
2011/08/13 01:34:03
Done.
| |
| 31 | |
| 32 // The message in the disconnect dialog. | |
| 33 std::string disconnectMessage; | |
| 34 | |
| 35 // The label on the disconnect dialog button, without the keyboard shortcut. | |
| 36 std::string disconnectButtonText; | |
| 37 | |
| 38 // The keyboard shortcut for disconnecting clients. | |
| 39 std::string disconnectButtonShortcut; | |
| 40 | |
| 41 // The confirmation prompt displayed by the continue window. | |
| 42 std::string continuePrompt; | |
| 43 | |
| 44 // The label on the 'Continue' button of the continue window. | |
| 45 std::string continueButtonText; | |
| 46 | |
| 47 // The label on the 'Stop Sharing' button of the continue window. | |
| 48 std::string stopSharingButtonText; | |
| 49 }; | |
| 50 | |
| 51 } | |
| 52 | |
| 53 #endif // REMOTING_UI_STRINGS_H_ | |
| OLD | NEW |