Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(copy): update copy #1937

Merged
merged 3 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading