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

Side by Side Diff: chrome/browser/chromeos/login/network_selection_view.cc

Issue 4768001: Changed title of the first screen from "Welcome to Google Chrome OS" to "Let'... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/network_selection_view.h" 5 #include "chrome/browser/chromeos/login/network_selection_view.h"
6 6
7 #include <signal.h> 7 #include <signal.h>
8 #include <sys/types.h> 8 #include <sys/types.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 proxy_settings_link_->SetHighlightedColor(login::kLinkColor); 330 proxy_settings_link_->SetHighlightedColor(login::kLinkColor);
331 331
332 UpdateLocalizedStrings(); 332 UpdateLocalizedStrings();
333 } 333 }
334 334
335 void NetworkSelectionView::UpdateLocalizedStrings() { 335 void NetworkSelectionView::UpdateLocalizedStrings() {
336 languages_menubutton_->SetText( 336 languages_menubutton_->SetText(
337 delegate_->language_switch_menu()->GetCurrentLocaleName()); 337 delegate_->language_switch_menu()->GetCurrentLocaleName());
338 keyboards_menubutton_->SetText( 338 keyboards_menubutton_->SetText(
339 delegate_->keyboard_switch_menu()->GetCurrentKeyboardName()); 339 delegate_->keyboard_switch_menu()->GetCurrentKeyboardName());
340 welcome_label_->SetText(l10n_util::GetStringF(IDS_NETWORK_SELECTION_TITLE, 340 welcome_label_->SetText(l10n_util::GetString(IDS_NETWORK_SELECTION_TITLE));
341 l10n_util::GetString(IDS_PRODUCT_OS_NAME)));
342 select_language_label_->SetText( 341 select_language_label_->SetText(
343 l10n_util::GetString(IDS_LANGUAGE_SELECTION_SELECT)); 342 l10n_util::GetString(IDS_LANGUAGE_SELECTION_SELECT));
344 select_keyboard_label_->SetText( 343 select_keyboard_label_->SetText(
345 l10n_util::GetString(IDS_KEYBOARD_SELECTION_SELECT)); 344 l10n_util::GetString(IDS_KEYBOARD_SELECTION_SELECT));
346 select_network_label_->SetText( 345 select_network_label_->SetText(
347 l10n_util::GetString(IDS_NETWORK_SELECTION_SELECT)); 346 l10n_util::GetString(IDS_NETWORK_SELECTION_SELECT));
348 proxy_settings_link_->SetText( 347 proxy_settings_link_->SetText(
349 l10n_util::GetString(IDS_OPTIONS_PROXIES_CONFIGURE_BUTTON)); 348 l10n_util::GetString(IDS_OPTIONS_PROXIES_CONFIGURE_BUTTON));
350 RecreateNativeControls(); 349 RecreateNativeControls();
351 UpdateConnectingNetworkLabel(); 350 UpdateConnectingNetworkLabel();
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 l10n_util::GetString(IDS_NETWORK_SELECTION_CONTINUE_BUTTON)); 453 l10n_util::GetString(IDS_NETWORK_SELECTION_CONTINUE_BUTTON));
455 continue_button_->SetEnabled(is_continue_enabled); 454 continue_button_->SetEnabled(is_continue_enabled);
456 } 455 }
457 456
458 void NetworkSelectionView::UpdateConnectingNetworkLabel() { 457 void NetworkSelectionView::UpdateConnectingNetworkLabel() {
459 connecting_network_label_->SetText(l10n_util::GetStringF( 458 connecting_network_label_->SetText(l10n_util::GetStringF(
460 IDS_NETWORK_SELECTION_CONNECTING, UTF16ToWide(network_id_))); 459 IDS_NETWORK_SELECTION_CONNECTING, UTF16ToWide(network_id_)));
461 } 460 }
462 461
463 } // namespace chromeos 462 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698