Last active
November 13, 2020 23:46
-
-
Save fonkamloic/43553fac0100afad13c5d3c61e0816cd to your computer and use it in GitHub Desktop.
translation file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:i18n_extension/i18n_extension.dart'; | |
extension Localization on String { | |
static var _t = Translations.byLocale("fr_fr") + | |
{ | |
"en_US": { | |
"SAVE YOUR MONEY": "SAVE YOUR MONEY", | |
"Create blocked savings account into which you keep money saved for a specified period of time.": | |
"Create blocked savings account into which you keep money saved for a specified period of time.", | |
"QUICK PAYMENTS": "QUICK PAYMENTS", | |
"Do quick and instantaneous QR-code payment everywhere you are.": | |
"Do quick and instantaneous QR-code payment everywhere you are.", | |
"BUDGET MANAGER": "BUDGET MANAGER", | |
"Create or send Budget Managers to efficiently manage your money.": | |
"Create or send Budget Managers to efficiently manage your money.", | |
"TRUSTED PAYMENTS": "TRUSTED PAYMENTS", | |
"Make secure and trusted payments online.": | |
"Make secure and trusted payments online.", | |
"VIRTUAL CREDIT CARD": "VIRTUAL CREDIT CARD", | |
"Make Transactions online without owning a credit card.": | |
"Make Transactions online without owning a credit card.", | |
// new | |
"Continue with google":"Continue with google", | |
"Continue":"Continue", | |
"By continuing, you agree to the":"By continuing, you agree to the", | |
"Terms and Services":"Terms and Services", | |
"Common":"Common", | |
"Language":"Language", | |
"French":"French", | |
"English":"English", | |
"Security":"Security", | |
"Change Password":"Change Password", | |
"User smart funds":"User smart funds", | |
"Background app lock":"Background app lock", | |
"Enable 2FA":"Enable 2FA", | |
"Rate Us":"Rate Us", | |
"Misc":"Misc", | |
"Create a Savings Account":"Create a Savings Account", | |
"Create a Budget Manager": "Create a Budget Manager", | |
"Make a Quick Payment": "Make a Quick Payment", | |
"Trusted Payment":"Trusted Payment", | |
"Withdraw":"Withdraw", | |
"View all transaction history":"View all transaction history", | |
"Deposit":"Deposit", | |
"Settings":"Settings", | |
// NEw map | |
"Terms and Services": "", | |
"Unlock payment": "", | |
"Create a Budget Manager": "", | |
"Budget Managers": "", | |
"Ex: Retirement Plan": "", | |
"Amount locked": "", | |
"Deposit": "", | |
"Withdraw": "", | |
"Unlock date": "", | |
"User smart funds": "", | |
"TRUSTED PAYMENTS": "", | |
"Security": "", | |
"New Savings Account": "", | |
"What do you want to name this savings account?": "", | |
"Continue with google": "", | |
"Gift from": "", | |
"Terms of Use": "", | |
"What do you want to name this Budget Manager?": "", | |
"Account name": "", | |
"monthly": "", | |
"Withdraw using Orange mobile money": "", | |
"months": "", | |
"Withdraw using MTN mobile money": "", | |
"Select the duration...": "", | |
"Sent a Budget manger": "", | |
"How do you want to be paid? Daily, weekly, etc": "", | |
"Create or send Budget Mangers to efficiently manage your money.": "", | |
"SAVE YOUR MONEY": "", | |
"weekly": "", | |
"Enter the amount to withdraw": "", | |
"Create blocked savings account into which you keep money saved for a specified period of time.": "", | |
"Make Transactions online without owning a credit card.": "", | |
"Make a Quick Payment": "", | |
"Create Budget manger": "", | |
"Rate Us": "", | |
"Phone number": "", | |
"Amount unlocked": "", | |
"When do you want the account to be unlocked?": "", | |
"Settings": "", | |
"Next": "", | |
"Ex: Allowance": "", | |
"days": "", | |
"How much do you want to budget manage?": "", | |
"Enter an amount to save": "", | |
"Current amount": "", | |
"Create a Savings Account": "", | |
"Light mode": "", | |
"Deposit using Orange mobile money": "", | |
"Request Payment unlock": "", | |
"Sign Out": "", | |
"Background app lock": "", | |
"Create Savings": "", | |
"QUICK PAYMENTS": "", | |
"Deposit using MTN mobile money": "", | |
"Do quick and instantaneous QR-code payment everywhere you are.": "", | |
"Status": "", | |
"Budget manager name": "", | |
"Enter the amount to deposit": "", | |
"daily": "", | |
"Total amount": "", | |
"Notifications": "", | |
"Enter the receiver's phone number or email": "", | |
"By continuing, you agree to the": "", | |
"Add": "", | |
"Make secure and trusted payments online.": "", | |
"Change Password": "", | |
"Enter the amount...": "", | |
"Pay rate": "", | |
"What is the frequency of the payment you need?": "", | |
"How much do you want to start your savings account with?": "", | |
"VIRTUAL CREDIT CARD": "", | |
"Enable 2FA": "", | |
"For how long should this budget be manage?": "", | |
"Make a Trusted Payment": "", | |
"View all transaction history": "", | |
"Misc": "", | |
"Rate User": "", | |
"Savings name": "", | |
"Back": "", | |
"Common": "", | |
"Verify": "", | |
"Continue": "", | |
"BUDGET MANAGER": "", | |
"Language": "", | |
"Trusted Payment": "", | |
"Sender": "", | |
"Receiver": "", | |
"weeks": "" | |
}, | |
"fr_fr": { | |
"SAVE YOUR MONEY": "ÉCONOMISE TON ARGENT", | |
"Create blocked savings account into which you keep money saved for a specified period of time.": | |
"Créez un compte d'épargne bloqué dans lequel vous gardez l'argent économisé pendant une période de temps spécifiée.", | |
"QUICK PAYMENTS": "PAIEMENTS RAPIDES", | |
"Do quick and instantaneous QR-code payment everywhere you are.": | |
"Effectuez un paiement rapide et instantané par code QR où que vous soyez.", | |
"BUDGET MANAGER": "GESTIONNAIRE DE BUDGET", | |
"Create or send Budget Managers to efficiently manage your money.": | |
"Créez ou envoyez des gestionnaires de budget pour gérer efficacement votre argent.", | |
"TRUSTED PAYMENTS": "PAIEMENTS DE CONFIANCE", | |
"Make secure and trusted payments online.": "Effectuez des paiements en ligne sécurisés et fiables.", | |
"VIRTUAL CREDIT CARD": "CARTE DE CRÉDIT VIRTUELLE", | |
"Make Transactions online without owning a credit card.": | |
"Effectuez des transactions en ligne sans posséder de carte de crédit.", | |
}, | |
}; | |
String fill(List<Object> params) => localizeFill(this, params); | |
String get i18n => localize(this, _t); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment