[fractal/string-review] Improve strings
- From: Alexandre Franke <afranke src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [fractal/string-review] Improve strings
- Date: Sat, 2 Apr 2022 17:30:16 +0000 (UTC)
commit 3f2e8aac738dd4f6c03bd630254e864aea1083fe
Author: Alexandre Franke <afranke gnome org>
Date: Sat Apr 2 19:29:58 2022 +0200
Improve strings
data/org.gnome.Fractal.gschema.xml.in | 11 ++++-------
src/application.rs | 2 +-
.../content/verification/identity_verification_widget.rs | 4 ++--
3 files changed, 7 insertions(+), 10 deletions(-)
---
diff --git a/data/org.gnome.Fractal.gschema.xml.in b/data/org.gnome.Fractal.gschema.xml.in
index eca4aca9c..3a843448c 100644
--- a/data/org.gnome.Fractal.gschema.xml.in
+++ b/data/org.gnome.Fractal.gschema.xml.in
@@ -3,23 +3,20 @@
<schema path="/org/gnome/Fractal/" id="@app-id@" gettext-domain="@gettext-package@">
<key name="window-width" type="i">
<default>-1</default>
- <summary>Default window width</summary>
- <description>Default window width</description>
+ <summary>Window width</summary>
</key>
<key name="window-height" type="i">
<default>-1</default>
- <summary>Default window height</summary>
- <description>Default window height</description>
+ <summary>Window height</summary>
</key>
<key name="is-maximized" type="b">
<default>false</default>
- <summary>Default window maximized behaviour</summary>
- <description></description>
+ <summary>Window maximized state</summary>
</key>
<key name="markdown-enabled" type="b">
<default>true</default>
<summary>Enable markdown formatting</summary>
- <description>Whether or not to do markdown formatting when sending messages</description>
+ <description>Whether messages should be processed as markdown when sending them</description>
</key>
</schema>
</schemalist>
diff --git a/src/application.rs b/src/application.rs
index 354c4bdf6..038fff84b 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -169,7 +169,7 @@ impl Application {
.transient_for(&self.get_main_window())
.modal(true)
.comments(gettext("A Matrix client for GNOME").as_str())
- .copyright(gettext("© 2017-2021 The Fractal Team").as_str())
+ .copyright(gettext("© 2017-2022 The Fractal Team").as_str())
.authors(vec![
"Alejandro Domínguez".to_string(),
"Alexandre Franke".to_string(),
diff --git a/src/session/content/verification/identity_verification_widget.rs
b/src/session/content/verification/identity_verification_widget.rs
index c6b7368db..840d6c502 100644
--- a/src/session/content/verification/identity_verification_widget.rs
+++ b/src/session/content/verification/identity_verification_widget.rs
@@ -494,7 +494,7 @@ impl IdentityVerificationWidget {
priv_.label4.set_label(&gettext(
"Scan the QR code from another session logged into this account.",
));
- priv_.label5.set_label(&gettext("You scanned to qr code successfully. You may need to
confirm the verification in the other session."));
+ priv_.label5.set_label(&gettext("You scanned the QR code successfully. You may need to
confirm the verification from the other session."));
priv_.label8.set_label(&gettext("Verify Session"));
priv_
.label9
@@ -521,7 +521,7 @@ impl IdentityVerificationWidget {
.set_label(&gettext("Verify the new session from the current session."));
priv_.label3.set_label(&gettext("Verify Session"));
priv_.label4.set_label(&gettext("Scan the QR code from this session from another session
logged into this account."));
- priv_.label5.set_label(&gettext("You scanned to qr code successfully. You may need to
confirm the verification in the other session."));
+ priv_.label5.set_label(&gettext("You scanned the QR code successfully. You may need to
confirm the verification from the other session."));
priv_.label8.set_label(&gettext("Verify Session"));
priv_.label9.set_label(&gettext(
"Scan this QR code from the newly logged in session.",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]