fix strings

This commit is contained in:
otsmr 2026-07-13 22:10:56 +02:00
parent 93f1031453
commit f6f865a6e6
5 changed files with 11 additions and 8 deletions

View file

@ -1,8 +1,11 @@
# Changelog
## 0.3.6
- Improve: Visibility of the verification badge
## 0.3.5
- Improve: Visibility of the verification badge
- Fix: Performance issue caused by an out-of-sync Signal session
- Fix: Multiple smaller bug fixes

View file

@ -2807,13 +2807,13 @@ abstract class AppLocalizations {
/// No description provided for @qrScannerVerifyHint.
///
/// In en, this message translates to:
/// **'To verify a contact ask them to open their QR code (Chat Lists > QR code button at the bottom right)'**
/// **'To verify, the other person must open their QR code (Chat Lists > QR code button at the bottom right)'**
String get qrScannerVerifyHint;
/// No description provided for @qrScannerVerifyUserHint.
///
/// In en, this message translates to:
/// **'To verify {username} ask them to open their QR code (Chat Lists > QR code button at the bottom right)'**
/// **'To verify, {username} must open their QR code (Chat Lists > QR code button at the bottom right)'**
String qrScannerVerifyUserHint(Object username);
/// No description provided for @openQrCode.

View file

@ -1587,11 +1587,11 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get qrScannerVerifyHint =>
'Um einen Kontakt zu verifizieren, bitte ihn, seinen QR-Code zu öffnen (Chat-Liste > QR-Code-Button unten rechts)';
'Zum Verifizieren muss die andere Person ihren QR-Code öffnen (Chat-Liste > QR-Code-Button unten rechts)';
@override
String qrScannerVerifyUserHint(Object username) {
return 'Um $username zu verifizieren, bitte ihn, seinen QR-Code zu öffnen (Chat-Liste > QR-Code-Button unten rechts)';
return 'Zum Verifizieren muss $username seinen QR-Code öffnen (Chat-Liste > QR-Code-Button unten rechts)';
}
@override

View file

@ -1574,11 +1574,11 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get qrScannerVerifyHint =>
'To verify a contact ask them to open their QR code (Chat Lists > QR code button at the bottom right)';
'To verify, the other person must open their QR code (Chat Lists > QR code button at the bottom right)';
@override
String qrScannerVerifyUserHint(Object username) {
return 'To verify $username ask them to open their QR code (Chat Lists > QR code button at the bottom right)';
return 'To verify, $username must open their QR code (Chat Lists > QR code button at the bottom right)';
}
@override

@ -1 +1 @@
Subproject commit 0679ccad6e217d00e924ec3963f366e3df9a44b1
Subproject commit 5f16b9cdd5ddba6086741bfb945564e3d16cee85