Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1162)

Side by Side Diff: chrome/browser/sync/personalization_strings.h

Issue 160598: Add files to browser/sync. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sync/personalization.cc ('k') | chrome/browser/sync/profile_sync_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2006-2008 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 // Contains all string resources usec by the personalization module.
6
7 // TODO(munjal): This file should go away once the personalization module
8 // becomes public. At that point, we have to put all the strings below in the
9 // generated resources file.
10
11 #ifdef CHROME_PERSONALIZATION
12
13 // TODO(timsteele): Rename this file; 'personalization' is deprecated.
14 #ifndef CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_
15 #define CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_
16
17 // User Data tab in the Options menu.
18 static const wchar_t kSyncGroupName[] = L"Bookmark Sync:";
19 static const wchar_t kSyncNotSetupInfo[] =
20 L"You are not set up to sync your bookmarks with your other computers.";
21 static const wchar_t kStartSyncButtonLabel[] = L"Synchronize my bookmarks...";
22 static const wchar_t kSyncAccountLabel[] = L"Synced to ";
23 static const wchar_t kLastSyncedLabel[] = L"Last synced: ";
24 static const wchar_t kSyncCredentialsNeededLabel[] =
25 L"Account login details are not yet entered.";
26 static const wchar_t kSyncAuthenticatingLabel[] = L"Authenticating...";
27 static const wchar_t kSyncInvalidCredentialsError[] =
28 L"Invalid user name or password.";
29 static const wchar_t kSyncOtherLoginErrorLabel[] =
30 L"Error signing in.";
31 static const wchar_t kSyncExpiredCredentialsError[] =
32 L"Login details are out of date.";
33 static const wchar_t kSyncServerNotReachableError[] =
34 L"Sync server is not reachable. Retrying...";
35 static const wchar_t kSyncReLoginLinkLabel[] = L"Login again";
36 static const wchar_t kStopSyncButtonLabel[] = L"Stop syncing this account";
37
38 // Sync status messages.
39 static const wchar_t kLastSyncedTimeNever[] = L"Never.";
40 static const wchar_t kLastSyncedTimeWithinLastMinute[] = L"Just now.";
41
42 // Sync merge warning dialog strings.
43 static const wchar_t kMergeWarningMessageText[] =
44 L"WARNING: Your existing online bookmarks will be merged with the "
45 L"bookmarks on this machine. You can use the Bookmark Manager to organize "
46 L"your bookmarks after the merge.";
47 static const wchar_t kCancelSyncButtonLabel[] = L"Cancel";
48 static const wchar_t kMergeAndSyncButtonLabel[] = L"Merge and Sync";
49
50 // Various strings for the new tab page personalization.
51 static const char kSyncSectionTitle[] = "Bookmark Sync";
52 static const char kSyncErrorSectionTitle[] = "Bookmark Sync Error!";
53 static const char kSyncPromotionMsg[] =
54 "You can sync your bookmarks across computers using your Google account.";
55 static const wchar_t kSyncServerUnavailableMsg[] =
56 L"Google Chrome could not sync your bookmarks because it could not connect "
57 L"to the sync server. Retrying...";
58 static const char kStartNowLinkText[] = "Start now.";
59 static const char kSettingUpText[] = "Setup in progress...";
60
61 // Sync menu item strings.
62 static const wchar_t kMenuLabelStartSync[] = L"Sync my bookmarks...";
63
64 // Login dialog strings.
65 static const wchar_t kLoginDialogTitle[] = L"Sync my bookmarks";
66
67 #endif // CHROME_BROWSER_SYNC_PERSONALIZATION_STRINGS_H_
68
69 #endif // CHROME_PERSONALIZATION
OLDNEW
« no previous file with comments | « chrome/browser/sync/personalization.cc ('k') | chrome/browser/sync/profile_sync_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698