From 3511d3d90fc5f8946e98eb2be7ca7a0a4243a9b3 Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Mon, 18 Sep 2023 01:40:03 +0400 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=20=20update=20translation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- i18n/en/cachyos_hello.ftl | 2 +- i18n/ru/cachyos_hello.ftl | 12 ++++++++++++ src/pages.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/i18n/en/cachyos_hello.ftl b/i18n/en/cachyos_hello.ftl index c9503bd..39f5def 100644 --- a/i18n/en/cachyos_hello.ftl +++ b/i18n/en/cachyos_hello.ftl @@ -13,7 +13,7 @@ package-not-installed = Package '{$package_name}' has not been installed! # Dns Connections page dns-settings = DNS Settings -select-connections = Select Connections: +select-connection = Select Connection: select-dns-server = Select DNS server: apply = Apply reset = Reset diff --git a/i18n/ru/cachyos_hello.ftl b/i18n/ru/cachyos_hello.ftl index 08ab9c0..e1ac2ac 100644 --- a/i18n/ru/cachyos_hello.ftl +++ b/i18n/ru/cachyos_hello.ftl @@ -10,6 +10,17 @@ removed-db-lock = Блокировка БД Pacman была снята! lock-doesnt-exist = Pacman БД не заблокирован! package-not-installed = Пакет '{$package_name}' не был установлен! +# Dns Connections page +dns-settings = Настройки DNS +select-connection = Выберите подключение: +select-dns-server = Выберите DNS сервер: +apply = Применить +reset = Сбросить +dns-server-changed = DNS-сервер был успешно изменен! +dns-server-failed = Не удалось настроить DNS-сервер! +dns-server-reset = DNS-сервер был сброшен! +dns-server-reset-failed = Не удалось сбросить DNS-сервер! + # Tweaks page (tweaks) tweak-enabled-title = {$tweak} включен @@ -21,6 +32,7 @@ update-system-title = Обновить систему remove-orphans-title = Удалить orphans clear-pkgcache-title = Очистить кэш пакетов rankmirrors-title = Ранжировать зеркала +dnsserver-title = Сменить DNS-сервер # Main Page (buttons) button-about-tooltip = О программе diff --git a/src/pages.rs b/src/pages.rs index 1aed95a..91c454c 100644 --- a/src/pages.rs +++ b/src/pages.rs @@ -419,7 +419,7 @@ fn create_connections_section() -> gtk::Box { let connections_label = gtk::Label::new(None); connections_label.set_justify(gtk::Justification::Left); - connections_label.set_text(&fl!("select-connections")); + connections_label.set_text(&fl!("select-connection")); let servers_label = gtk::Label::new(None); servers_label.set_justify(gtk::Justification::Left); servers_label.set_text(&fl!("select-dns-server"));