mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
Merge branch 'main' into main
This commit is contained in:
commit
e6f562b43e
27 changed files with 767 additions and 56 deletions
|
@ -101,6 +101,7 @@ Edit the applicable `strings_XX.arb` file in `res/values/` and open a pull reque
|
||||||
- Chinese
|
- Chinese
|
||||||
- Korean
|
- Korean
|
||||||
- Arabic
|
- Arabic
|
||||||
|
- Burmese
|
||||||
|
|
||||||
## Add a new language
|
## Add a new language
|
||||||
|
|
||||||
|
@ -118,7 +119,7 @@ The only parts to be translated, if needed, are the values m and s after the var
|
||||||
|
|
||||||
4. Add the language to `lib/entities/language_service.dart` under both `supportedLocales` and `localeCountryCode`. Use the name of the language in the local language and in English in parentheses after for `supportedLocales`. Use the [ISO 3166-1 alpha-3 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) for `localeCountryCode`. You must choose one country, so choose the country with the most native speakers of this language or is otherwise best associated with this language.
|
4. Add the language to `lib/entities/language_service.dart` under both `supportedLocales` and `localeCountryCode`. Use the name of the language in the local language and in English in parentheses after for `supportedLocales`. Use the [ISO 3166-1 alpha-3 code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) for `localeCountryCode`. You must choose one country, so choose the country with the most native speakers of this language or is otherwise best associated with this language.
|
||||||
|
|
||||||
5. Add a relevant flag to `assets/images/flags/XXXX.png`, replacing XXXX with the 3 digit localeCountryCode. The image must be 42x36 pixels with a 3 pixels of transparent margin on all 4 sides.
|
5. Add a relevant flag to `assets/images/flags/XXXX.png`, replacing XXXX with the 3 digit localeCountryCode. The image must be 42x26 pixels with a 3 pixels of transparent margin on all 4 sides. You can resize the flag with [paint.net](https://www.getpaint.net/) to 36x20 pixels, expand the canvas to 42x26 pixels with the flag anchored in the middle, and then manually delete the 3 pixels on each side to make transparent. Or you can use another program like Photoshop.
|
||||||
|
|
||||||
## Add a new fiat currency
|
## Add a new fiat currency
|
||||||
|
|
||||||
|
@ -128,4 +129,4 @@ The only parts to be translated, if needed, are the values m and s after the var
|
||||||
|
|
||||||
3. Add the raw mapping underneath in `lib/entities/fiat_currency.dart` following the same format as the others.
|
3. Add the raw mapping underneath in `lib/entities/fiat_currency.dart` following the same format as the others.
|
||||||
|
|
||||||
4. Add a flag of the issuing country or organization to `assets/images/flags/XXXX.png`, replacing XXXX with the ISO 3166-1 alpha-3 code used above (eg: `usa.png`, `eur.png`). Do not add this if the flag with the same name already exists. The image must be 42x36 pixels with a 3 pixels of transparent margin on all 4 sides.
|
4. Add a flag of the issuing country or organization to `assets/images/flags/XXXX.png`, replacing XXXX with the ISO 3166-1 alpha-3 code used above (eg: `usa.png`, `eur.png`). Do not add this if the flag with the same name already exists. The image must be 42x26 pixels with a 3 pixels of transparent margin on all 4 sides.
|
||||||
|
|
BIN
assets/images/flags/mmr.png
Normal file
BIN
assets/images/flags/mmr.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 902 B |
|
@ -83,23 +83,24 @@ class CryptoCurrency extends EnumerableItem<int> with Serializable<int> {
|
||||||
xusd,
|
xusd,
|
||||||
];
|
];
|
||||||
|
|
||||||
static const xmr = CryptoCurrency(title: 'XMR', iconPath: 'assets/images/monero_icon.png', fullName: 'Monero', raw: 0, name: 'xmr');
|
// title, tag (if applicable), fullName (if unique), raw, name, iconPath
|
||||||
static const ada = CryptoCurrency(title: 'ADA', iconPath: 'assets/images/ada_icon.png', fullName: 'Cardano', raw: 1, name: 'ada');
|
static const xmr = CryptoCurrency(title: 'XMR', fullName: 'Monero', raw: 0, name: 'xmr', iconPath: 'assets/images/monero_icon.png');
|
||||||
static const bch = CryptoCurrency(title: 'BCH', iconPath: 'assets/images/bch_icon.png',fullName: 'Bitcoin Cash', raw: 2, name: 'bch');
|
static const ada = CryptoCurrency(title: 'ADA', fullName: 'Cardano', raw: 1, name: 'ada', iconPath: 'assets/images/ada_icon.png');
|
||||||
static const bnb = CryptoCurrency(title: 'BNB', iconPath: 'assets/images/bnb_icon.png', tag: 'BSC', fullName: 'Binance Coin', raw: 3, name: 'bnb');
|
static const bch = CryptoCurrency(title: 'BCH', fullName: 'Bitcoin Cash', raw: 2, name: 'bch', iconPath: 'assets/images/bch_icon.png');
|
||||||
static const btc = CryptoCurrency(title: 'BTC', iconPath: 'assets/images/btc.png', fullName: 'Bitcoin', raw: 4, name: 'btc');
|
static const bnb = CryptoCurrency(title: 'BNB', tag: 'BSC', fullName: 'Binance Coin', raw: 3, name: 'bnb', iconPath: 'assets/images/bnb_icon.png');
|
||||||
static const dai = CryptoCurrency(title: 'DAI', iconPath: 'assets/images/dai_icon.png', tag: 'ETH', fullName: 'Dai', raw: 5, name: 'dai');
|
static const btc = CryptoCurrency(title: 'BTC', fullName: 'Bitcoin', raw: 4, name: 'btc', iconPath: 'assets/images/btc.png');
|
||||||
static const dash = CryptoCurrency(title: 'DASH', iconPath: 'assets/images/dash_icon.png', fullName: 'Dash', raw: 6, name: 'dash');
|
static const dai = CryptoCurrency(title: 'DAI', tag: 'ETH', fullName: 'Dai', raw: 5, name: 'dai', iconPath: 'assets/images/dai_icon.png');
|
||||||
static const eos = CryptoCurrency(title: 'EOS', iconPath: 'assets/images/eos_icon.png', fullName: 'EOS', raw: 7, name: 'eos');
|
static const dash = CryptoCurrency(title: 'DASH', fullName: 'Dash', raw: 6, name: 'dash', iconPath: 'assets/images/dash_icon.png');
|
||||||
static const eth = CryptoCurrency(title: 'ETH', iconPath: 'assets/images/eth_icon.png', fullName: 'Ethereum', raw: 8, name: 'eth');
|
static const eos = CryptoCurrency(title: 'EOS', fullName: 'EOS', raw: 7, name: 'eos', iconPath: 'assets/images/eos_icon.png');
|
||||||
static const ltc = CryptoCurrency(title: 'LTC', iconPath: 'assets/images/litecoin-ltc_icon.png', fullName: 'Litecoin', raw: 9, name: 'ltc');
|
static const eth = CryptoCurrency(title: 'ETH', fullName: 'Ethereum', raw: 8, name: 'eth', iconPath: 'assets/images/eth_icon.png');
|
||||||
|
static const ltc = CryptoCurrency(title: 'LTC', fullName: 'Litecoin', raw: 9, name: 'ltc', iconPath: 'assets/images/litecoin-ltc_icon.png');
|
||||||
static const nano = CryptoCurrency(title: 'NANO', raw: 10, name: 'nano');
|
static const nano = CryptoCurrency(title: 'NANO', raw: 10, name: 'nano');
|
||||||
static const trx = CryptoCurrency(title: 'TRX', iconPath: 'assets/images/trx_icon.png', fullName: 'TRON', raw: 11, name: 'trx');
|
static const trx = CryptoCurrency(title: 'TRX', fullName: 'TRON', raw: 11, name: 'trx', iconPath: 'assets/images/trx_icon.png');
|
||||||
static const usdt = CryptoCurrency(title: 'USDT', iconPath: 'assets/images/usdt_icon.png', tag: 'OMNI', fullName: 'USDT', raw: 12, name: 'usdt');
|
static const usdt = CryptoCurrency(title: 'USDT', tag: 'OMNI', fullName: 'USDT Tether', raw: 12, name: 'usdt', iconPath: 'assets/images/usdt_icon.png');
|
||||||
static const usdterc20 = CryptoCurrency(title: 'USDT', iconPath: 'assets/images/usdterc20_icon.png', tag: 'ETH', fullName: 'USDT', raw: 13, name: 'usdterc20');
|
static const usdterc20 = CryptoCurrency(title: 'USDT', tag: 'ETH', fullName: 'USDT Tether', raw: 13, name: 'usdterc20', iconPath: 'assets/images/usdterc20_icon.png');
|
||||||
static const xlm = CryptoCurrency(title: 'XLM', iconPath: 'assets/images/xlm_icon.png', fullName: 'Stellar', raw: 14, name: 'xlm');
|
static const xlm = CryptoCurrency(title: 'XLM', fullName: 'Stellar', raw: 14, name: 'xlm', iconPath: 'assets/images/xlm_icon.png');
|
||||||
static const xrp = CryptoCurrency(title: 'XRP', iconPath: 'assets/images/xrp_icon.png', fullName: 'Ripple', raw: 15, name: 'xrp');
|
static const xrp = CryptoCurrency(title: 'XRP', fullName: 'Ripple', raw: 15, name: 'xrp', iconPath: 'assets/images/xrp_icon.png');
|
||||||
static const xhv = CryptoCurrency(title: 'XHV', iconPath: 'assets/images/xhv_logo.png', fullName: 'Haven Protocol', raw: 16, name: 'xhv');
|
static const xhv = CryptoCurrency(title: 'XHV', fullName: 'Haven Protocol', raw: 16, name: 'xhv', iconPath: 'assets/images/xhv_logo.png');
|
||||||
|
|
||||||
static const xag = CryptoCurrency(title: 'XAG', tag: 'XHV', raw: 17, name: 'xag');
|
static const xag = CryptoCurrency(title: 'XAG', tag: 'XHV', raw: 17, name: 'xag');
|
||||||
static const xau = CryptoCurrency(title: 'XAU', tag: 'XHV', raw: 18, name: 'xau');
|
static const xau = CryptoCurrency(title: 'XAU', tag: 'XHV', raw: 18, name: 'xau');
|
||||||
|
@ -115,39 +116,39 @@ class CryptoCurrency extends EnumerableItem<int> with Serializable<int> {
|
||||||
static const xnzd = CryptoCurrency(title: 'XNZD', tag: 'XHV', raw: 28, name: 'xnzd');
|
static const xnzd = CryptoCurrency(title: 'XNZD', tag: 'XHV', raw: 28, name: 'xnzd');
|
||||||
static const xusd = CryptoCurrency(title: 'XUSD', tag: 'XHV', raw: 29, name: 'xusd');
|
static const xusd = CryptoCurrency(title: 'XUSD', tag: 'XHV', raw: 29, name: 'xusd');
|
||||||
|
|
||||||
static const ape = CryptoCurrency(title: 'APE', iconPath: 'assets/images/ape_icon.png', tag: 'ETH', raw: 30, name: 'ape');
|
static const ape = CryptoCurrency(title: 'APE', tag: 'ETH', fullName: 'ApeCoin', raw: 30, name: 'ape', iconPath: 'assets/images/ape_icon.png');
|
||||||
static const avaxc = CryptoCurrency(title: 'AVAX', iconPath: 'assets/images/avaxc_icon.png', tag: 'C-CHAIN', raw: 31, name: 'avaxc');
|
static const avaxc = CryptoCurrency(title: 'AVAX', tag: 'C-CHAIN', raw: 31, name: 'avaxc', iconPath: 'assets/images/avaxc_icon.png');
|
||||||
static const btt = CryptoCurrency(title: 'BTT', iconPath: 'assets/images/btt_icon.png', raw: 32, name: 'btt');
|
static const btt = CryptoCurrency(title: 'BTT', tag: 'ETH', fullName: 'BitTorrent', raw: 32, name: 'btt', iconPath: 'assets/images/btt_icon.png');
|
||||||
static const bttc = CryptoCurrency(title: 'BTTC', iconPath: 'assets/images/bttbsc_icon.png',fullName: 'BitTorrent-NEW (Binance Smart Chain)', tag: 'BSC', raw: 33, name: 'bttc');
|
static const bttc = CryptoCurrency(title: 'BTTC', tag: 'BSC', fullName: 'BitTorrent-NEW', raw: 33, name: 'bttc', iconPath: 'assets/images/bttbsc_icon.png');
|
||||||
static const doge = CryptoCurrency(title: 'DOGE', iconPath: 'assets/images/doge_icon.png', raw: 34, name: 'doge');
|
static const doge = CryptoCurrency(title: 'DOGE', fullName: 'Dogecoin', raw: 34, name: 'doge', iconPath: 'assets/images/doge_icon.png');
|
||||||
static const firo = CryptoCurrency(title: 'FIRO', iconPath: 'assets/images/firo_icon.png', raw: 35, name: 'firo');
|
static const firo = CryptoCurrency(title: 'FIRO', raw: 35, name: 'firo', iconPath: 'assets/images/firo_icon.png');
|
||||||
static const usdttrc20 = CryptoCurrency(title: 'USDT', iconPath: 'assets/images/usdttrc20_icon.png', tag: 'TRX', raw: 36, name: 'usdttrc20');
|
static const usdttrc20 = CryptoCurrency(title: 'USDT', tag: 'TRX', fullName: 'USDT Tether', raw: 36, name: 'usdttrc20', iconPath: 'assets/images/usdttrc20_icon.png');
|
||||||
static const hbar = CryptoCurrency(title: 'HBAR', iconPath: 'assets/images/hbar_icon.png', raw: 37, name: 'hbar');
|
static const hbar = CryptoCurrency(title: 'HBAR', fullName: 'Hedera', raw: 37, name: 'hbar', iconPath: 'assets/images/hbar_icon.png', );
|
||||||
static const sc = CryptoCurrency(title: 'SC', iconPath: 'assets/images/sc_icon.png', raw: 38, name: 'sc');
|
static const sc = CryptoCurrency(title: 'SC', fullName: 'Siacoin', raw: 38, name: 'sc', iconPath: 'assets/images/sc_icon.png');
|
||||||
static const sol = CryptoCurrency(title: 'SOL', iconPath: 'assets/images/sol_icon.png', raw: 39, name: 'sol');
|
static const sol = CryptoCurrency(title: 'SOL', fullName: 'Solana', raw: 39, name: 'sol', iconPath: 'assets/images/sol_icon.png');
|
||||||
static const usdc = CryptoCurrency(title: 'USDC', iconPath: 'assets/images/usdc_icon.png', tag: 'ETH', raw: 40, name: 'usdc');
|
static const usdc = CryptoCurrency(title: 'USDC', tag: 'ETH', fullName: 'USD Coin', raw: 40, name: 'usdc', iconPath: 'assets/images/usdc_icon.png');
|
||||||
static const usdcsol = CryptoCurrency(title: 'USDC', iconPath: 'assets/images/usdcsol_icon.png', tag: 'SOL', raw: 41, name: 'usdcsol');
|
static const usdcsol = CryptoCurrency(title: 'USDC', tag: 'SOL', fullName: 'USDC Coin', raw: 41, name: 'usdcsol', iconPath: 'assets/images/usdcsol_icon.png');
|
||||||
static const zaddr = CryptoCurrency(title: 'ZZEC', tag: 'ZEC', fullName: 'Shielded Zcash', iconPath: 'assets/images/zaddr_icon.png', raw: 42, name: 'zaddr');
|
static const zaddr = CryptoCurrency(title: 'ZZEC', tag: 'ZEC', fullName: 'Shielded Zcash', iconPath: 'assets/images/zaddr_icon.png', raw: 42, name: 'zaddr');
|
||||||
static const zec = CryptoCurrency(title: 'TZEC', tag: 'ZEC', fullName: 'Transparent Zcash', iconPath: 'assets/images/zec_icon.png', raw: 43, name: 'zec');
|
static const zec = CryptoCurrency(title: 'TZEC', tag: 'ZEC', fullName: 'Transparent Zcash', iconPath: 'assets/images/zec_icon.png', raw: 43, name: 'zec');
|
||||||
static const zen = CryptoCurrency(title: 'ZEN', iconPath: 'assets/images/zen_icon.png', raw: 44, name: 'zen');
|
static const zen = CryptoCurrency(title: 'ZEN', fullName: 'Horizen', raw: 44, name: 'zen', iconPath: 'assets/images/zen_icon.png');
|
||||||
static const xvg = CryptoCurrency(title: 'XVG', fullName: 'Verge', iconPath: 'assets/images/xvg_icon.png', raw: 45, name: 'xvg');
|
static const xvg = CryptoCurrency(title: 'XVG', fullName: 'Verge', raw: 45, name: 'xvg', iconPath: 'assets/images/xvg_icon.png');
|
||||||
|
|
||||||
static const usdcpoly = CryptoCurrency(title: 'USDC', iconPath: 'assets/images/usdc_icon.png', tag: 'POLY', raw: 46, name: 'usdcpoly');
|
static const usdcpoly = CryptoCurrency(title: 'USDC', tag: 'POLY', fullName: 'USD Coin', raw: 46, name: 'usdcpoly', iconPath: 'assets/images/usdc_icon.png');
|
||||||
static const dcr = CryptoCurrency(title: 'DCR', iconPath: 'assets/images/dcr_icon.png', raw: 47, name: 'dcr');
|
static const dcr = CryptoCurrency(title: 'DCR', fullName: 'Decred', raw: 47, name: 'dcr', iconPath: 'assets/images/dcr_icon.png');
|
||||||
static const kmd = CryptoCurrency(title: 'KMD', iconPath: 'assets/images/kmd_icon.png', raw: 48, name: 'kmd');
|
static const kmd = CryptoCurrency(title: 'KMD', fullName: 'Komodo', raw: 48, name: 'kmd', iconPath: 'assets/images/kmd_icon.png');
|
||||||
static const mana = CryptoCurrency(title: 'MANA', iconPath: 'assets/images/mana_icon.png', tag: 'ETH', raw: 49, name: 'mana');
|
static const mana = CryptoCurrency(title: 'MANA', tag: 'ETH', fullName: 'Decentraland', raw: 49, name: 'mana', iconPath: 'assets/images/mana_icon.png');
|
||||||
static const maticpoly = CryptoCurrency(title: 'MATIC', iconPath: 'assets/images/matic_icon.png', tag: 'POLY', raw: 50, name: 'maticpoly');
|
static const maticpoly = CryptoCurrency(title: 'MATIC', tag: 'POLY', fullName: 'Polygon', raw: 50, name: 'maticpoly', iconPath: 'assets/images/matic_icon.png');
|
||||||
static const matic = CryptoCurrency(title: 'MATIC', iconPath: 'assets/images/matic_icon.png', tag: 'ETH', raw: 51, name: 'matic');
|
static const matic = CryptoCurrency(title: 'MATIC', tag: 'ETH', fullName: 'Polygon', raw: 51, name: 'matic', iconPath: 'assets/images/matic_icon.png');
|
||||||
static const mkr = CryptoCurrency(title: 'MKR', iconPath: 'assets/images/mkr_icon.png', tag: 'ETH', raw: 52, name: 'mkr');
|
static const mkr = CryptoCurrency(title: 'MKR', tag: 'ETH', fullName: 'Maker', raw: 52, name: 'mkr', iconPath: 'assets/images/mkr_icon.png');
|
||||||
static const near = CryptoCurrency(title: 'NEAR', iconPath: 'assets/images/near_icon.png', raw: 53, name: 'near');
|
static const near = CryptoCurrency(title: 'NEAR', fullName: 'NEAR Protocol', raw: 53, name: 'near', iconPath: 'assets/images/near_icon.png');
|
||||||
static const oxt = CryptoCurrency(title: 'OXT', iconPath: 'assets/images/oxt_icon.png', tag: 'ETH', raw: 54, name: 'oxt');
|
static const oxt = CryptoCurrency(title: 'OXT', tag: 'ETH', fullName: 'Orchid', raw: 54, name: 'oxt', iconPath: 'assets/images/oxt_icon.png');
|
||||||
static const paxg = CryptoCurrency(title: 'PAXG', iconPath: 'assets/images/paxg_icon.png', tag: 'ETH', raw: 55, name: 'paxg');
|
static const paxg = CryptoCurrency(title: 'PAXG', tag: 'ETH', fullName: 'Pax Gold', raw: 55, name: 'paxg', iconPath: 'assets/images/paxg_icon.png');
|
||||||
static const pivx = CryptoCurrency(title: 'PIVX', iconPath: 'assets/images/pivx_icon.png', raw: 56, name: 'pivx');
|
static const pivx = CryptoCurrency(title: 'PIVX', raw: 56, name: 'pivx', iconPath: 'assets/images/pivx_icon.png');
|
||||||
static const rune = CryptoCurrency(title: 'RUNE', iconPath: 'assets/images/rune_icon.png', raw: 57, name: 'rune');
|
static const rune = CryptoCurrency(title: 'RUNE', fullName: 'Thorchain', raw: 57, name: 'rune', iconPath: 'assets/images/rune_icon.png');
|
||||||
static const rvn = CryptoCurrency(title: 'RVN', iconPath: 'assets/images/rvn_icon.png', raw: 58, name: 'rvn');
|
static const rvn = CryptoCurrency(title: 'RVN', fullName: 'Ravencoin', raw: 58, name: 'rvn', iconPath: 'assets/images/rvn_icon.png');
|
||||||
static const scrt = CryptoCurrency(title: 'SCRT', iconPath: 'assets/images/scrt_icon.png', raw: 59, name: 'scrt');
|
static const scrt = CryptoCurrency(title: 'SCRT', fullName: 'Secret Network', raw: 59, name: 'scrt', iconPath: 'assets/images/scrt_icon.png');
|
||||||
static const uni = CryptoCurrency(title: 'UNI', iconPath: 'assets/images/uni_icon.png', tag: 'ETH', raw: 60, name: 'uni');
|
static const uni = CryptoCurrency(title: 'UNI', tag: 'ETH', fullName: 'Uniswap', raw: 60, name: 'uni', iconPath: 'assets/images/uni_icon.png');
|
||||||
static const stx = CryptoCurrency(title: 'STX', iconPath: 'assets/images/stx_icon.png', raw: 61, name: 'stx');
|
static const stx = CryptoCurrency(title: 'STX', fullName: 'Stacks', raw: 61, name: 'stx', iconPath: 'assets/images/stx_icon.png');
|
||||||
|
|
||||||
static final Map<int, CryptoCurrency> _rawCurrencyMap =
|
static final Map<int, CryptoCurrency> _rawCurrencyMap =
|
||||||
[...all, ...havenCurrencies].fold<Map<int, CryptoCurrency>>(<int, CryptoCurrency>{}, (acc, item) {
|
[...all, ...havenCurrencies].fold<Map<int, CryptoCurrency>>(<int, CryptoCurrency>{}, (acc, item) {
|
||||||
|
|
|
@ -21,7 +21,8 @@ class LanguageService {
|
||||||
'it': 'Italiano (Italian)',
|
'it': 'Italiano (Italian)',
|
||||||
'th': 'ภาษาไทย (Thai)',
|
'th': 'ภาษาไทย (Thai)',
|
||||||
'ar': 'العربية (Arabic)',
|
'ar': 'العربية (Arabic)',
|
||||||
'tr': 'Türkçe (Turkish)'
|
'tr': 'Türkçe (Turkish)',
|
||||||
|
'my': 'မြန်မာ (Burmese)',
|
||||||
};
|
};
|
||||||
|
|
||||||
static const Map<String, String> localeCountryCode = {
|
static const Map<String, String> localeCountryCode = {
|
||||||
|
@ -42,7 +43,8 @@ class LanguageService {
|
||||||
'it': 'ita',
|
'it': 'ita',
|
||||||
'th': 'tha',
|
'th': 'tha',
|
||||||
'ar': 'sau',
|
'ar': 'sau',
|
||||||
'tr': 'tur'
|
'tr': 'tur',
|
||||||
|
'my': 'mmr',
|
||||||
};
|
};
|
||||||
|
|
||||||
static final list = <String, String> {};
|
static final list = <String, String> {};
|
||||||
|
|
|
@ -73,7 +73,7 @@ class ConnectionSyncPage extends BasePage {
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return AlertWithTwoActions(
|
return AlertWithTwoActions(
|
||||||
alertTitle: S.of(context).change_current_node_title,
|
alertTitle: S.of(context).change_current_node_title,
|
||||||
alertContent: S.of(context).change_current_node(node.uriRaw),
|
alertContent: nodeListViewModel.getAlertContent(node.uriRaw),
|
||||||
leftButtonText: S.of(context).cancel,
|
leftButtonText: S.of(context).cancel,
|
||||||
rightButtonText: S.of(context).change,
|
rightButtonText: S.of(context).change,
|
||||||
actionLeftButton: () => Navigator.of(context).pop(),
|
actionLeftButton: () => Navigator.of(context).pop(),
|
||||||
|
|
|
@ -48,6 +48,8 @@ class CollapsibleSectionList extends SectionStandardList {
|
||||||
child: ListTileTheme(
|
child: ListTileTheme(
|
||||||
contentPadding: EdgeInsets.only(right: 16,top:sectionIndex>0?26:0),
|
contentPadding: EdgeInsets.only(right: 16,top:sectionIndex>0?26:0),
|
||||||
child: ExpansionTile(
|
child: ExpansionTile(
|
||||||
|
textColor: themeColor,
|
||||||
|
iconColor: themeColor,
|
||||||
title: sectionTitleBuilder == null
|
title: sectionTitleBuilder == null
|
||||||
? Container()
|
? Container()
|
||||||
: Container(child: buildTitle(items, sectionIndex, context)),
|
: Container(child: buildTitle(items, sectionIndex, context)),
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
import 'package:cw_core/wallet_base.dart';
|
import 'package:cw_core/wallet_base.dart';
|
||||||
|
@ -30,6 +31,10 @@ abstract class NodeListViewModelBase with Store {
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String getAlertContent(String uri) =>
|
||||||
|
S.current.change_current_node(uri) +
|
||||||
|
'${uri.endsWith('.onion') || uri.contains('.onion:') ? '\n' + S.current.orbot_running_alert : ''}';
|
||||||
|
|
||||||
final ObservableList<Node> nodes;
|
final ObservableList<Node> nodes;
|
||||||
final SettingsStore settingsStore;
|
final SettingsStore settingsStore;
|
||||||
final WalletBase wallet;
|
final WalletBase wallet;
|
||||||
|
|
|
@ -677,5 +677,6 @@
|
||||||
"disabled":"معطلة",
|
"disabled":"معطلة",
|
||||||
"enabled":"ممكنة",
|
"enabled":"ممكنة",
|
||||||
"tor_only":"Tor فقط",
|
"tor_only":"Tor فقط",
|
||||||
"unmatched_currencies": "عملة محفظتك الحالية لا تتطابق مع عملة QR الممسوحة ضوئيًا"
|
"unmatched_currencies": "عملة محفظتك الحالية لا تتطابق مع عملة QR الممسوحة ضوئيًا",
|
||||||
|
"orbot_running_alert": "يرجى التأكد من تشغيل Orbot قبل الاتصال بهذه العقدة."
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Ermöglicht",
|
"enabled": "Ermöglicht",
|
||||||
"tor_only": "Nur Tor",
|
"tor_only": "Nur Tor",
|
||||||
"unmatched_currencies": "Die Währung Ihres aktuellen Wallets stimmt nicht mit der des gescannten QR überein",
|
"unmatched_currencies": "Die Währung Ihres aktuellen Wallets stimmt nicht mit der des gescannten QR überein",
|
||||||
|
"orbot_running_alert": "Bitte stellen Sie sicher, dass Orbot läuft, bevor Sie sich mit diesem Knoten verbinden.",
|
||||||
"contact_list_contacts": "Kontakte",
|
"contact_list_contacts": "Kontakte",
|
||||||
"contact_list_wallets": "Meine Geldbörsen"
|
"contact_list_wallets": "Meine Geldbörsen"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Enabled",
|
"enabled": "Enabled",
|
||||||
"tor_only": "Tor only",
|
"tor_only": "Tor only",
|
||||||
"unmatched_currencies": "Your current wallet's currency does not match that of the scanned QR",
|
"unmatched_currencies": "Your current wallet's currency does not match that of the scanned QR",
|
||||||
|
"orbot_running_alert": "Please make sure Orbot is running prior to connecting to this node.",
|
||||||
"contact_list_contacts": "Contacts",
|
"contact_list_contacts": "Contacts",
|
||||||
"contact_list_wallets": "My Wallets"
|
"contact_list_wallets": "My Wallets"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Activado",
|
"enabled": "Activado",
|
||||||
"tor_only": "solo Tor",
|
"tor_only": "solo Tor",
|
||||||
"unmatched_currencies": "La moneda de su billetera actual no coincide con la del QR escaneado",
|
"unmatched_currencies": "La moneda de su billetera actual no coincide con la del QR escaneado",
|
||||||
|
"orbot_running_alert": "Asegúrese de que Orbot se esté ejecutando antes de conectarse a este nodo.",
|
||||||
"contact_list_contacts": "Contactos",
|
"contact_list_contacts": "Contactos",
|
||||||
"contact_list_wallets": "Mis billeteras"
|
"contact_list_wallets": "Mis billeteras"
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
"subaddresses" : "Sous-adresses",
|
"subaddresses" : "Sous-adresses",
|
||||||
"addresses" : "Adresses",
|
"addresses" : "Adresses",
|
||||||
"scan_qr_code" : "Scannez le QR code pour obtenir l'adresse",
|
"scan_qr_code" : "Scannez le QR code pour obtenir l'adresse",
|
||||||
"qr_fullscreen" : "Appuyez pour ouvrir le QR code en plein écran",
|
"qr_fullscreen" : "Appuyez pour ouvrir le QR code en mode plein écran",
|
||||||
"rename" : "Renommer",
|
"rename" : "Renommer",
|
||||||
"choose_account" : "Choisir le compte",
|
"choose_account" : "Choisir le compte",
|
||||||
"create_new_account" : "Créer un nouveau compte",
|
"create_new_account" : "Créer un nouveau compte",
|
||||||
|
@ -267,7 +267,7 @@
|
||||||
"new_subaddress_label_name" : "Nom",
|
"new_subaddress_label_name" : "Nom",
|
||||||
"new_subaddress_create" : "Créer",
|
"new_subaddress_create" : "Créer",
|
||||||
|
|
||||||
"address_label" : "Étiquette de l'adresse",
|
"address_label" : "Nom de l'adresse",
|
||||||
|
|
||||||
"subaddress_title" : "Liste des sous-adresses",
|
"subaddress_title" : "Liste des sous-adresses",
|
||||||
|
|
||||||
|
@ -675,6 +675,7 @@
|
||||||
"disabled": "Désactivé",
|
"disabled": "Désactivé",
|
||||||
"enabled": "Activé",
|
"enabled": "Activé",
|
||||||
"tor_only": "Tor uniquement",
|
"tor_only": "Tor uniquement",
|
||||||
|
"orbot_running_alert": "Veuillez vous assurer qu'Orbot est en cours d'exécution avant de vous connecter à ce nœud.",
|
||||||
"unmatched_currencies": "La devise de votre portefeuille (wallet) actuel ne correspond pas à celle du QR code scanné",
|
"unmatched_currencies": "La devise de votre portefeuille (wallet) actuel ne correspond pas à celle du QR code scanné",
|
||||||
"contact_list_contacts": "Contacts",
|
"contact_list_contacts": "Contacts",
|
||||||
"contact_list_wallets": "Mes portefeuilles (wallets)"
|
"contact_list_wallets": "Mes portefeuilles (wallets)"
|
||||||
|
|
|
@ -677,6 +677,7 @@
|
||||||
"disabled": "अक्षम",
|
"disabled": "अक्षम",
|
||||||
"enabled": "सक्रिय",
|
"enabled": "सक्रिय",
|
||||||
"tor_only": "Tor केवल",
|
"tor_only": "Tor केवल",
|
||||||
|
"orbot_running_alert": "कृपया सुनिश्चित करें कि इस नोड से कनेक्ट करने से पहले Orbot चल रहा है।",
|
||||||
"unmatched_currencies": "आपके वर्तमान वॉलेट की मुद्रा स्कैन किए गए क्यूआर से मेल नहीं खाती" ,
|
"unmatched_currencies": "आपके वर्तमान वॉलेट की मुद्रा स्कैन किए गए क्यूआर से मेल नहीं खाती" ,
|
||||||
"contact_list_contacts": "संपर्क",
|
"contact_list_contacts": "संपर्क",
|
||||||
"contact_list_wallets": "मेरा बटुआ"
|
"contact_list_wallets": "मेरा बटुआ"
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Omogućeno",
|
"enabled": "Omogućeno",
|
||||||
"tor_only": "Samo Tor",
|
"tor_only": "Samo Tor",
|
||||||
"unmatched_currencies": "Valuta vašeg trenutnog novčanika ne odgovara onoj na skeniranom QR-u",
|
"unmatched_currencies": "Valuta vašeg trenutnog novčanika ne odgovara onoj na skeniranom QR-u",
|
||||||
|
"orbot_running_alert": "Provjerite radi li Orbot prije spajanja na ovaj čvor.",
|
||||||
"contact_list_contacts": "Kontakti",
|
"contact_list_contacts": "Kontakti",
|
||||||
"contact_list_wallets": "Moji novčanici"
|
"contact_list_wallets": "Moji novčanici"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Abilitato",
|
"enabled": "Abilitato",
|
||||||
"tor_only": "Solo Tor",
|
"tor_only": "Solo Tor",
|
||||||
"unmatched_currencies": "La valuta del tuo portafoglio attuale non corrisponde a quella del QR scansionato",
|
"unmatched_currencies": "La valuta del tuo portafoglio attuale non corrisponde a quella del QR scansionato",
|
||||||
|
"orbot_running_alert": "Assicurati che Orbot sia in esecuzione prima di connetterti a questo nodo.",
|
||||||
"contact_list_contacts": "Contatti",
|
"contact_list_contacts": "Contatti",
|
||||||
"contact_list_wallets": "I miei portafogli"
|
"contact_list_wallets": "I miei portafogli"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "有効",
|
"enabled": "有効",
|
||||||
"tor_only": "Torのみ",
|
"tor_only": "Torのみ",
|
||||||
"unmatched_currencies": "現在のウォレットの通貨がスキャンされたQRの通貨と一致しません",
|
"unmatched_currencies": "現在のウォレットの通貨がスキャンされたQRの通貨と一致しません",
|
||||||
|
"orbot_running_alert": "このノードに接続する前に、Orbot が実行されていることを確認してください",
|
||||||
"contact_list_contacts": "連絡先",
|
"contact_list_contacts": "連絡先",
|
||||||
"contact_list_wallets": "マイウォレット"
|
"contact_list_wallets": "マイウォレット"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "사용",
|
"enabled": "사용",
|
||||||
"tor_only": "Tor 뿐",
|
"tor_only": "Tor 뿐",
|
||||||
"unmatched_currencies": "현재 지갑의 통화가 스캔한 QR의 통화와 일치하지 않습니다.",
|
"unmatched_currencies": "현재 지갑의 통화가 스캔한 QR의 통화와 일치하지 않습니다.",
|
||||||
|
"orbot_running_alert": "이 노드에 연결하기 전에 Orbot이 실행 중인지 확인하십시오.",
|
||||||
"contact_list_contacts": "콘택트 렌즈",
|
"contact_list_contacts": "콘택트 렌즈",
|
||||||
"contact_list_wallets": "내 지갑"
|
"contact_list_wallets": "내 지갑"
|
||||||
}
|
}
|
||||||
|
|
683
res/values/strings_my.arb
Normal file
683
res/values/strings_my.arb
Normal file
|
@ -0,0 +1,683 @@
|
||||||
|
{
|
||||||
|
"welcome" : "မှကြိုဆိုပါတယ်။",
|
||||||
|
"cake_wallet" : "Cake ပိုက်ဆံအိတ်",
|
||||||
|
"first_wallet_text" : "Monero၊ Bitcoin၊ Litecoin နှင့် Haven အတွက် အလွန်ကောင်းမွန်သော ပိုက်ဆံအိတ်",
|
||||||
|
"please_make_selection" : "သင့်ပိုက်ဆံအိတ်ကို ဖန်တီးရန် သို့မဟုတ် ပြန်လည်ရယူရန် အောက်တွင် ရွေးချယ်မှုတစ်ခု ပြုလုပ်ပါ။",
|
||||||
|
"create_new" : "Wallet အသစ်ဖန်တီးပါ။",
|
||||||
|
"restore_wallet" : "ပိုက်ဆံအိတ်ကို ပြန်ယူပါ။",
|
||||||
|
|
||||||
|
"monero_com" : "Monero.com မှ Cake ပိုက်ဆံအိတ်",
|
||||||
|
"monero_com_wallet_text" : "Monero အတွက် အမိုက်စား ပိုက်ဆံအိတ်",
|
||||||
|
|
||||||
|
"haven_app" : "ဟေးဗင် ကိတ် ဝေါလက်",
|
||||||
|
"haven_app_wallet_text" : "ဟေဗင်အတွက် အံ့ဩစရာကောင်းတဲ့ ပိုက်ဆံအုံး",
|
||||||
|
|
||||||
|
"accounts" : "အကောင့်များ",
|
||||||
|
"edit" : "တည်းဖြတ်ပါ။",
|
||||||
|
"account" : "အကောင့်",
|
||||||
|
"add" : "ထည့်ပါ။",
|
||||||
|
|
||||||
|
|
||||||
|
"address_book" : "လိပ်စာစာအုပ်",
|
||||||
|
"contact" : "ဆက်သွယ်ရန်",
|
||||||
|
"please_select" : "ကျေးဇူးပြု၍ ရွေးချယ်ပါ-",
|
||||||
|
"cancel" : "မလုပ်တော့",
|
||||||
|
"ok" : "ရလား",
|
||||||
|
"contact_name" : "ဆက်သွယ်ရန်အမည်",
|
||||||
|
"reset" : "ပြန်လည်သတ်မှတ်ပါ။",
|
||||||
|
"save" : "သိမ်းဆည်းပါ။",
|
||||||
|
"address_remove_contact" : "အဆက်အသွယ်ကို ဖယ်ရှားပါ။",
|
||||||
|
"address_remove_content" : "ရွေးချယ်ထားသောအဆက်အသွယ်ကို ဖယ်ရှားလိုသည်မှာ သေချာပါသလား။",
|
||||||
|
|
||||||
|
|
||||||
|
"authenticated" : "အစစ်အမှန်",
|
||||||
|
"authentication" : "စစ်ဆေးခြင်း",
|
||||||
|
"failed_authentication" : "အထောက်အထားစိစစ်ခြင်း မအောင်မြင်ပါ။. ${state_error}",
|
||||||
|
|
||||||
|
|
||||||
|
"wallet_menu" : "မီနူး",
|
||||||
|
"Blocks_remaining" : "${status} ဘလောက်များ ကျန်နေပါသည်။",
|
||||||
|
"please_try_to_connect_to_another_node" : "အခြား node သို့ ချိတ်ဆက်ရန် ကြိုးစားပါ။",
|
||||||
|
"xmr_hidden" : "ဝှက်ထားသည်။",
|
||||||
|
"xmr_available_balance" : "လက်ကျန်ငွေ ရရှိနိုင်",
|
||||||
|
"xmr_full_balance" : "မျှတမှု အပြည့်အစုံ",
|
||||||
|
"send" : "ပို့ပါ။",
|
||||||
|
"receive" : "လက်ခံသည်။",
|
||||||
|
"transactions" : "ငွေပေးငွေယူ",
|
||||||
|
"incoming" : "ဝင်လာ",
|
||||||
|
"outgoing" : "အထွက်",
|
||||||
|
"transactions_by_date" : "ရက်စွဲအလိုက် ငွေလွှဲမှုများ",
|
||||||
|
"trades" : "ကုန်သွယ်မှုများ",
|
||||||
|
"filter_by" : "အလိုက် စစ်ထုတ်ပါ။",
|
||||||
|
"today" : "ဒီနေ့",
|
||||||
|
"yesterday" : "မနေ့က",
|
||||||
|
"received" : "ရရှိခဲ့သည်။",
|
||||||
|
"sent" : "ပို့လိုက်ပါတယ်။",
|
||||||
|
"pending" : " (ဆိုင်းငံ့)",
|
||||||
|
"rescan" : "ပြန်စကင်န်လုပ်ပါ။",
|
||||||
|
"reconnect" : "ပြန်လည်ချိတ်ဆက်ပါ။",
|
||||||
|
"wallets" : "ပိုက်ဆံအိတ်",
|
||||||
|
"show_seed" : "မျိုးစေ့ကိုပြပါ။",
|
||||||
|
"show_keys" : "မျိုးစေ့ /သော့များကို ပြပါ။",
|
||||||
|
"address_book_menu" : "လိပ်စာစာအုပ်",
|
||||||
|
"reconnection" : "ပြန်လည်ချိတ်ဆက်မှု",
|
||||||
|
"reconnect_alert_text" : "ပြန်လည်ချိတ်ဆက်လိုသည်မှာ သေချာပါသလား။ ?",
|
||||||
|
|
||||||
|
|
||||||
|
"exchange" : "ချိန်းတယ်။",
|
||||||
|
"clear" : "ရှင်းလင်းသော",
|
||||||
|
"refund_address" : "ပြန်အမ်းငွေလိပ်စာ",
|
||||||
|
"change_exchange_provider" : "အပြန်အလှန် လဲလှယ်ရေး ထောက်ပံ့ပေးသူကို ပြောင်းလဲပါ",
|
||||||
|
"you_will_send" : "မှပြောင်းပါ။",
|
||||||
|
"you_will_get" : "သို့ပြောင်းပါ။",
|
||||||
|
"amount_is_guaranteed" : "ရရှိသည့်ပမာဏကို အာမခံပါသည်။",
|
||||||
|
"amount_is_estimate" : "ရရှိသည့်ပမာဏသည် ခန့်မှန်းချက်တစ်ခုဖြစ်သည်။",
|
||||||
|
"powered_by" : "${title} မှ ပံ့ပိုးပေးသည်",
|
||||||
|
"error" : "အမှား",
|
||||||
|
"estimated" : "ခန့်မှန်း",
|
||||||
|
"min_value" : "အနည်းဆုံး- ${value} ${currency}",
|
||||||
|
"max_value" : "အများဆုံး- ${value} ${currency}",
|
||||||
|
"change_currency" : "ငွေကြေးကိုပြောင်းပါ။",
|
||||||
|
"overwrite_amount" : "ပမာဏကို ထပ်ရေးပါ။",
|
||||||
|
"qr_payment_amount" : "ဤ QR ကုဒ်တွင် ငွေပေးချေမှုပမာဏတစ်ခုပါရှိသည်။ လက်ရှိတန်ဖိုးကို ထပ်ရေးလိုပါသလား။",
|
||||||
|
|
||||||
|
"copy_id" : "ID ကူးယူပါ။",
|
||||||
|
"exchange_result_write_down_trade_id" : "ရှေ့ဆက်ရန် ကုန်သွယ်မှု ID ကို ကူးယူ သို့မဟုတ် ချရေးပါ။",
|
||||||
|
"trade_id" : "ကုန်သွယ်မှု ID:",
|
||||||
|
"copied_to_clipboard" : "ကလစ်ဘုတ်သို့ ကူးယူထားသည်။",
|
||||||
|
"saved_the_trade_id" : "ကုန်သွယ်မှု ID ကို သိမ်းဆည်းပြီးပါပြီ။",
|
||||||
|
"fetching" : "ခေါ်ယူခြင်း။",
|
||||||
|
"id" : "ID:",
|
||||||
|
"amount" : "ပမာဏ:",
|
||||||
|
"payment_id" : "ငွေပေးချေမှု ID:",
|
||||||
|
"status" : "အခြေအနေ:",
|
||||||
|
"offer_expires_in" : "ကမ်းလှမ်းချက် သက်တမ်းကုန်သည်:",
|
||||||
|
"trade_is_powered_by" : "ဤကုန်သွယ်မှုကို ${provider} မှ လုပ်ဆောင်သည်",
|
||||||
|
"copy_address" : "လိပ်စာကို ကူးယူပါ။",
|
||||||
|
"exchange_result_confirm" : "အတည်ပြုချက်ကို နှိပ်ခြင်းဖြင့်၊ သင်သည် ${fetchingLabel} ${from} ဟုခေါ်သော သင့်ပိုက်ဆံအိတ်မှ ${walletName} ကို အောက်ဖော်ပြပါလိပ်စာသို့ ပေးပို့မည်ဖြစ်ပါသည်။ သို့မဟုတ် သင့်ပြင်ပပိုက်ဆံအိတ်မှ အောက်ပါလိပ်စာ/QR ကုဒ်သို့ ပေးပို့နိုင်ပါသည်။\n\nပမာဏများကို ပြောင်းလဲရန် ဆက်လက်လုပ်ဆောင်ရန် သို့မဟုတ် ပြန်သွားရန် အတည်ပြုချက်ကို နှိပ်ပါ။",
|
||||||
|
"exchange_result_description" : "သင်သည် အနည်းဆုံး ${fetchingLabel} ${from} ကို နောက်စာမျက်နှာတွင် ပြသထားသည့် လိပ်စာသို့ ပေးပို့ရပါမည်။ ${fetchingLabel} ${from} ထက်နည်းသော ပမာဏကို ပေးပို့ပါက ၎င်းသည် ပြောင်းလဲ၍မရသည့်အပြင် ပြန်အမ်းမည်မဟုတ်ပါ။",
|
||||||
|
"exchange_result_write_down_ID" : "* ကျေးဇူးပြု၍ အထက်ဖော်ပြပါ သင်၏ ID ကို ကော်ပီ သို့မဟုတ် ရေးမှတ်ပါ။",
|
||||||
|
"confirm" : "အတည်ပြုပါ။",
|
||||||
|
"confirm_sending" : "ပေးပို့အတည်ပြုပါ။",
|
||||||
|
"commit_transaction_amount_fee" : "ငွေလွှဲခြင်း\nပမာဏ- ${amount}\nအခကြေးငွေ- ${fee}",
|
||||||
|
"sending" : "ပေးပို့ခြင်း။",
|
||||||
|
"transaction_sent" : "ငွေပေးချေမှု ပို့ပြီးပါပြီ။!",
|
||||||
|
"expired" : "သက်တမ်းကုန်သွားပြီ",
|
||||||
|
"time" : "${minutes}m ${seconds}s",
|
||||||
|
"send_xmr" : "XMR ပို့ပါ။",
|
||||||
|
"exchange_new_template" : "ပုံစံအသစ်",
|
||||||
|
|
||||||
|
"faq" : "အမြဲမေးလေ့ရှိသောမေးခွန်းများ",
|
||||||
|
|
||||||
|
|
||||||
|
"enter_your_pin" : "သင်၏ PIN ကိုထည့်ပါ။",
|
||||||
|
"loading_your_wallet" : "သင့်ပိုက်ဆံအိတ်ကို ဖွင့်နေသည်။",
|
||||||
|
|
||||||
|
|
||||||
|
"new_wallet" : "ပိုက်ဆံအိတ်အသစ်",
|
||||||
|
"wallet_name" : "ပိုက်ဆံအိတ်နာမည",
|
||||||
|
"continue_text" : "ဆက်လက်",
|
||||||
|
"choose_wallet_currency" : "ပိုက်ဆံအိတ်ငွေကြေးကို ရွေးပါ-",
|
||||||
|
|
||||||
|
|
||||||
|
"node_new" : "နော်ဒီအသစ်",
|
||||||
|
"node_address" : "နိုဒီ လိပ်စာ",
|
||||||
|
"node_port" : "နော်ဒီဆိပ်ကမ်း",
|
||||||
|
"login" : "လော့ဂ်အင်",
|
||||||
|
"password" : "စကားဝှက်",
|
||||||
|
"nodes" : "ဆုံမှတ်များ",
|
||||||
|
"node_reset_settings_title" : "ဆက်တင်များကို ပြန်လည်သတ်မှတ်ပါ။",
|
||||||
|
"nodes_list_reset_to_default_message" : "ဆက်တင်များကို မူရင်းအတိုင်း ပြန်လည်သတ်မှတ်လိုသည်မှာ သေချာပါသလား။",
|
||||||
|
"change_current_node" : "လက်ရှိ နှာခေါင်း ကို ${node} သို့ ပြောင်းရန် သေချာပါသလား။",
|
||||||
|
"change" : "ပြောင်းလဲပါ။",
|
||||||
|
"remove_node" : "နှာခေါင်း ကို ဖယ်ရှားပါ။",
|
||||||
|
"remove_node_message" : "ရွေးချယ်ထားသော ကုဒ်ကို ဖယ်ရှားလိုသည်မှာ သေချာပါသလား။",
|
||||||
|
"remove" : "ဖယ်ရှားပါ။",
|
||||||
|
"delete" : "ဖျက်ပါ။",
|
||||||
|
"add_new_node" : "နှာခေါင်း အသစ်ထည့်ပါ။",
|
||||||
|
"change_current_node_title" : "လက်ရှိ နှာခေါင်း ကိုပြောင်းပါ။",
|
||||||
|
"node_test" : "စမ်း",
|
||||||
|
"node_connection_successful" : "ချိတ်ဆက်မှု အောင်မြင်ခဲ့သည်။",
|
||||||
|
"node_connection_failed" : "ချိတ်ဆက်မှု မအောင်မြင်ပါ။",
|
||||||
|
"new_node_testing" : "နှာခေါင်း အသစ်စမ်းသပ်ခြင်း။",
|
||||||
|
|
||||||
|
|
||||||
|
"use" : "သို့ပြောင်းပါ။",
|
||||||
|
"digit_pin" : "-ဂဏန်း PIN",
|
||||||
|
|
||||||
|
|
||||||
|
"share_address" : "လိပ်စာမျှဝေပါ။",
|
||||||
|
"receive_amount" : "ပမာဏ",
|
||||||
|
"subaddresses" : "လိပ်စာများ",
|
||||||
|
"addresses" : "လိပ်စာများ",
|
||||||
|
"scan_qr_code" : "လိပ်စာရယူရန် QR ကုဒ်ကို စကင်န်ဖတ်ပါ။",
|
||||||
|
"qr_fullscreen" : "မျက်နှာပြင်အပြည့် QR ကုဒ်ကိုဖွင့်ရန် တို့ပါ။",
|
||||||
|
"rename" : "အမည်ပြောင်းပါ။",
|
||||||
|
"choose_account" : "အကောင့်ကို ရွေးပါ။",
|
||||||
|
"create_new_account" : "အကောင့်အသစ်ဖန်တီးပါ။",
|
||||||
|
"accounts_subaddresses" : "အကောင့်များနှင့် လိပ်စာများ",
|
||||||
|
|
||||||
|
|
||||||
|
"restore_restore_wallet" : "ပိုက်ဆံအိတ်ကို ပြန်ယူပါ။",
|
||||||
|
"restore_title_from_seed_keys" : "မျိုးစေ့/သော့များမှ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_description_from_seed_keys" : "သင့်ပိုက်ဆံအိတ်ကို လုံခြုံသောနေရာတွင် သိမ်းဆည်းထားသော မျိုးစေ့/သော့များမှ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_next" : "နောက်တစ်ခု",
|
||||||
|
"restore_title_from_backup" : "အရန်သိမ်းခြင်းမှ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_description_from_backup" : "သင့်အရန်ဖိုင်မှ Cake Wallet အက်ပ်တစ်ခုလုံးကို သင်ပြန်လည်ရယူနိုင်သည်။",
|
||||||
|
"restore_seed_keys_restore" : "မျိုးစေ့/သော့များ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_title_from_seed" : "မျိုးစေ့မှပြန်လည်ရယူပါ။",
|
||||||
|
"restore_description_from_seed" : "25 စကားလုံး သို့မဟုတ် 13 စကားလုံးပေါင်းစပ်ကုဒ်မှ သင့်ပိုက်ဆံအိတ်ကို ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_title_from_keys" : "သော့များမှ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_description_from_keys" : "သင့်ကိုယ်ပိုင်သော့များမှ သိမ်းဆည်းထားသော ထုတ်ပေးထားသော သော့ချက်များမှ သင့်ပိုက်ဆံအိတ်ကို ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_wallet_name" : "ပိုက်ဆံအိတ်နာမည်",
|
||||||
|
"restore_address" : "လိပ်စာ",
|
||||||
|
"restore_view_key_private" : "သော့ကိုကြည့်ရန် (သီးသန့်)",
|
||||||
|
"restore_spend_key_private" : "သော့သုံးရန် (သီးသန့်)",
|
||||||
|
"restore_recover" : "ပြန်ယူပါ။",
|
||||||
|
"restore_wallet_restore_description" : "Wallet ပြန်လည်ရယူသည့် ဖော်ပြချက်",
|
||||||
|
"restore_new_seed" : "မျိုးစေ့အသစ်",
|
||||||
|
"restore_active_seed" : "တက်ကြွသောအစေ့",
|
||||||
|
"restore_bitcoin_description_from_seed" : "24 စကားလုံးပေါင်းစပ်ကုဒ်မှ သင့်ပိုက်ဆံအိတ်ကို ပြန်ယူပါ။",
|
||||||
|
"restore_bitcoin_description_from_keys" : "သင့်ကိုယ်ပိုင်သော့များမှ ထုတ်လုပ်ထားသော WIF စာကြောင်းမှ သင့်ပိုက်ဆံအိတ်ကို ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_bitcoin_title_from_keys" : "WIF မှ ပြန်လည်ရယူပါ။",
|
||||||
|
"restore_from_date_or_blockheight" : "ဤပိုက်ဆံအိတ်ကို သင်မဖန်တီးမီ ရက်အနည်းငယ်အလိုတွင် ရက်စွဲတစ်ခု ထည့်သွင်းပါ။ သို့မဟုတ် ဘလော့ခ်ဟိုက် ကို သိပါက ၎င်းအစား ၎င်းကို ထည့်ပါ။",
|
||||||
|
|
||||||
|
|
||||||
|
"seed_reminder" : "ကျေးဇူးပြု၍ သင့်ဖုန်းကို ပျောက်ဆုံးသွားပါက သို့မဟုတ် ဖျက်မိပါက ၎င်းတို့ကို ချရေးပါ။",
|
||||||
|
"seed_title" : "မျိုးစေ့",
|
||||||
|
"seed_share" : "မျိုးစေ့မျှဝေပါ။",
|
||||||
|
"copy" : "ကော်ပီ",
|
||||||
|
|
||||||
|
|
||||||
|
"seed_language_choose" : "ကျေးဇူးပြု၍ မျိုးစေ့ဘာသာစကားကို ရွေးပါ-",
|
||||||
|
"seed_choose" : "မျိုးစေ့ဘာသာစကားကို ရွေးချယ်ပါ။",
|
||||||
|
"seed_language_next" : "နောက်တစ်ခု",
|
||||||
|
"seed_language_english" : "အင်္ဂလိပ်စာ",
|
||||||
|
"seed_language_chinese" : "တရုတ်",
|
||||||
|
"seed_language_dutch" : "ဒတ်ခ်ျ",
|
||||||
|
"seed_language_german" : "ဂျာမန်",
|
||||||
|
"seed_language_japanese" : "ဂျပန်",
|
||||||
|
"seed_language_portuguese" : "ပေါ်တူဂီ",
|
||||||
|
"seed_language_russian" : "ရုရှ",
|
||||||
|
"seed_language_spanish" : "ငပိ",
|
||||||
|
"seed_language_french" : "ပြင်သစ်",
|
||||||
|
"seed_language_italian" : "အီတလီ",
|
||||||
|
|
||||||
|
|
||||||
|
"send_title" : "ပို့ပါ။",
|
||||||
|
"send_your_wallet" : "သင့်ပိုက်ဆံအိတ်",
|
||||||
|
"send_address" : "${cryptoCurrency} လိပ်စာ",
|
||||||
|
"send_payment_id" : "ငွေပေးချေမှု ID (ချန်လှပ်ထား)",
|
||||||
|
"all" : "အားလုံး",
|
||||||
|
"send_error_minimum_value" : "ပမာဏ၏ အနည်းဆုံးတန်ဖိုးမှာ 0.01 ဖြစ်သည်။",
|
||||||
|
"send_error_currency" : "ငွေကြေးတွင် နံပါတ်များသာ ပါဝင်နိုင်သည်။",
|
||||||
|
"send_estimated_fee" : "ခန့်မှန်းကြေး-",
|
||||||
|
"send_priority" : "လောလောဆယ်အခကြေးငွေကို ${transactionPriority} ဦးစားပေးတွင် သတ်မှတ်ထားပါသည်။\nငွေပေးငွေယူဦးစားပေးကို ဆက်တင်များတွင် ချိန်ညှိနိုင်ပါသည်။",
|
||||||
|
"send_creating_transaction" : "အရောင်းအဝယ်ပြုလုပ်ခြင်း။",
|
||||||
|
"send_templates" : "ပုံစံများ",
|
||||||
|
"send_new" : "အသစ်",
|
||||||
|
"send_amount" : "ပမာဏ-",
|
||||||
|
"send_fee" : "အခကြေးငွေ-",
|
||||||
|
"send_name" : "နာမည်",
|
||||||
|
"send_got_it" : "ရပြီ",
|
||||||
|
"send_sending" : "ပို့နေသည်...",
|
||||||
|
"send_success" : "သင်၏ ${crypto} ကို အောင်မြင်စွာ ပို့လိုက်ပါပြီ။",
|
||||||
|
|
||||||
|
|
||||||
|
"settings_title" : "ဆက်တင်များ",
|
||||||
|
"settings_nodes" : "ဆုံမှတ်များ",
|
||||||
|
"settings_current_node" : "လက်ရှိ node",
|
||||||
|
"settings_wallets" : "ပိုက်ဆံအိတ်",
|
||||||
|
"settings_display_balance" : "ပြသချိန်ခွင်",
|
||||||
|
"settings_currency" : "ငွေကြေး",
|
||||||
|
"settings_fee_priority" : "အခကြေးငွေဦးစားပေး",
|
||||||
|
"settings_save_recipient_address" : "လက်ခံသူလိပ်စာကို သိမ်းဆည်းပါ။",
|
||||||
|
"settings_personal" : "ပုဂ္ဂိုလ်ရေး",
|
||||||
|
"settings_change_pin" : "ပင်နံပါတ်ပြောင်းပါ။",
|
||||||
|
"settings_change_language" : "ဘာသာစကားပြောင်းပါ။",
|
||||||
|
"settings_allow_biometrical_authentication" : "ဇီဝဗေဒဆိုင်ရာ အထောက်အထားစိစစ်ခြင်းကို ခွင့်ပြုပါ။",
|
||||||
|
"settings_dark_mode" : "အမှောင်မုဒ်",
|
||||||
|
"settings_transactions" : "ငွေပေးငွေယူ",
|
||||||
|
"settings_trades" : "ကုန်သွယ်မှုများ",
|
||||||
|
"settings_display_on_dashboard_list" : "ဒက်ရှ်ဘုတ်စာရင်းတွင် ပြသပါ။",
|
||||||
|
"settings_all" : "အားလုံး",
|
||||||
|
"settings_only_trades" : "အရောင်းအဝယ်တွေချည်းပဲ။",
|
||||||
|
"settings_only_transactions" : "အရောင်းအဝယ်များသာ",
|
||||||
|
"settings_none" : "တစ်ခုမှ",
|
||||||
|
"settings_support" : "အထောက်အပံ့",
|
||||||
|
"settings_terms_and_conditions" : "စည်းကမ်းနှင့်သတ်မှတ်ချက်များ",
|
||||||
|
"pin_is_incorrect" : "ပင်နံပါတ် မမှန်ပါ။",
|
||||||
|
|
||||||
|
|
||||||
|
"setup_pin" : "ပင်နံပါတ်ကို စနစ်ထည့်သွင်းပါ။",
|
||||||
|
"enter_your_pin_again" : "သင့်ပင်နံပါတ်ကို ထပ်မံထည့်သွင်းပါ။",
|
||||||
|
"setup_successful" : "သင့်ပင်နံပါတ်ကို အောင်မြင်စွာ သတ်မှတ်ပြီးပါပြီ။",
|
||||||
|
|
||||||
|
|
||||||
|
"wallet_keys" : "ပိုက်ဆံအိတ် အစေ့/သော့များ",
|
||||||
|
"wallet_seed" : "ပိုက်ဆံအိတ်စေ့",
|
||||||
|
"private_key" : "သီးသန့်သော့",
|
||||||
|
"public_key" : "အများသူငှာသော့",
|
||||||
|
"view_key_private" : "သော့ကိုကြည့်ရန် (သီးသန့်)",
|
||||||
|
"view_key_public" : "သော့ကိုကြည့်ရန် (အများပြည်သူ)",
|
||||||
|
"spend_key_private" : "သော့သုံးရန် (သီးသန့်)",
|
||||||
|
"spend_key_public" : "သုံးစွဲရန်သော့ (အများပြည်သူ)",
|
||||||
|
"copied_key_to_clipboard" : "${key} ကို Clipboard သို့ ကူးယူထားသည်။",
|
||||||
|
|
||||||
|
|
||||||
|
"new_subaddress_title" : "လိပ်စာအသစ်",
|
||||||
|
"new_subaddress_label_name" : "အညွှန်းအမည်",
|
||||||
|
"new_subaddress_create" : "ဖန်တီးပါ။",
|
||||||
|
|
||||||
|
"address_label" : "လိပ်စာတံဆိပ်",
|
||||||
|
|
||||||
|
"subaddress_title" : "လိပ်စာစာရင်း",
|
||||||
|
|
||||||
|
|
||||||
|
"trade_details_title" : "ကုန်သွယ်မှုအသေးစိတ်",
|
||||||
|
"trade_details_id" : "အမှတ်သညာ",
|
||||||
|
"trade_details_state" : "အဆင့်အတန်း",
|
||||||
|
"trade_details_fetching" : "ခေါ်ယူခြင်း။",
|
||||||
|
"trade_details_provider" : "ပံ့ပိုးပေးသူ",
|
||||||
|
"trade_details_created_at" : "တွင်ဖန်တီးခဲ့သည်။",
|
||||||
|
"trade_details_pair" : "တွဲ",
|
||||||
|
"trade_details_copied" : "${title} ကို Clipboard သို့ ကူးယူထားသည်။",
|
||||||
|
|
||||||
|
|
||||||
|
"trade_history_title" : "ကုန်သွယ်မှုသမိုင်း",
|
||||||
|
|
||||||
|
|
||||||
|
"transaction_details_title" : "ငွေပေးငွေယူအသေးစိတ်",
|
||||||
|
"transaction_details_transaction_id" : "ငွေပေးငွေယူ ID",
|
||||||
|
"transaction_details_date" : "ရက်စွဲ",
|
||||||
|
"transaction_details_height" : "အရပ်အမြင့်",
|
||||||
|
"transaction_details_amount" : "ပမာဏ",
|
||||||
|
"transaction_details_fee" : "ကြေး",
|
||||||
|
"transaction_details_copied" : "${title} ကို Clipboard သို့ ကူးယူထားသည်။",
|
||||||
|
"transaction_details_recipient_address" : "လက်ခံသူလိပ်စာများ",
|
||||||
|
|
||||||
|
|
||||||
|
"wallet_list_title" : "Monero ပိုက်ဆံအိတ်",
|
||||||
|
"wallet_list_create_new_wallet" : "Wallet အသစ်ဖန်တီးပါ။",
|
||||||
|
"wallet_list_restore_wallet" : "ပိုက်ဆံအိတ်ကို ပြန်ယူပါ။",
|
||||||
|
"wallet_list_load_wallet" : "ပိုက်ဆံအိတ်ကို တင်ပါ။",
|
||||||
|
"wallet_list_loading_wallet" : "${wallet_name} ပိုက်ဆံအိတ်ကို ဖွင့်နေသည်။",
|
||||||
|
"wallet_list_failed_to_load" : "${wallet_name} ပိုက်ဆံအိတ်ကို ဖွင့်၍မရပါ။ ${error}",
|
||||||
|
"wallet_list_removing_wallet" : "${wallet_name} ပိုက်ဆံအိတ်ကို ဖယ်ရှားခြင်း။",
|
||||||
|
"wallet_list_failed_to_remove" : "${wallet_name} ပိုက်ဆံအိတ်ကို ဖယ်ရှား၍မရပါ။ ${error}",
|
||||||
|
|
||||||
|
|
||||||
|
"widgets_address" : "လိပ်စာ",
|
||||||
|
"widgets_restore_from_blockheight" : "အမြင့်မှ ပြန်လည်ရယူပါ။",
|
||||||
|
"widgets_restore_from_date" : "ရက်စွဲမှ ပြန်လည်ရယူပါ။",
|
||||||
|
"widgets_or" : "သို့မဟုတ်",
|
||||||
|
"widgets_seed" : "မျိုးစေ့",
|
||||||
|
|
||||||
|
|
||||||
|
"router_no_route" : "${name} အတွက် သတ်မှတ်ထားသော လမ်းကြောင်းမရှိပါ",
|
||||||
|
|
||||||
|
|
||||||
|
"error_text_account_name" : "အကောင့်အမည်သည် အက္ခရာများ၊ နံပါတ်များသာ ပါဝင်နိုင်သည်\nနှင့် စာလုံးရေ 1 နှင့် 15 ကြားရှိရပါမည်။",
|
||||||
|
"error_text_contact_name" : "အဆက်အသွယ်အမည်တွင် ` , ' \" သင်္ကေတများ မပါဝင်နိုင်ပါ\nနှင့် စာလုံးအရှည် 1 နှင့် 32 ကြားရှိရမည်",
|
||||||
|
"error_text_address" : "Wallet လိပ်စာသည် အမျိုးအစား\no cryptocurrency နှင့် ကိုက်ညီရပါမည်။",
|
||||||
|
"error_text_node_address" : "ကျေးဇူးပြု၍ iPv4 လိပ်စာကို ထည့်ပါ။",
|
||||||
|
"error_text_node_port" : "နော်ဒီဆိပ်ကမ်း တွင် 0 နှင့် 65535 အကြား နံပါတ်များသာ ပါဝင်နိုင်သည်။",
|
||||||
|
"error_text_payment_id" : "ငွေပေးချေမှု ID တွင် hex တွင် စာလုံး 16 လုံးမှ 64 လုံးသာ ပါဝင်နိုင်သည်။",
|
||||||
|
"error_text_xmr" : "XMR တန်ဖိုးသည် ရနိုင်သောလက်ကျန်ကို ကျော်လွန်၍မရပါ။\nအပိုင်းကိန်းဂဏန်းများ သည် 12 နှင့် လျော့နည်းရမည်",
|
||||||
|
"error_text_fiat" : "ပမာဏ၏တန်ဖိုးသည် ရနိုင်သောလက်ကျန်ကို မကျော်လွန်နိုင်ပါ။\nအပိုင်းကိန်းဂဏန်းအရေအတွက်သည် 2 နှင့် လျော့နည်းရမည်",
|
||||||
|
"error_text_subaddress_name" : "လိပ်စာခွဲအမည်တွင် ` , ' \" သင်္ကေတများ မပါဝင်နိုင်ပါ\nနှင့် စာလုံးရေ 1 နှင့် 20 ကြားရှိရမည်",
|
||||||
|
"error_text_amount" : "ပမာဏသည် နံပါတ်များသာ ပါဝင်နိုင်သည်။",
|
||||||
|
"error_text_wallet_name" : "ပိုက်ဆံအိတ်အမည်တွင် စာလုံးများ၊ နံပါတ်များ၊ _ - သင်္ကေတများသာ ပါဝင်နိုင်သည် \n နှင့် စာလုံးအရှည် 1 နှင့် 33 ကြားရှိရမည်",
|
||||||
|
"error_text_keys" : "ပိုက်ဆံအိတ်သော့များတွင် hex တွင် 64 လုံးသာပါဝင်နိုင်သည်။",
|
||||||
|
"error_text_crypto_currency" : "အပိုင်းကိန်းဂဏန်းများ၏ အရေအတွက်\nလျော့နည်းသည် သို့မဟုတ် 12 နှင့် ညီမျှရပါမည်။",
|
||||||
|
"error_text_minimal_limit" : "${provider} အတွက် ကုန်သွယ်မှုကို ဖန်တီးမထားပါ။ ပမာဏသည် အနည်းငယ်ထက်နည်းသည်- ${min} ${currency}",
|
||||||
|
"error_text_maximum_limit" : "${provider} အတွက် ကုန်သွယ်မှုကို ဖန်တီးမထားပါ။ ပမာဏသည် အများဆုံးထက် ပိုများသည်- ${max} ${currency}",
|
||||||
|
"error_text_limits_loading_failed" : "${provider} အတွက် ကုန်သွယ်မှုကို ဖန်တီးမထားပါ။ ကန့်သတ်ချက်များ တင်ခြင်း မအောင်မြင်ပါ။",
|
||||||
|
"error_text_template" : "နမူနာပုံစံအမည်နှင့် လိပ်စာတွင် ` , ' \" သင်္ကေတများ မပါဝင်နိုင်ပါ\nနှင့် စာလုံးအရှည် 1 နှင့် 106 ကြား ရှိရမည်",
|
||||||
|
|
||||||
|
|
||||||
|
"auth_store_ban_timeout" : "အချိန်ကို ပိတ်ပင်ခြင်း",
|
||||||
|
"auth_store_banned_for" : "ပိတ်ပင်ထားသည်။",
|
||||||
|
"auth_store_banned_minutes" : " မိနစ်များ",
|
||||||
|
"auth_store_incorrect_password" : "ပင်နံပါတ် မှားနေသည်။",
|
||||||
|
"wallet_store_monero_wallet" : "Monero ပိုက်ဆံအိတ်",
|
||||||
|
"wallet_restoration_store_incorrect_seed_length" : "မျိုးစေ့အရှည် မမှန်ပါ။",
|
||||||
|
|
||||||
|
|
||||||
|
"full_balance" : "Balance အပြည့်",
|
||||||
|
"available_balance" : "လက်ကျန်ငွေ ရရှိနိုင်",
|
||||||
|
"hidden_balance" : "Hidden Balance",
|
||||||
|
|
||||||
|
|
||||||
|
"sync_status_syncronizing" : "ထပ်တူပြုခြင်း။",
|
||||||
|
"sync_status_syncronized" : "ထပ်တူပြုထားသည်။",
|
||||||
|
"sync_status_not_connected" : "မချိတ်ဆက်ပါ။",
|
||||||
|
"sync_status_starting_sync" : "စင့်ခ်လုပ်ခြင်း။",
|
||||||
|
"sync_status_failed_connect" : "အဆက်အသွယ်ဖြတ်ထားသည်။",
|
||||||
|
"sync_status_connecting" : "ချိတ်ဆက်ခြင်း။",
|
||||||
|
"sync_status_connected" : "ချိတ်ဆက်ထားသည်။",
|
||||||
|
"sync_status_attempting_sync" : "ချိန်ကိုက်ခြင်းကို ကြိုးစားနေသည်။",
|
||||||
|
|
||||||
|
|
||||||
|
"transaction_priority_slow" : "နှေးနှေး",
|
||||||
|
"transaction_priority_regular" : "ပုံမှန်အစည်းအဝေး",
|
||||||
|
"transaction_priority_medium" : "အလယ်အလတ်",
|
||||||
|
"transaction_priority_fast" : "မြန်သည်။",
|
||||||
|
"transaction_priority_fastest" : "အမြန်ဆုံး",
|
||||||
|
|
||||||
|
|
||||||
|
"trade_for_not_created" : "${title} အတွက် ကုန်သွယ်မှုကို ဖန်တီးမထားပါ။",
|
||||||
|
"trade_not_created" : "ကုန်သွယ်မှု မဖန်တီးပါ။",
|
||||||
|
"trade_id_not_found" : "${title} ၏ ${tradeId} ကုန်သွယ်မှုကို ရှာမတွေ့ပါ။",
|
||||||
|
"trade_not_found" : "ကုန်သွယ်မှု မတွေ့။",
|
||||||
|
|
||||||
|
|
||||||
|
"trade_state_pending" : "ဆိုင်းငံ့ထားသည်။",
|
||||||
|
"trade_state_confirming" : "အတည်ပြုခြင်း။",
|
||||||
|
"trade_state_trading" : "ရောင်းဝယ်ရေး",
|
||||||
|
"trade_state_traded" : "အရောင်းအဝယ်ဖြစ်ခဲ့သည်။",
|
||||||
|
"trade_state_complete" : "ပြီးအောင်",
|
||||||
|
"trade_state_to_be_created" : "ဖန်တီးဖို့",
|
||||||
|
"trade_state_unpaid" : "အခကြေးငွေမယူရသေး",
|
||||||
|
"trade_state_underpaid" : "ပေးချေမှုနည်းပါးသည်။",
|
||||||
|
"trade_state_paid_unconfirmed" : "အတည်မပြုနိုင်သေးပါ။",
|
||||||
|
"trade_state_paid" : "အခကြေးငွေ",
|
||||||
|
"trade_state_btc_sent" : "Btc ပို့လိုက်ပါတယ်။",
|
||||||
|
"trade_state_timeout" : "ခဏပွဲရပ်ခြင်း",
|
||||||
|
"trade_state_created" : "ဖန်တီးခဲ့သည်။",
|
||||||
|
"trade_state_finished" : "ပြီးပြီ။",
|
||||||
|
|
||||||
|
"change_language" : "ဘာသာစကားပြောင်းပါ။",
|
||||||
|
"change_language_to" : "ဘာသာစကားကို ${language} သို့ ပြောင်းမလား။",
|
||||||
|
|
||||||
|
"paste" : "ငါးပိ",
|
||||||
|
"restore_from_seed_placeholder" : "သင့်အစေ့ကို ဤနေရာတွင် ထည့်ပါ သို့မဟုတ် ကူးထည့်ပါ။",
|
||||||
|
"add_new_word" : "စကားလုံးအသစ်ထည့်ပါ။",
|
||||||
|
"incorrect_seed" : "ထည့်သွင်းထားသော စာသားသည် မမှန်ကန်ပါ။",
|
||||||
|
|
||||||
|
"biometric_auth_reason" : "စစ်မှန်ကြောင်းအထောက်အထားပြရန် သင့်လက်ဗွေကို စကန်ဖတ်ပါ။",
|
||||||
|
"version" : "ဗားရှင်း ${currentVersion}",
|
||||||
|
|
||||||
|
"openalias_alert_title" : "လိပ်စာကို ရှာတွေ့သည်။",
|
||||||
|
"openalias_alert_content" : "သင်သည် \n${recipient_name} သို့ ရန်ပုံငွေများ ပေးပို့ပါမည်",
|
||||||
|
|
||||||
|
"card_address" : "လိပ်စာ-",
|
||||||
|
"buy" : "ဝယ်ပါ။",
|
||||||
|
"sell" : "ရောင်း",
|
||||||
|
|
||||||
|
"placeholder_transactions" : "သင်၏ ငွေပေးငွေယူများကို ဤနေရာတွင် ပြသပါမည်။",
|
||||||
|
"placeholder_contacts" : "သင့်အဆက်အသွယ်များကို ဤနေရာတွင် ပြသပါမည်။",
|
||||||
|
|
||||||
|
"template" : "ပုံစံခွက်",
|
||||||
|
"confirm_delete_template" : "ဤလုပ်ဆောင်ချက်သည် ဤပုံစံပြားကို ဖျက်လိုက်ပါမည်။ ဆက်လုပ်လိုပါသလား။",
|
||||||
|
"confirm_delete_wallet" : "ဤလုပ်ဆောင်ချက်သည် ဤပိုက်ဆံအိတ်ကို ဖျက်လိုက်ပါမည်။ ဆက်လုပ်လိုပါသလား။",
|
||||||
|
|
||||||
|
"picker_description" : "ChangeNOW သို့မဟုတ် MorphToken ကိုရွေးချယ်ရန်၊ ကျေးဇူးပြု၍ သင်၏ကုန်သွယ်မှုအတွဲကို ဦးစွာပြောင်းလဲပါ။",
|
||||||
|
|
||||||
|
"change_wallet_alert_title" : "လက်ရှိပိုက်ဆံအိတ်ကို ပြောင်းပါ။",
|
||||||
|
"change_wallet_alert_content" : "လက်ရှိပိုက်ဆံအိတ်ကို ${wallet_name} သို့ ပြောင်းလိုပါသလား။",
|
||||||
|
|
||||||
|
"creating_new_wallet" : "ပိုက်ဆံအိတ်အသစ်ဖန်တီးခြင်း။",
|
||||||
|
"creating_new_wallet_error" : "အမှား- ${description}",
|
||||||
|
|
||||||
|
"seed_alert_title" : "အာရုံ",
|
||||||
|
"seed_alert_content" : "မျိုးစေ့သည် သင့်ပိုက်ဆံအိတ်ကို ပြန်လည်ရယူရန် တစ်ခုတည်းသောနည်းလမ်းဖြစ်သည်။ ရေးပြီးပြီလား။",
|
||||||
|
"seed_alert_back" : "ပြန်သွားသည်",
|
||||||
|
"seed_alert_yes" : "ဟုတ်ကဲ့၊",
|
||||||
|
|
||||||
|
"exchange_sync_alert_content" : "သင့်ပိုက်ဆံအိတ်ကို စင့်ခ်လုပ်ထားသည့်အချိန်အထိ စောင့်ပါ။",
|
||||||
|
|
||||||
|
"pre_seed_title" : "အရေးကြီးသည်။",
|
||||||
|
"pre_seed_description" : "နောက်စာမျက်နှာတွင် ${words} စကားလုံးများ အတွဲလိုက်ကို တွေ့ရပါမည်။ ၎င်းသည် သင်၏ထူးခြားပြီး သီးသန့်မျိုးစေ့ဖြစ်ပြီး ပျောက်ဆုံးခြင်း သို့မဟုတ် ချွတ်ယွင်းမှုရှိပါက သင့်ပိုက်ဆံအိတ်ကို ပြန်လည်ရယူရန် တစ်ခုတည်းသောနည်းလမ်းဖြစ်သည်။ ၎င်းကို Cake Wallet အက်ပ်၏အပြင်ဘက်တွင် လုံခြုံသောနေရာတွင် သိမ်းဆည်းရန်မှာ သင်၏တာဝန်ဖြစ်သည်။",
|
||||||
|
"pre_seed_button_text" : "ကျွန်တော်နားလည်ပါတယ်။ ငါ့အမျိုးအနွယ်ကို ပြလော့",
|
||||||
|
|
||||||
|
"xmr_to_error" : "XMR.TO အမှား",
|
||||||
|
"xmr_to_error_description" : "ပမာဏ မမှန်ပါ။ ဒဿမအမှတ်ပြီးနောက် ဂဏန်း ၈ လုံးတွင် အများဆုံးကန့်သတ်ချက်",
|
||||||
|
|
||||||
|
"provider_error" : "${provider} အမှား",
|
||||||
|
|
||||||
|
"use_ssl" : "SSL ကိုသုံးပါ။",
|
||||||
|
"trusted" : "ယုံတယ်။",
|
||||||
|
|
||||||
|
"color_theme" : "အရောင်အပြင်အဆင်",
|
||||||
|
"light_theme" : "အလင်း",
|
||||||
|
"bright_theme" : "တောက်ပ",
|
||||||
|
"dark_theme" : "မှောငျမိုကျသော",
|
||||||
|
"enter_your_note" : "သင့်မှတ်စုကို ထည့်ပါ...",
|
||||||
|
"note_optional" : "မှတ်ချက် (ချန်လှပ်ထားနိုင်သည်)",
|
||||||
|
"note_tap_to_change" : "မှတ်ချက် (ပြောင်းလဲရန် တို့ပါ)",
|
||||||
|
"view_in_block_explorer" : "Block Explorer တွင်ကြည့်ရှုပါ။",
|
||||||
|
"view_transaction_on" : "ငွေလွှဲခြင်းကို ဖွင့်ကြည့်ပါ။",
|
||||||
|
"transaction_key" : "ငွေသွင်းငွေထုတ်ကီး",
|
||||||
|
"confirmations" : "အတည်ပြုချက်များ",
|
||||||
|
"recipient_address" : "လက်ခံသူလိပ်စာ",
|
||||||
|
|
||||||
|
"extra_id" : "အပို ID-",
|
||||||
|
"destination_tag" : "ခရီးဆုံးအမှတ်-",
|
||||||
|
"memo" : "မှတ်စုတို:",
|
||||||
|
|
||||||
|
"backup" : "မိတ္တူ",
|
||||||
|
"change_password" : "စကားဝှက်ကိုပြောင်းရန်",
|
||||||
|
"backup_password" : "စကားဝှက်ကို အရန်သိမ်းဆည်းပါ။",
|
||||||
|
"write_down_backup_password" : "သင်၏ အရန်ဖိုင်များကို တင်သွင်းရန်အတွက် အသုံးပြုသည့် သင်၏ အရန်စကားဝှက်ကို ချရေးပါ။",
|
||||||
|
"export_backup" : "အရန်ကူးထုတ်ရန်",
|
||||||
|
"save_backup_password" : "သင်၏ အရန်စကားဝှက်ကို သိမ်းဆည်းထားကြောင်း သေချာပါစေ။ ၎င်းမပါဘဲ သင်၏ အရန်ဖိုင်များကို တင်သွင်းနိုင်မည် မဟုတ်ပါ။",
|
||||||
|
"backup_file" : "အရန်ဖိုင်",
|
||||||
|
|
||||||
|
"edit_backup_password" : "Backup Password ကို တည်းဖြတ်ပါ။",
|
||||||
|
"save_backup_password_alert" : "အရန်စကားဝှက်ကို သိမ်းဆည်းပါ။",
|
||||||
|
"change_backup_password_alert" : "အရန်စကားဝှက်အသစ်ဖြင့် သင်၏ယခင်မိတ္တူဖိုင်များကို တင်သွင်းရန် မရနိုင်ပါ။ အရန်စကားဝှက်အသစ်ကို အရန်ဖိုင်အသစ်အတွက်သာ အသုံးပြုပါမည်။ အရန်စကားဝှက်ကို ပြောင်းလိုသည်မှာ သေချာပါသလား။",
|
||||||
|
|
||||||
|
"enter_backup_password" : "အရန်စကားဝှက်ကို ဤနေရာတွင် ထည့်ပါ။",
|
||||||
|
"select_backup_file" : "အရန်ဖိုင်ကို ရွေးပါ။",
|
||||||
|
"import" : "သွင်းကုန်",
|
||||||
|
"please_select_backup_file" : "အရန်ဖိုင်ကို ရွေးပြီး အရန်စကားဝှက်ကို ထည့်ပါ။",
|
||||||
|
|
||||||
|
"fixed_rate" : "ပုံသေနှုန်း",
|
||||||
|
"fixed_rate_alert" : "ပုံသေနှုန်းထားမုဒ်ကို စစ်ဆေးသည့်အခါ လက်ခံပမာဏကို ထည့်သွင်းနိုင်မည်ဖြစ်သည်။ ပုံသေနှုန်းမုဒ်သို့ ပြောင်းလိုပါသလား။",
|
||||||
|
|
||||||
|
"xlm_extra_info" : "လဲလှယ်မှုအတွက် XLM ငွေလွှဲပို့နေစဉ် Memo ID ကို သတ်မှတ်ရန် မမေ့ပါနှင့်",
|
||||||
|
"xrp_extra_info" : "လဲလှယ်မှုအတွက် XRP ငွေလွှဲပို့နေစဉ် Destination Tag ကို သတ်မှတ်ရန် မမေ့ပါနှင့်",
|
||||||
|
|
||||||
|
"exchange_incorrect_current_wallet_for_xmr" : "သင်၏ Cake Wallet Monero လက်ကျန်မှ XMR ကိုလဲလှယ်လိုပါက၊ သင်၏ Monero ပိုက်ဆံအိတ်သို့ ဦးစွာပြောင်းပါ။",
|
||||||
|
"confirmed" : "အတည်ပြုခဲ့သည်။",
|
||||||
|
"unconfirmed" : "အတည်မပြုနိုင်ပါ။",
|
||||||
|
"displayable" : "ပြသနိုင်သည်။",
|
||||||
|
|
||||||
|
"submit_request" : "တောင်းဆိုချက်တစ်ခုတင်ပြပါ။",
|
||||||
|
|
||||||
|
"buy_alert_content" : "လောလောဆယ် ကျွန်ုပ်တို့သည် Bitcoin နှင့် Litecoin ဝယ်ယူမှုကိုသာ ပံ့ပိုးပေးပါသည်။ Bitcoin သို့မဟုတ် Litecoin ဝယ်ယူရန်၊ သင်၏ Bitcoin သို့မဟုတ် Litecoin ပိုက်ဆံအိတ်ကို ဖန်တီးပါ သို့မဟုတ် ပြောင်းပါ။",
|
||||||
|
"sell_alert_content" : "ကျွန်ုပ်တို့သည် လက်ရှိတွင် Bitcoin ရောင်းချခြင်းကိုသာ ပံ့ပိုးပေးပါသည်။ Bitcoin ရောင်းချရန်၊ သင်၏ Bitcoin ပိုက်ဆံအိတ်ကို ဖန်တီးပါ သို့မဟုတ် ပြောင်းပါ။",
|
||||||
|
|
||||||
|
"outdated_electrum_wallet_description" : "ယခု Cake တွင်ဖန်တီးထားသော Bitcoin ပိုက်ဆံအိတ်အသစ်တွင် စကားလုံး 24 မျိုးရှိသည်။ Bitcoin ပိုက်ဆံအိတ်အသစ်တစ်ခုကို ဖန်တီးပြီး သင့်ငွေအားလုံးကို 24 စကားလုံးပိုက်ဆံအိတ်အသစ်သို့ လွှဲပြောင်းပြီး 12 စကားလုံးမျိုးစေ့ဖြင့် ပိုက်ဆံအိတ်များကို အသုံးပြုခြင်းကို ရပ်တန့်ရန် မဖြစ်မနေလိုအပ်ပါသည်။ သင့်ရန်ပုံငွေများကို လုံခြုံစေရန်အတွက် ၎င်းကိုချက်ချင်းလုပ်ဆောင်ပါ။",
|
||||||
|
"understand" : "ကျွန်တော်နားလည်ပါတယ်",
|
||||||
|
|
||||||
|
"apk_update" : "APK အပ်ဒိတ်",
|
||||||
|
|
||||||
|
"buy_bitcoin" : "Bitcoin ကိုဝယ်ပါ။",
|
||||||
|
"buy_with" : "အတူဝယ်ပါ။",
|
||||||
|
"moonpay_alert_text" : "ပမာဏ၏တန်ဖိုးသည် ${minAmount} ${fiatCurrency} နှင့် ပိုနေရမည်",
|
||||||
|
|
||||||
|
"outdated_electrum_wallet_receive_warning" : "ဤပိုက်ဆံအိတ်တွင် စာလုံး 12 လုံးပါပြီး ကိတ်မုန့်တွင် ဖန်တီးပါက၊ Bitcoin ကို ဤပိုက်ဆံအိတ်ထဲသို့ မထည့်ပါနှင့်။ ဤပိုက်ဆံအိတ်သို့ လွှဲပြောင်းပေးသည့် မည်သည့် BTC မဆို ဆုံးရှုံးနိုင်သည်။ 24 စကားလုံးပိုက်ဆံအိတ်အသစ်တစ်ခုဖန်တီးပါ (ညာဘက်အပေါ်ထောင့်ရှိမီနူးကိုနှိပ်ပါ၊ Wallets ကိုရွေးချယ်ပါ၊ ပိုက်ဆံအိတ်အသစ်ဖန်တီးရန်ကိုရွေးချယ်ပါ၊ ထို့နောက် Bitcoin ကိုရွေးချယ်ပါ) နှင့်သင်၏ BTC ကိုထိုနေရာသို့ချက်ချင်းရွှေ့ပါ။ Cake မှ (24 စာလုံး) BTC ပိုက်ဆံအိတ်အသစ်များသည် လုံခြုံပါသည်။",
|
||||||
|
"do_not_show_me" : "ဒါကို ထပ်မပြနဲ့",
|
||||||
|
|
||||||
|
"unspent_coins_title" : "အသုံးမဝင်သော အကြွေစေ့များ",
|
||||||
|
"unspent_coins_details_title" : "အသုံးမဝင်သော အကြွေစေ့အသေးစိတ်များ",
|
||||||
|
"freeze" : "အေးခဲ",
|
||||||
|
"frozen" : "ဖြူဖြူ",
|
||||||
|
"coin_control" : "အကြွေစေ့ထိန်းချုပ်မှု (ချန်လှပ်ထားနိုင်သည်)",
|
||||||
|
|
||||||
|
"address_detected" : "လိပ်စာကို တွေ့ရှိခဲ့သည်။",
|
||||||
|
"address_from_domain" : "ဤလိပ်စာသည် Unstoppable Domains ရှိ ${domain} မှဖြစ်သည်။",
|
||||||
|
|
||||||
|
"add_receiver" : "အခြားလက်ခံသူ ထည့်ပါ (ချန်လှပ်ထားနိုင်သည်)",
|
||||||
|
|
||||||
|
"manage_yats" : "Yats ကို စီမံပါ။",
|
||||||
|
"yat_alert_title" : "Yat ဖြင့် crypto ကိုပိုမိုလွယ်ကူစွာပေးပို့လက်ခံပါ။",
|
||||||
|
"yat_alert_content" : "Cake Wallet အသုံးပြုသူများသည် တစ်မျိုးတည်းသော အီမိုဂျီအခြေခံအသုံးပြုသူအမည်ဖြင့် ၎င်းတို့၏ စိတ်ကြိုက်ငွေကြေးအားလုံးကို ပေးပို့နိုင်ပါပြီ။",
|
||||||
|
"get_your_yat" : "မင်းရဲ့ Yat ကိုယူလိုက်ပါ။",
|
||||||
|
"connect_an_existing_yat" : "ရှိပြီးသား Yat ကို ချိတ်ဆက်ပါ။",
|
||||||
|
"connect_yats" : "Yats ကိုချိတ်ဆက်ပါ။",
|
||||||
|
"yat_address" : "Yat လိပ်စာ",
|
||||||
|
"yat" : "ယတ်",
|
||||||
|
"address_from_yat" : "ဤလိပ်စာသည် Yat ရှိ ${emoji} မှဖြစ်သည်။",
|
||||||
|
"yat_error" : "Yat အမှား",
|
||||||
|
"yat_error_content" : "ဤ Yat နှင့် ချိတ်ဆက်ထားသော လိပ်စာမရှိပါ။ နောက်ထပ် Yat စမ်းကြည့်ပါ။",
|
||||||
|
"choose_address" : "\n\nလိပ်စာကို ရွေးပါ-",
|
||||||
|
"yat_popup_title" : "သင့်ပိုက်ဆံအိတ်လိပ်စာကို emojified လုပ်နိုင်ပါသည်။",
|
||||||
|
"yat_popup_content" : "သင်၏ Yat - တိုတောင်းသော အီမိုဂျီအခြေခံအသုံးပြုသူအမည်ဖြင့် Cake Wallet တွင် crypto ကို ယခု ပေးပို့နိုင်ပါပြီ။ ဆက်တင်စခရင်ပေါ်တွင် Yats ကို အချိန်မရွေး စီမံခန့်ခွဲပါ။",
|
||||||
|
"second_intro_title" : "၎င်းတို့အားလုံးကို အုပ်ချုပ်ရန် အီမိုဂျီလိပ်စာတစ်ခု",
|
||||||
|
"second_intro_content" : "သင်၏ Yat သည် သင့်ငွေကြေးအားလုံးအတွက် သင်၏ ရှည်လျားသော ဆဋ္ဌမကိန်းဂဏန်းများအားလုံးကို အစားထိုးသည့် တစ်မူထူးခြားသော အီမိုဂျီလိပ်စာတစ်ခုဖြစ်သည်။",
|
||||||
|
"third_intro_title" : "Yat သည် အခြားသူများနှင့် ကောင်းစွာကစားသည်။",
|
||||||
|
"third_intro_content" : "Yats သည် Cake Wallet အပြင်ဘက်တွင် နေထိုင်ပါသည်။ ကမ္ဘာပေါ်ရှိ မည်သည့်ပိုက်ဆံအိတ်လိပ်စာကို Yat ဖြင့် အစားထိုးနိုင်ပါသည်။",
|
||||||
|
"learn_more" : "ပိုမိုသိရှိရန်",
|
||||||
|
"search" : "ရှာရန်",
|
||||||
|
"search_language" : "ဘာသာစကားရှာပါ။",
|
||||||
|
"search_currency" : "ငွေကြေးကိုရှာပါ။",
|
||||||
|
"new_template" : "ပုံစံအသစ်",
|
||||||
|
"electrum_address_disclaimer" : "သင်အသုံးပြုသည့်အချိန်တိုင်းတွင် ကျွန်ုပ်တို့သည် လိပ်စာအသစ်များကို ထုတ်ပေးသော်လည်း ယခင်လိပ်စာများသည် ဆက်လက်အလုပ်လုပ်နေပါသည်။",
|
||||||
|
"wallet_name_exists" : "ထိုအမည်ဖြင့် ပိုက်ဆံအိတ်တစ်ခု ရှိနှင့်ပြီးဖြစ်သည်။ အခြားအမည်တစ်ခုကို ရွေးပါ သို့မဟုတ် အခြားပိုက်ဆံအိတ်ကို ဦးစွာ အမည်ပြောင်းပါ။",
|
||||||
|
"market_place" : "ဈေး",
|
||||||
|
"cake_pay_title" : "ကိတ်မုန့်လက်ဆောင်ကတ်များ",
|
||||||
|
"cake_pay_subtitle" : "လျှော့စျေးလက်ဆောင်ကတ်များဝယ်ပါ (USA သာ)",
|
||||||
|
"cake_pay_web_cards_title" : "Cake Pay ဝဘ်ကတ်များ",
|
||||||
|
"cake_pay_web_cards_subtitle" : "ကမ္ဘာတစ်ဝှမ်း ကြိုတင်ငွေပေးကတ်များနှင့် လက်ဆောင်ကတ်များကို ဝယ်ယူပါ။",
|
||||||
|
"about_cake_pay" : "Cake Pay သည် အမေရိကန်ပြည်ထောင်စုရှိ ကုန်သည် 150,000 ကျော်တွင် လက်ဆောင်ကတ်များကို လက်ဆောင်ကတ်များကို အလွယ်တကူ ဝယ်ယူနိုင်စေပါသည်။",
|
||||||
|
"cake_pay_account_note" : "ကတ်များကြည့်ရှုဝယ်ယူရန် အီးမေးလ်လိပ်စာတစ်ခုဖြင့် စာရင်းသွင်းပါ။ အချို့ကို လျှော့ဈေးဖြင့်ပင် ရနိုင်သည်။",
|
||||||
|
"already_have_account" : "အကောင့်ရှိပြီးသားလား?",
|
||||||
|
"create_account" : "အကောင့်ပြုလုပ်ပါ",
|
||||||
|
"privacy_policy" : "ကိုယ်ရေးအချက်အလက်မူဝါဒ",
|
||||||
|
"welcome_to_cakepay" : "Cake Pay မှကြိုဆိုပါသည်။",
|
||||||
|
"sign_up" : "ဆိုင်းအပ်",
|
||||||
|
"forgot_password" : "စကားဝှက်မေ့နေပါသလား",
|
||||||
|
"reset_password" : "လျှို့ဝှတ်နံပါတ်အားမူလအတိုင်းပြန်လုပ်သည်",
|
||||||
|
"gift_cards" : "လက်ဆောင်ကဒ်ပြား",
|
||||||
|
"setup_your_debit_card" : "သင့်ဒက်ဘစ်ကတ်ကို စနစ်ထည့်သွင်းပါ။",
|
||||||
|
"no_id_required" : "ID မလိုအပ်ပါ။ ငွေဖြည့်ပြီး ဘယ်နေရာမဆို သုံးစွဲပါ။",
|
||||||
|
"how_to_use_card" : "ဒီကတ်ကို ဘယ်လိုသုံးမလဲ။",
|
||||||
|
"purchase_gift_card" : "လက်ဆောင်ကတ်ဝယ်ပါ။",
|
||||||
|
"verification" : "စိစစ်ခြင်း။",
|
||||||
|
"fill_code" : "သင့်အီးမေးလ်သို့ ပေးထားသည့် အတည်ပြုကုဒ်ကို ဖြည့်ပါ။",
|
||||||
|
"dont_get_code" : "ကုဒ်ကို မရဘူးလား?",
|
||||||
|
"resend_code" : "ကျေးဇူးပြု၍ ပြန်ပို့ပါ။",
|
||||||
|
"debit_card" : "ဒက်ဘစ်ကတ်",
|
||||||
|
"cakepay_prepaid_card" : "CakePay ကြိုတင်ငွေဖြည့်ဒက်ဘစ်ကတ်",
|
||||||
|
"no_id_needed" : "ID မလိုအပ်ပါ။",
|
||||||
|
"frequently_asked_questions" : "မေးလေ့ရှိသောမေးခွန်းများ",
|
||||||
|
"debit_card_terms" : "ဤဒစ်ဂျစ်တယ်ပိုက်ဆံအိတ်ရှိ သင့်ငွေပေးချေမှုကတ်နံပါတ် (နှင့် သင့်ငွေပေးချေကတ်နံပါတ်နှင့် သက်ဆိုင်သောအထောက်အထားများ) ၏ သိုလှောင်မှုနှင့် အသုံးပြုမှုသည် အချိန်အခါနှင့်အမျှ သက်ရောက်မှုရှိသကဲ့သို့ ကတ်ကိုင်ဆောင်ထားသူ၏ သဘောတူညီချက်၏ စည်းကမ်းသတ်မှတ်ချက်များနှင့် ကိုက်ညီပါသည်။",
|
||||||
|
"please_reference_document" : "နောက်ထပ်အချက်အလက်များအတွက် အောက်ပါစာရွက်စာတမ်းများကို ကိုးကားပါ။",
|
||||||
|
"cardholder_agreement" : "ကတ်ကိုင်ဆောင်သူ သဘောတူညီချက်",
|
||||||
|
"e_sign_consent" : "E-Sign သဘောတူညီချက်",
|
||||||
|
"agree_and_continue" : "သဘောတူပြီး ရှေ့ဆက်ပါ။",
|
||||||
|
"email_address" : "အီးမေးလ်လိပ်စာ",
|
||||||
|
"agree_to" : "အကောင့်ဖန်တီးခြင်းဖြင့် သင်သည် ဤအရာကို သဘောတူပါသည်။",
|
||||||
|
"and" : "နှင့်",
|
||||||
|
"enter_code" : "ကုဒ်ထည့်ပါ။",
|
||||||
|
"congratulations" : "ဂုဏ်ယူပါသည်။",
|
||||||
|
"you_now_have_debit_card" : "ယခု သင့်တွင် ဒက်ဘစ်ကတ်တစ်ခုရှိသည်။",
|
||||||
|
"min_amount" : "အနည်းဆုံး- ${value}",
|
||||||
|
"max_amount" : "အများဆုံး- ${value}",
|
||||||
|
"enter_amount" : "ပမာဏကို ထည့်ပါ။",
|
||||||
|
"billing_address_info" : "ငွေပေးချေရမည့်လိပ်စာကို တောင်းဆိုပါက သင့်ပို့ဆောင်ရေးလိပ်စာကို ပေးပါ။",
|
||||||
|
"order_physical_card" : "ရုပ်ပိုင်းဆိုင်ရာကတ်ကို မှာယူပါ။",
|
||||||
|
"add_value" : "တန်ဖိုးထည့်ပါ။",
|
||||||
|
"activate" : "အသက်သွင်းပါ။",
|
||||||
|
"get_a" : "တစ်ခုရယူပါ။",
|
||||||
|
"digital_and_physical_card" : " ဒစ်ဂျစ်တယ်နှင့် ရုပ်ပိုင်းဆိုင်ရာ ကြိုတင်ငွေပေးချေသော ဒက်ဘစ်ကတ်",
|
||||||
|
"get_card_note" : " ဒစ်ဂျစ်တယ်ငွေကြေးများဖြင့် ပြန်လည်စတင်နိုင်သည်။ နောက်ထပ် အချက်အလက် မလိုအပ်ပါ။",
|
||||||
|
"signup_for_card_accept_terms" : "ကတ်အတွက် စာရင်းသွင်းပြီး စည်းကမ်းချက်များကို လက်ခံပါ။",
|
||||||
|
"add_fund_to_card" : "ကတ်များသို့ ကြိုတင်ငွေပေးငွေများ ထည့်ပါ (${value} အထိ)",
|
||||||
|
"use_card_info_two" : "ဒစ်ဂျစ်တယ်ငွေကြေးများဖြင့်မဟုတ်ဘဲ ကြိုတင်ငွေပေးချေသည့်အကောင့်တွင် သိမ်းထားသည့်အခါ ရန်ပုံငွေများကို USD သို့ ပြောင်းလဲပါသည်။",
|
||||||
|
"use_card_info_three" : "ဒစ်ဂျစ်တယ်ကတ်ကို အွန်လိုင်း သို့မဟုတ် ထိတွေ့မှုမဲ့ ငွေပေးချေမှုနည်းလမ်းများဖြင့် အသုံးပြုပါ။",
|
||||||
|
"optionally_order_card" : "ရုပ်ပိုင်းဆိုင်ရာကတ်ကို ရွေးချယ်နိုင်သည် ။",
|
||||||
|
"hide_details" : "အသေးစိတ်ကို ဝှက်ပါ။",
|
||||||
|
"show_details" : "အသေးစိတ်ပြ",
|
||||||
|
"upto" : "${value} အထိ",
|
||||||
|
"discount" : "${value}% ချွေတာ",
|
||||||
|
"gift_card_amount" : "လက်ဆောင်ကတ် ပမာဏ",
|
||||||
|
"bill_amount" : "ဘီလ်ပမာဏ",
|
||||||
|
"you_pay" : "သင်ပေးချေပါ။",
|
||||||
|
"tip" : "အကြံပြုချက်-",
|
||||||
|
"custom" : "စိတ်ကြိုက်",
|
||||||
|
"by_cake_pay" : "Cake Pay ဖြင့်",
|
||||||
|
"expires" : "သက်တမ်းကုန်သည်။",
|
||||||
|
"mm": "MM",
|
||||||
|
"yy": "YY",
|
||||||
|
"online" : "အွန်လိုင်း",
|
||||||
|
"offline" : "အော့ဖ်လိုင်း",
|
||||||
|
"gift_card_number" : "လက်ဆောင်ကတ်နံပါတ်",
|
||||||
|
"pin_number" : "လျှို့ဝှက်နံပါတ်",
|
||||||
|
"total_saving" : "စုစုပေါင်းစုဆောင်းငွေ",
|
||||||
|
"last_30_days" : "လွန်ခဲ့သော ရက် 30",
|
||||||
|
"avg_savings" : "ပျမ်းမျှ စုဆောင်းငွေ",
|
||||||
|
"view_all" : "အားလုံးကိုကြည့်ရှုပါ။",
|
||||||
|
"active_cards" : "အသက်ဝင်သောကတ်များ",
|
||||||
|
"delete_account" : "အကောင့်ဖျက်ပါ။",
|
||||||
|
"cards" : "ကတ်များ",
|
||||||
|
"active" : "အသက်ဝင်သည်။",
|
||||||
|
"redeemed" : "ရွေးနှုတ်ခဲ့သည်။",
|
||||||
|
"gift_card_balance_note" : "လက်ကျန်လက်ကျန်ရှိသည့် လက်ဆောင်ကတ်များ ဤနေရာတွင် ပေါ်လာပါမည်။",
|
||||||
|
"gift_card_redeemed_note" : "သင်ရွေးယူထားသော လက်ဆောင်ကတ်များ ဤနေရာတွင် ပေါ်လာပါမည်။",
|
||||||
|
"logout" : "ထွက်လိုက်ပါ။",
|
||||||
|
"add_tip" : "အကြံပြုချက်ထည့်ပါ။",
|
||||||
|
"percentageOf" : "${amount} ၏",
|
||||||
|
"is_percentage" : "သည်",
|
||||||
|
"search_category" : "ရှာဖွေမှုအမျိုးအစား",
|
||||||
|
"mark_as_redeemed" : "ရွေးနှုတ်ခြင်းအဖြစ် အမှတ်အသားပြုပါ။",
|
||||||
|
"more_options" : "နောက်ထပ် ရွေးချယ်စရာများ",
|
||||||
|
"awaiting_payment_confirmation" : "ငွေပေးချေမှု အတည်ပြုချက်ကို စောင့်မျှော်နေပါသည်။",
|
||||||
|
"transaction_sent_notice" : "မျက်နှာပြင်သည် ၁ မိနစ်အကြာတွင် ဆက်လက်မလုပ်ဆောင်ပါက၊ ပိတ်ဆို့ရှာဖွေသူနှင့် သင့်အီးမေးလ်ကို စစ်ဆေးပါ။",
|
||||||
|
"agree" : "သဘောတူသည်။",
|
||||||
|
"in_store" : "စတိုးတွင်",
|
||||||
|
"generating_gift_card" : "လက်ဆောင်ကတ်ထုတ်ပေးခြင်း။",
|
||||||
|
"payment_was_received" : "သင့်ငွေပေးချေမှုကို လက်ခံရရှိခဲ့သည်။",
|
||||||
|
"proceed_after_one_minute" : "မျက်နှာပြင်သည် ၁ မိနစ်အကြာတွင် ဆက်လက်မလုပ်ဆောင်ပါက သင့်အီးမေးလ်ကို စစ်ဆေးပါ။",
|
||||||
|
"order_id" : "မှာယူမှု ID",
|
||||||
|
"gift_card_is_generated" : "Gift Card ထုတ်ပေးပါသည်။",
|
||||||
|
"open_gift_card" : "Gift Card ကိုဖွင့်ပါ။",
|
||||||
|
"contact_support" : "ပံ့ပိုးကူညီမှုထံ ဆက်သွယ်ပါ။",
|
||||||
|
"gift_cards_unavailable" : "လက်ဆောင်ကတ်များကို ယခုအချိန်တွင် Monero၊ Bitcoin နှင့် Litecoin တို့ဖြင့်သာ ဝယ်ယူနိုင်ပါပြီ။",
|
||||||
|
"introducing_cake_pay" : "Cake Pay ကို မိတ်ဆက်ခြင်း။",
|
||||||
|
"cake_pay_learn_more" : "အက်ပ်ရှိ လက်ဆောင်ကတ်များကို ချက်ချင်းဝယ်ယူပြီး ကူပွန်ဖြင့် လဲလှယ်ပါ။\nပိုမိုလေ့လာရန် ဘယ်မှညာသို့ ပွတ်ဆွဲပါ။",
|
||||||
|
"automatic" : "အလိုအလျောက်",
|
||||||
|
"fixed_pair_not_supported" : "ရွေးချယ်ထားသော ဖလှယ်မှုများဖြင့် ဤပုံသေအတွဲကို ပံ့ပိုးမထားပါ။",
|
||||||
|
"variable_pair_not_supported" : "ရွေးချယ်ထားသော ဖလှယ်မှုများဖြင့် ဤပြောင်းလဲနိုင်သောအတွဲကို ပံ့ပိုးမထားပါ။",
|
||||||
|
"none_of_selected_providers_can_exchange" : "ရွေးချယ်ထားသော ဝန်ဆောင်မှုပေးသူများမှ ဤလဲလှယ်မှုကို ပြုလုပ်၍မရပါ။",
|
||||||
|
"choose_one" : "တစ်ခုရွေးပါ။",
|
||||||
|
"choose_from_available_options" : "ရနိုင်သောရွေးချယ်မှုများမှ ရွေးပါ-",
|
||||||
|
"custom_redeem_amount" : "စိတ်ကြိုက်သုံးငွေပမာဏ",
|
||||||
|
"add_custom_redemption" : "စိတ်ကြိုက်ရွေးယူမှုကို ထည့်ပါ။",
|
||||||
|
"remaining" : "ကျန်",
|
||||||
|
"delete_wallet" : "ပိုက်ဆံအိတ်ကို ဖျက်ပါ။",
|
||||||
|
"delete_wallet_confirm_message" : "${wallet_name} ပိုက်ဆံအိတ်ကို ဖျက်လိုသည်မှာ သေချာပါသလား။",
|
||||||
|
"low_fee" : "အနိမ့်ကြေး",
|
||||||
|
"low_fee_alert" : "သင်သည် လက်ရှိတွင် သက်သာသော ကွန်ရက်အခကြေးငွေဦးစားပေးကို အသုံးပြုနေပါသည်။ ၎င်းသည် အကြာကြီးစောင့်ဆိုင်းခြင်း၊ မတူညီသောနှုန်းထားများ သို့မဟုတ် ပယ်ဖျက်ထားသော ကုန်သွယ်မှုများကို ဖြစ်စေနိုင်သည်။ ပိုမိုကောင်းမွန်သော အတွေ့အကြုံအတွက် ပိုမိုမြင့်မားသော အခကြေးငွေ သတ်မှတ်ပေးရန် အကြံပြုအပ်ပါသည်။",
|
||||||
|
"ignor" : "လျစ်လျူရှုပါ။",
|
||||||
|
"use_suggested" : "အကြံပြုထားသည်ကို အသုံးပြုပါ။",
|
||||||
|
"do_not_share_warning_text" : "ပံ့ပိုးကူညီမှုအပါအဝင် ဤအရာများကို အခြားမည်သူနှင့်မျှ မမျှဝေပါနှင့်။\n\nသင့်ငွေများကို ခိုးယူခံရနိုင်သည်!",
|
||||||
|
"help" : "ကူညီပါ",
|
||||||
|
"all_transactions" : "အရောင်းအဝယ်အားလုံး",
|
||||||
|
"all_trades" : "ကုန်သွယ်မှုအားလုံး",
|
||||||
|
"connection_sync" : "ချိတ်ဆက်မှုနှင့် ထပ်တူပြုခြင်း။",
|
||||||
|
"security_and_backup" : "လုံခြုံရေးနှင့် မိတ္တူ",
|
||||||
|
"create_backup" : "အရန်သိမ်းခြင်းကို ဖန်တီးပါ။",
|
||||||
|
"privacy_settings" : "Privacy settings တွေကို",
|
||||||
|
"privacy" : "ကိုယ်ရေးကိုယ်တာ",
|
||||||
|
"display_settings" : "ပြသရန် ဆက်တင်များ",
|
||||||
|
"other_settings" : "အခြားဆက်တင်များ",
|
||||||
|
"require_pin_after" : "ပြီးနောက် PIN လိုအပ်ပါသည်။",
|
||||||
|
"always" : "အမြဲတမ်း",
|
||||||
|
"minutes_to_pin_code" : "${minute} မိနစ်",
|
||||||
|
"disable_exchange" : "လဲလှယ်မှုကို ပိတ်ပါ။",
|
||||||
|
"advanced_privacy_settings" : "အဆင့်မြင့် ကိုယ်ရေးကိုယ်တာ ဆက်တင်များ",
|
||||||
|
"settings_can_be_changed_later" : "အက်ပ်ဆက်တင်များတွင် ဤဆက်တင်များကို နောက်ပိုင်းတွင် ပြောင်းလဲနိုင်သည်။",
|
||||||
|
"add_custom_node" : "စိတ်ကြိုက် Node အသစ်ကို ထည့်ပါ။",
|
||||||
|
"disable_fiat" : "Fiat ကိုပိတ်ပါ။",
|
||||||
|
"fiat_api" : "Fiat API",
|
||||||
|
"disabled" : "မသန်စွမ်း",
|
||||||
|
"enabled" : "ဖွင့်ထားသည်။",
|
||||||
|
"tor_only" : "Tor သာ",
|
||||||
|
"unmatched_currencies" : "သင့်လက်ရှိပိုက်ဆံအိတ်၏ငွေကြေးသည် စကင်ဖတ်ထားသော QR နှင့် မကိုက်ညီပါ။",
|
||||||
|
"contact_list_contacts" : "အဆက်အသွယ်များ",
|
||||||
|
"contact_list_wallets" : "ကျွန်ုပ်၏ ပိုက်ဆံအိတ်များ"
|
||||||
|
}
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Ingeschakeld",
|
"enabled": "Ingeschakeld",
|
||||||
"tor_only": "Alleen Tor",
|
"tor_only": "Alleen Tor",
|
||||||
"unmatched_currencies": "De valuta van uw huidige portemonnee komt niet overeen met die van de gescande QR",
|
"unmatched_currencies": "De valuta van uw huidige portemonnee komt niet overeen met die van de gescande QR",
|
||||||
|
"orbot_running_alert": "Zorg ervoor dat Orbot actief is voordat u verbinding maakt met dit knooppunt.",
|
||||||
"contact_list_contacts": "Contacten",
|
"contact_list_contacts": "Contacten",
|
||||||
"contact_list_wallets": "Mijn portefeuilles"
|
"contact_list_wallets": "Mijn portefeuilles"
|
||||||
}
|
}
|
||||||
|
|
|
@ -675,6 +675,7 @@
|
||||||
"disable_fiat": "Wyłącz waluty FIAT",
|
"disable_fiat": "Wyłącz waluty FIAT",
|
||||||
"fiat_api": "API Walut FIAT",
|
"fiat_api": "API Walut FIAT",
|
||||||
"disabled": "Wyłączone",
|
"disabled": "Wyłączone",
|
||||||
|
"orbot_running_alert": "Upewnij się, że Orbot działa przed połączeniem z tym węzłem.",
|
||||||
"enabled": "Włączone",
|
"enabled": "Włączone",
|
||||||
"tor_only": "Tylko sieć Tor",
|
"tor_only": "Tylko sieć Tor",
|
||||||
"unmatched_currencies": "Waluta Twojego obecnego portfela nie zgadza się z waluctą zeskanowanego kodu QR",
|
"unmatched_currencies": "Waluta Twojego obecnego portfela nie zgadza się z waluctą zeskanowanego kodu QR",
|
||||||
|
|
|
@ -677,6 +677,7 @@
|
||||||
"enabled": "Habilitado",
|
"enabled": "Habilitado",
|
||||||
"tor_only": "Tor apenas",
|
"tor_only": "Tor apenas",
|
||||||
"unmatched_currencies": "A moeda da sua carteira atual não corresponde à do QR digitalizado",
|
"unmatched_currencies": "A moeda da sua carteira atual não corresponde à do QR digitalizado",
|
||||||
|
"orbot_running_alert": "Certifique-se de que o Orbot esteja em execução antes de se conectar a este nó.",
|
||||||
"contact_list_contacts": "Contatos",
|
"contact_list_contacts": "Contatos",
|
||||||
"contact_list_wallets": "minhas carteiras"
|
"contact_list_wallets": "minhas carteiras"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,6 +678,7 @@
|
||||||
"enabled": "Включено",
|
"enabled": "Включено",
|
||||||
"tor_only": "Только Tor",
|
"tor_only": "Только Tor",
|
||||||
"unmatched_currencies": "Валюта вашего текущего кошелька не соответствует валюте отсканированного QR-кода.",
|
"unmatched_currencies": "Валюта вашего текущего кошелька не соответствует валюте отсканированного QR-кода.",
|
||||||
|
"orbot_running_alert": "Перед подключением к этому узлу убедитесь, что Orbot запущен.",
|
||||||
"contact_list_contacts": "Контакты",
|
"contact_list_contacts": "Контакты",
|
||||||
"contact_list_wallets": "Мои кошельки"
|
"contact_list_wallets": "Мои кошельки"
|
||||||
}
|
}
|
||||||
|
|
|
@ -676,6 +676,7 @@
|
||||||
"enabled" : "เปิดใช้งาน",
|
"enabled" : "เปิดใช้งาน",
|
||||||
"tor_only" : "Tor เท่านั้น",
|
"tor_only" : "Tor เท่านั้น",
|
||||||
"unmatched_currencies" : "สกุลเงินของกระเป๋าปัจจุบันของคุณไม่ตรงกับของ QR ที่สแกน",
|
"unmatched_currencies" : "สกุลเงินของกระเป๋าปัจจุบันของคุณไม่ตรงกับของ QR ที่สแกน",
|
||||||
|
"orbot_running_alert": "โปรดตรวจสอบว่า Orbot กำลังทำงานก่อนที่จะเชื่อมต่อกับโหนดนี้",
|
||||||
"contact_list_contacts": "ติดต่อ",
|
"contact_list_contacts": "ติดต่อ",
|
||||||
"contact_list_wallets": "กระเป๋าเงินของฉัน"
|
"contact_list_wallets": "กระเป๋าเงินของฉัน"
|
||||||
}
|
}
|
||||||
|
|
|
@ -677,6 +677,7 @@
|
||||||
"enabled": "Увімкнено",
|
"enabled": "Увімкнено",
|
||||||
"tor_only": "Тільки Tor",
|
"tor_only": "Тільки Tor",
|
||||||
"unmatched_currencies": "Валюта вашого гаманця не збігається з валютою сканованого QR-коду",
|
"unmatched_currencies": "Валюта вашого гаманця не збігається з валютою сканованого QR-коду",
|
||||||
|
"orbot_running_alert": "Перед підключенням до цього вузла переконайтеся, що Orbot запущено.",
|
||||||
"contact_list_contacts": "Контакти",
|
"contact_list_contacts": "Контакти",
|
||||||
"contact_list_wallets": "Мої гаманці"
|
"contact_list_wallets": "Мої гаманці"
|
||||||
}
|
}
|
||||||
|
|
|
@ -676,6 +676,7 @@
|
||||||
"enabled": "启用",
|
"enabled": "启用",
|
||||||
"tor_only": "仅限 Tor",
|
"tor_only": "仅限 Tor",
|
||||||
"unmatched_currencies": "您当前钱包的货币与扫描的 QR 的货币不匹配",
|
"unmatched_currencies": "您当前钱包的货币与扫描的 QR 的货币不匹配",
|
||||||
|
"orbot_running_alert": "请确保 Orbot 在连接到此节点之前正在运行。",
|
||||||
"contact_list_contacts": "联系人",
|
"contact_list_contacts": "联系人",
|
||||||
"contact_list_wallets": "我的钱包"
|
"contact_list_wallets": "我的钱包"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. ./config.sh
|
. ./config.sh
|
||||||
HAVEN_VERSION=tags/v3.0.0
|
HAVEN_VERSION=tags/v3.0.3
|
||||||
HAVEN_SRC_DIR=${WORKDIR}/haven
|
HAVEN_SRC_DIR=${WORKDIR}/haven
|
||||||
|
|
||||||
git clone https://github.com/haven-protocol-org/haven-main.git ${HAVEN_SRC_DIR}
|
git clone https://github.com/haven-protocol-org/haven-main.git ${HAVEN_SRC_DIR}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
HAVEN_URL="https://github.com/haven-protocol-org/haven-main.git"
|
HAVEN_URL="https://github.com/haven-protocol-org/haven-main.git"
|
||||||
HAVEN_DIR_PATH="${EXTERNAL_IOS_SOURCE_DIR}/haven"
|
HAVEN_DIR_PATH="${EXTERNAL_IOS_SOURCE_DIR}/haven"
|
||||||
HAVEN_VERSION=tags/v3.0.0
|
HAVEN_VERSION=tags/v3.0.3
|
||||||
BUILD_TYPE=release
|
BUILD_TYPE=release
|
||||||
PREFIX=${EXTERNAL_IOS_DIR}
|
PREFIX=${EXTERNAL_IOS_DIR}
|
||||||
DEST_LIB_DIR=${EXTERNAL_IOS_LIB_DIR}/haven
|
DEST_LIB_DIR=${EXTERNAL_IOS_LIB_DIR}/haven
|
||||||
|
|
Loading…
Reference in a new issue