From 586d196e741ff9142b6f28e7694637b673fe8bb4 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Sat, 4 May 2024 14:43:15 +0300 Subject: [PATCH] ui: settings language title --- src/gui/views/root.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/views/root.rs b/src/gui/views/root.rs index 55d811b..46c9f4e 100644 --- a/src/gui/views/root.rs +++ b/src/gui/views/root.rs @@ -23,7 +23,7 @@ use crate::gui::views::{Modal, NetworkContent, NodeSetup, View, WalletsContent}; use crate::gui::views::types::ModalContainer; use crate::node::Node; use crate::AppConfig; -use crate::gui::icons::{CHECK, CHECK_FAT, GLOBE_SIMPLE}; +use crate::gui::icons::{CHECK, CHECK_FAT}; lazy_static! { /// Global state to check if [`NetworkContent`] panel is open. @@ -271,7 +271,7 @@ impl Root { ui.add_space(6.0); ui.vertical_centered(|ui| { - ui.label(RichText::new(format!("{} {}", GLOBE_SIMPLE, t!("language")).to_uppercase()) + ui.label(RichText::new(format!("{}:", t!("language"))) .size(16.0) .color(Colors::GRAY) );