summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/personalization_strings.h
blob: ed3036d659701ad7ddb394c864eb1a2d4138e278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright (c) 2006-2008 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.

// Contains all string resources usec by the personalization module.

// TODO(munjal): This file should go away once the personalization module
// becomes public. At that point, we have to put all the strings below in the
// generated resources file.

#ifdef CHROME_PERSONALIZATION

// TODO(timsteele): Rename this file; 'personalization' is deprecated.
#ifndef CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_
#define CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_

// User Data tab in the Options menu.
static const wchar_t kSyncGroupName[] = L"Bookmark Sync:";
static const wchar_t kSyncNotSetupInfo[] =
    L"You are not set up to sync your bookmarks with your other computers.";
static const wchar_t kStartSyncButtonLabel[] = L"Synchronize my bookmarks...";
static const wchar_t kSyncAccountLabel[] = L"Synced to ";
static const wchar_t kLastSyncedLabel[] = L"Last synced: ";
static const wchar_t kSyncCredentialsNeededLabel[] =
    L"Account login details are not yet entered.";
static const wchar_t kSyncAuthenticatingLabel[] = L"Authenticating...";
static const wchar_t kSyncInvalidCredentialsError[] =
    L"Invalid user name or password.";
static const wchar_t kSyncOtherLoginErrorLabel[] =
    L"Error signing in.";
static const wchar_t kSyncExpiredCredentialsError[] =
    L"Login details are out of date.";
static const wchar_t kSyncServerNotReachableError[] =
    L"Sync server is not reachable. Retrying...";
static const wchar_t kSyncReLoginLinkLabel[] = L"Login again";
static const wchar_t kStopSyncButtonLabel[] = L"Stop syncing this account";

// Sync status messages.
static const wchar_t kLastSyncedTimeNever[] = L"Never.";
static const wchar_t kLastSyncedTimeWithinLastMinute[] = L"Just now.";

// Sync merge warning dialog strings.
static const wchar_t kMergeWarningMessageText[] =
    L"WARNING: Your existing online bookmarks will be merged with the "
    L"bookmarks on this machine. You can use the Bookmark Manager to organize "
    L"your bookmarks after the merge.";
static const wchar_t kCancelSyncButtonLabel[] = L"Cancel";
static const wchar_t kMergeAndSyncButtonLabel[] = L"Merge and Sync";

// Various strings for the new tab page personalization.
static const char kSyncSectionTitle[] = "Bookmark Sync";
static const char kSyncErrorSectionTitle[] = "Bookmark Sync Error!";
static const char kSyncPromotionMsg[] =
    "You can sync your bookmarks across computers using your Google account.";
static const wchar_t kSyncServerUnavailableMsg[] =
    L"Google Chrome could not sync your bookmarks because it could not connect "
    L"to the sync server. Retrying...";
static const char kStartNowLinkText[] = "Start now.";
static const char kSettingUpText[] = "Setup in progress...";

// Sync menu item strings.
static const wchar_t kMenuLabelStartSync[] = L"Sync my bookmarks...";

// Login dialog strings.
static const wchar_t kLoginDialogTitle[] = L"Sync my bookmarks";

#endif  // CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_

#endif  // CHROME_PERSONALIZATION