#include "remoting/host/ui_strings.h"
#include "base/utf_string_conversions.h"
namespace remoting {
UiStrings::UiStrings() :
direction(LTR),
product_name(ASCIIToUTF16("Chromoting")),
disconnect_message(
ASCIIToUTF16("Your desktop is currently being shared with $1.")),
disconnect_button_text(ASCIIToUTF16("Disconnect")),
disconnect_button_text_plus_shortcut(
ASCIIToUTF16("Disconnect (Ctrl+Alt+Esc)")),
continue_prompt(ASCIIToUTF16(
"You are currently sharing this machine with another user. "
"Please confirm that you want to continue sharing.")),
continue_button_text(ASCIIToUTF16("Continue")),
stop_sharing_button_text(ASCIIToUTF16("Stop Sharing")) {
}
UiStrings::~UiStrings() { }
}