mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-07-18 02:24:07 +00:00
fix strings
This commit is contained in:
parent
93f1031453
commit
f6f865a6e6
5 changed files with 11 additions and 8 deletions
|
|
@ -1,8 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.3.6
|
||||||
|
|
||||||
|
- Improve: Visibility of the verification badge
|
||||||
|
|
||||||
## 0.3.5
|
## 0.3.5
|
||||||
|
|
||||||
- Improve: Visibility of the verification badge
|
|
||||||
- Fix: Performance issue caused by an out-of-sync Signal session
|
- Fix: Performance issue caused by an out-of-sync Signal session
|
||||||
- Fix: Multiple smaller bug fixes
|
- Fix: Multiple smaller bug fixes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2807,13 +2807,13 @@ abstract class AppLocalizations {
|
||||||
/// No description provided for @qrScannerVerifyHint.
|
/// No description provided for @qrScannerVerifyHint.
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// 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;
|
String get qrScannerVerifyHint;
|
||||||
|
|
||||||
/// No description provided for @qrScannerVerifyUserHint.
|
/// No description provided for @qrScannerVerifyUserHint.
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// 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);
|
String qrScannerVerifyUserHint(Object username);
|
||||||
|
|
||||||
/// No description provided for @openQrCode.
|
/// No description provided for @openQrCode.
|
||||||
|
|
|
||||||
|
|
@ -1587,11 +1587,11 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get qrScannerVerifyHint =>
|
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
|
@override
|
||||||
String qrScannerVerifyUserHint(Object username) {
|
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
|
@override
|
||||||
|
|
|
||||||
|
|
@ -1574,11 +1574,11 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get qrScannerVerifyHint =>
|
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
|
@override
|
||||||
String qrScannerVerifyUserHint(Object username) {
|
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
|
@override
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0679ccad6e217d00e924ec3963f366e3df9a44b1
|
Subproject commit 5f16b9cdd5ddba6086741bfb945564e3d16cee85
|
||||||
Loading…
Reference in a new issue