Skip to content

Commit 8e3d8ee

Browse files
authored
Merge pull request #279 from citizenwallet/277-tipping-tip-amout-and-description-not-taken-from-sendtourl-qr-format
277 tipping tip amout and description not taken from sendtourl qr format
2 parents 7824a42 + c7dc1eb commit 8e3d8ee

20 files changed

Lines changed: 186 additions & 173 deletions

lib/l10n/app_en.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,5 +207,6 @@
207207
"more": "More",
208208
"start": "Start",
209209
"connecting": "Connecting",
210-
"accountNotFound": "Account not found"
210+
"accountNotFound": "Account not found",
211+
"sendTip": "Send Tip"
211212
}

lib/l10n/app_es.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,5 +207,6 @@
207207
"more": "Más",
208208
"start": "Iniciar",
209209
"connecting": "Conectando",
210-
"accountNotFound": "Cuenta no encontrada"
210+
"accountNotFound": "Cuenta no encontrada",
211+
"sendTip": "Enviar propina"
211212
}

lib/l10n/app_fr.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,6 @@
206206
"close": "Fermer",
207207
"start": "Commencer",
208208
"connecting": "Connexion",
209-
"accountNotFound": "Compte non trouvé"
209+
"accountNotFound": "Compte non trouvé",
210+
"sendTip": "Envoyer un pourboire"
210211
}

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,6 +1349,12 @@ abstract class AppLocalizations {
13491349
/// In en, this message translates to:
13501350
/// **'Learn More'**
13511351
String get learnMore;
1352+
1353+
/// No description provided for @sendTip.
1354+
///
1355+
/// In en, this message translates to:
1356+
/// **'Send Tip'**
1357+
String get sendTip;
13521358
}
13531359

13541360
class _AppLocalizationsDelegate

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,4 +676,7 @@ class AppLocalizationsEn extends AppLocalizations {
676676

677677
@override
678678
String get learnMore => 'Learn More';
679+
680+
@override
681+
String get sendTip => 'Send Tip';
679682
}

lib/l10n/app_localizations_es.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,4 +680,7 @@ class AppLocalizationsEs extends AppLocalizations {
680680

681681
@override
682682
String get learnMore => 'Más información';
683+
684+
@override
685+
String get sendTip => 'Enviar propina';
683686
}

lib/l10n/app_localizations_fr.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,4 +681,7 @@ class AppLocalizationsFr extends AppLocalizations {
681681

682682
@override
683683
String get learnMore => 'En savoir plus';
684+
685+
@override
686+
String get sendTip => 'Envoyer un pourboire';
684687
}

lib/l10n/app_localizations_nl.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,4 +683,7 @@ class AppLocalizationsNl extends AppLocalizations {
683683

684684
@override
685685
String get learnMore => 'Meer informatie';
686+
687+
@override
688+
String get sendTip => 'Fooi versturen';
686689
}

lib/l10n/app_nl.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,6 @@
206206
"close": "Sluiten",
207207
"start": "Start",
208208
"connecting": "Verbinding maken",
209-
"accountNotFound": "Account niet gevonden"
209+
"accountNotFound": "Account niet gevonden",
210+
"sendTip": "Fooi versturen"
210211
}

lib/models/send_transaction.dart

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)