OLD | NEW |
(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 |
OLD | NEW |