File tree Expand file tree Collapse file tree 8 files changed +18
-4
lines changed
modules/manage_task_champion_creds/views Expand file tree Collapse file tree 8 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,11 @@ class ManageTaskChampionCredsView
150150 strokeWidth: 2.0 ,
151151 ),
152152 )
153- : const Text ('Save Credentials' ),
153+ : Text (SentenceManager (
154+ currentLanguage:
155+ AppSettings .selectedLanguage)
156+ .sentences
157+ .saveCredentials),
154158 ))),
155159 const SizedBox (height: 10 ),
156160 Text (
Original file line number Diff line number Diff line change @@ -645,6 +645,8 @@ class BengaliSentences extends Sentences {
645645 @override
646646 String get credentialsSavedSuccessfully => 'শংসাপত্র সফলভাবে সংরক্ষিত হয়েছে' ;
647647 @override
648+ String get saveCredentials => 'ক্রেডেনশিয়ালস সংরক্ষণ করুন' ;
649+ @override
648650 String get tip =>
649651 "টিপ: আপনার শংসাপত্র পেতে উপরের ডানদিকে তথ্য আইকনে ক্লিক করুন" ;
650652 @override
Original file line number Diff line number Diff line change @@ -634,6 +634,8 @@ class EnglishSentences extends Sentences {
634634 @override
635635 String get credentialsSavedSuccessfully => 'Credentials saved successfully' ;
636636 @override
637+ String get saveCredentials => 'save credentials' ;
638+ @override
637639 String get tip =>
638640 "Tip: Click on the info icon in the top right corner to get your credentials" ;
639641 @override
Original file line number Diff line number Diff line change @@ -660,6 +660,8 @@ class FrenchSentences extends Sentences {
660660 String get credentialsSavedSuccessfully =>
661661 'Identifiants enregistrés avec succès' ;
662662 @override
663+ String get saveCredentials => 'enregistrer les identifiants' ;
664+ @override
663665 String get tip =>
664666 "Astuce : Cliquez sur l'icône d'information en haut à droite pour obtenir vos identifiants" ;
665667 @override
Original file line number Diff line number Diff line change @@ -623,6 +623,8 @@ class HindiSentences extends Sentences {
623623 String get credentialsSavedSuccessfully =>
624624 'क्रेडेंशियल्स सफलतापूर्वक सहेजे गए' ;
625625 @override
626+ String get saveCredentials => 'क्रेडेंशियल्स सहेजें' ;
627+ @override
626628 String get tip =>
627629 "टिप: अपनी क्रेडेंशियल्स प्राप्त करने के लिए ऊपर दाईं ओर स्थित जानकारी आइकन पर क्लिक करें" ;
628630 @override
Original file line number Diff line number Diff line change @@ -646,6 +646,8 @@ class MarathiSentences extends Sentences {
646646 String get credentialsSavedSuccessfully =>
647647 'क्रेडेन्शियल्स यशस्वीरित्या जतन केले' ;
648648 @override
649+ String get saveCredentials => 'क्रेडेन्शियल्स जतन करा' ;
650+ @override
649651 String get tip =>
650652 "टीप: तुमची क्रेडेन्शियल्स मिळवण्यासाठी वरच्या उजव्या कोपऱ्यातील माहिती चिन्हावर क्लिक करा" ;
651653 @override
Original file line number Diff line number Diff line change 1- import 'package:flutter/material.dart' ;
2- import 'package:taskwarrior/app/utils/taskchampion/credentials_storage.dart' ;
3-
41abstract class Sentences {
52 String get helloWorld;
63
@@ -342,4 +339,5 @@ abstract class Sentences {
342339 String get success;
343340 String get credentialsSavedSuccessfully;
344341 String get tip;
342+ String get saveCredentials;
345343}
Original file line number Diff line number Diff line change @@ -648,6 +648,8 @@ class SpanishSentences extends Sentences {
648648 @override
649649 String get credentialsSavedSuccessfully => 'Credenciales guardadas con éxito' ;
650650 @override
651+ String get saveCredentials => 'guardar credenciales' ;
652+ @override
651653 String get tip =>
652654 "Consejo: Haz clic en el ícono de información en la esquina superior derecha para obtener tus credenciales" ;
653655 @override
You can’t perform that action at this time.
0 commit comments