Skip to content

Commit 8dc4141

Browse files
committed
fix tr
1 parent ac58dbc commit 8dc4141

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

client_v2/src/__locales/en.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,6 @@
376376
"form_error_password": "Password mismatch",
377377
"reset_settings": "Reset settings",
378378
"update_announcement": "AdGuard Home {{version}} is now available! <0>Click here</0> for more info.",
379-
"setup_guide": "Setup Guide",
380379
"dns_addresses": "DNS addresses",
381380
"dns_start": "DNS server is starting up",
382381
"dns_status_error": "Error checking the DNS server status",
@@ -1011,7 +1010,7 @@
10111010
"setup_devices_dns_macos_desc": "On an iOS 14 or macOS Big Sur device, you can download a special mobileconfig file that adds <strong>DNS-over-HTTPS</strong> or <strong>DNS-over-TLS</strong> servers to the DNS settings.",
10121011
"client_id_faq": "Clients can be identified by their ClientID. To learn more, visit the <a>AdGuard Home GitHub</a>",
10131012
"device_type": "Device type",
1014-
"setup_guide_v2": "Setup guide",
1013+
"setup_guide": "Setup guide",
10151014
"setup_devices_router_title": "Router",
10161015
"setup_devices_windows_title": "Windows",
10171016
"setup_devices_macos_title": "macOS",

client_v2/src/common/ui/CopiedText/CopiedText.module.pcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
transition: var(--t3) opacity;
7373
visibility: hidden;
7474
font-size: 12px;
75-
z-index: 3;
75+
z-index: 1;
7676
box-shadow: var(--main-box-shadow);
7777
border: 1px solid var(--default-inactive-input-stroke);
7878

client_v2/src/components/SetupGuide/SetupGuide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const SetupGuide = () => {
2323
return (
2424
<div className={theme.layout.container}>
2525
<div className={s.header}>
26-
<h1 className={s.pageTitle}>{intl.getMessage('setup_guide_v2')}</h1>
26+
<h1 className={s.pageTitle}>{intl.getMessage('setup_guide')}</h1>
2727
<div className={s.pageDesc}>{intl.getMessage('setup_guide_desc')}</div>
2828
</div>
2929

0 commit comments

Comments
 (0)