Skip to content

Commit

Permalink
chore(copy): update copy (#1937)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Mar 22, 2024
1 parent c1161e5 commit 0024b38
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion common/locales/bs-BA/bs-BA.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Pretraži...
.nothing-here = Ništa ovdje...
.end = Kraj
.pre-release = Predizdanje | Problemi/povratne informacije
.alpha = Alpha | Problemi/povratne informacije
.username = Korisničko ime
.status = Statusna poruka
.delete = Obriši
Expand Down
2 changes: 1 addition & 1 deletion common/locales/de/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Suchen...
.nothing-here = Hier ist nix...
.end = Ende
.pre-release = Pre-release
.alpha = Alpha
.username = Benutzername
.status = Status
.delete = Löschen
Expand Down
2 changes: 1 addition & 1 deletion common/locales/en-US/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Search...
.nothing-here = Nothing Here...
.end = End
.pre-release = Pre-release | Issues/Feedback
.alpha = Alpha | Issues/Feedback
.username = Username
.status = Status Message
.delete = Delete
Expand Down
2 changes: 1 addition & 1 deletion common/locales/es-MX/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Buscar...
.nothing-here = Nada aquí...
.end = Finalizar
.pre-release = Pre-lanzamiento | Defectos/Comentarios
.alpha = Alpha | Defectos/Comentarios
.username = Usuario
.status = Estado
.delete = Borrar
Expand Down
2 changes: 1 addition & 1 deletion common/locales/hr-HR/hr-HR.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Pretraži...
.nothing-here = Ništa ovdje...
.end = Kraj
.pre-release = Predizdanje | Problemi/povratne informacije
.alpha = Alpha | Problemi/povratne informacije
.username = Korisničko ime
.status = Statusna poruka
.delete = Obriši
Expand Down
2 changes: 1 addition & 1 deletion common/locales/pl/pl.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Szukaj…
.nothing-here = Niczego nie znaleziono…
.end = Zakończ
.pre-release = Wersja przedpremierowa | Problemy/Opinie
.alpha = Alpha | Problemy/Opinie
.username = Nazwa użytkownika
.status = Status
.delete = Usuń
Expand Down
2 changes: 1 addition & 1 deletion common/locales/pt-BR/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ uplink = Uplink
.hide-chat = Esconder Chat
.search-placeholder = Procurar...
.end = Finalizar
.pre-release = Pré-lançamento
.alpha = Alpha
.username = Nome de usuário
.status = Mensagem de Status
.delete = Deletar
Expand Down
2 changes: 1 addition & 1 deletion common/locales/pt-PT/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ uplink = Uplink
.search-placeholder = Procurar...
.nothing-here = Nada aqui...
.end = Fim
.pre-release = Pré-lançamento | Problemas/Feedback
.alpha = Alpha | Problemas/Feedback
.username = Nome de utilizador
.status = Estado
.delete = Eliminar
Expand Down
2 changes: 1 addition & 1 deletion common/locales/sr-RS/sr-RS.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uplink = Uplink
.search-placeholder = Претражи...
.nothing-here = Ништа овде...
.end = Крај
.pre-release = Пре-издање | Проблеми/Повратне информације
.alpha = Alpha | Проблеми/Повратне информације
.username = Корисничко име
.status = Статусна порука
.delete = Обриши
Expand Down
2 changes: 1 addition & 1 deletion ui/deb/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: {{package}}
Version: {{version}}
Vendor: Satellite IM Inc
Description: (Pre-Release Software) Secure, Encrypted, P2P chat written atop Warp, IPFS, LibP2P, and many more awesome projects and protocols.
Description: (Alpha Software) Secure, Encrypted, P2P chat written atop Warp, IPFS, LibP2P, and many more awesome projects and protocols.
Section: net, communication
Priority: required
Depends: libwebkit2gtk-4.1-0, libopus0, ffmpeg
Expand Down
8 changes: 4 additions & 4 deletions ui/src/components/topbar/release_info/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ use dioxus::prelude::*;

#[allow(non_snake_case)]
pub fn Release_Info(cx: Scope) -> Element {
let pre_release_text = get_local_text("uplink.pre-release");
let alpha_text = get_local_text("uplink.alpha");

cx.render(rsx!(
div {
id: "pre-release",
id: "alpha",
class : if cfg!(target_os = "macos") {"topbar-item mac-spacer"} else {"topbar-item"},
aria_label: "pre-release",
aria_label: "alpha",
IconElement {
icon: Icon::Beaker,
},
Expand All @@ -20,7 +20,7 @@ pub fn Release_Info(cx: Scope) -> Element {
onclick: move |_| {
let _ = open::that("https://issues.satellite.im");
},
"{pre_release_text}"
"{alpha_text}"
}

}
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/topbar/release_info/style.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pre-release {
#alpha {
padding: 0 var(--gap-less) !important;

cursor: default;
Expand All @@ -19,7 +19,7 @@
cursor: auto;
}
@media (max-width: 600px) {
#pre-release {
#alpha {
width: min-content;
}
}
Expand Down

0 comments on commit 0024b38

Please sign in to comment.