| Index: chrome/browser/bookmarks/bookmark_html_writer.cc
|
| ===================================================================
|
| --- chrome/browser/bookmarks/bookmark_html_writer.cc (revision 12288)
|
| +++ chrome/browser/bookmarks/bookmark_html_writer.cc (working copy)
|
| @@ -15,6 +15,8 @@
|
| #include "chrome/browser/bookmarks/bookmark_codec.h"
|
| #include "chrome/browser/bookmarks/bookmark_model.h"
|
| #include "chrome/browser/history/history_types.h"
|
| +#include "chrome/common/l10n_util.h"
|
| +#include "grit/generated_resources.h"
|
| #include "net/base/escape.h"
|
| #include "net/base/file_stream.h"
|
| #include "net/base/net_errors.h"
|
| @@ -257,7 +259,7 @@
|
| if (folder_type == history::StarredEntry::BOOKMARK_BAR) {
|
| if (!Write(kBookmarkBar))
|
| return false;
|
| - title = L"Bookmark Bar";
|
| + title = l10n_util::GetString(IDS_BOOMARK_BAR_FOLDER_NAME);
|
| } else if (!Write(kFolderAttributeEnd)) {
|
| return false;
|
| }
|
|
|