-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtr.js
557 lines (557 loc) · 40.7 KB
/
tr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
// Turkish translation
export const tr = {
translation: {
en: "English", // English
zh: "简体中文", // 简体中文
ja: "日本語", // 日本語
ko: "한국어", // 한국어
fr: "Français", // Français
es: "Español", // Español
pt: "Português", // Português
de: "Deutsch", // Deutsch
vn: "Tiếng Việt", // Tiếng Việt
ru: "Русский", // Русский
tr: "Türkçe", // Türkçe
preference: "Tercih", // Preference
disable_button_vibration: "Düğme titreşimini devre dışı bırak", // Disable button vibration
back: "Geri", // Back
language: "Dil", // Language
app_theme: "Uygulama Teması", // App Theme
system: "Sistem", // System
dark: "Karanlık", // Dark
light: "Aydınlık", // Light
settings: "Ayarlar", // Settings
backup_and_security: "Yedekleme ve Güvenlik", // Backup & Security
manage_wallet: "Cüzdanı Yönet", // Manage Wallet
profile: "Profil", // Profile
app_preferences: "Uygulama Tercihleri", // App Preferences
notifications: "Bildirimler", // Notifications
help_support: "Yardım ve Destek", // Help & Support
about_my_doge: "My Doge Hakkında", // About My Doge
admin: "Yönetici", // Admin
i_cloud: "iCloud", // iCloud
cloud: "bulut", // cloud
youve_backed_up_to: "Yedeklediğiniz yer:", // You've backed up to
you_havent_created_a_cloud_backup:
"Henüz bir Bulut Yedeklemesi oluşturmadınız", // You haven't created a Cloud Backup
manage: "Yönet", // Manage
backup: "Yedekle", // Backup
view_seed_phrase: "Tohum Kelimelerini Görüntüle", // View Seed Phrase
pin: "PIN", // PIN
back_up_to: "Yedekleme yeri:", // Back up to
back_up_your_wallet: "Cüzdanınızı yedekleyin", // Back up your wallet
back_up_your_wallet_description:
"Cüzdanınızı buluta kaydedin ve bir şifre ile koruyun. Ayrıca Tohum Kelimelerinizi yazabilir veya bir şifre yöneticisine kopyalayabilirsiniz.", // Save your wallet to the cloud and protect it with a password. You can also write down your Seed Phrase or copy it to a password manager.
pin_description:
"PIN kodunuzu unutursanız, cüzdanınızı bir yedekten geri yüklemeniz gerekecektir.", // If your forget your PIN, you will need to restore your wallet from a backup.
change_pin: "PIN Değiştir", // Change PIN
your_pin_is_required:
"Ödeme yapmak ve hassas işlemleri gerçekleştirmek için PIN kodunuz gereklidir.", // Your PIN is required to make payments and perform sensitive actions.
use_fingerprint: "Parmak İzi/Yüz Kimliği Kullan", // Use Fingerprint/Face ID
ask_every_time_i_open_the_app: "Uygulamayı her açtığımda sor", // Ask every time I open the app
this_will_remove_all_wallet:
"Bu, cihazınızdan tüm cüzdan ile ilgili verileri kaldıracaktır.", // This will remove all wallet related data from your device.
delete_wallet: "Cüzdanı Sil", // Delete Wallet
sign_in_to_the_dogeverse: "Dogeverse'e Giriş Yap", // Sign in to the Dogeverse
dogeverse_intro_description:
"DogeTag'inizi alın, arkadaşlarınızı bulun, bağlantınızla ödemeler alın ve Dogeverse'deki içeriklerle etkileşime geçin.", // Claim Your DogeTag, find friends, receive payments with your link, and engage with content in the Dogeverse.
sign_in: "Giriş Yap", // Sign in
sign_in_description:
"Telefon numaranız yalnızca giriş yapmak için kullanılır ve halka açık hale getirilmez.", // Your phone number is only used to sign in and will not be made public.
create_account_description:
"Dogeverse'e katılın ve büyük bir Shibe ağına bağlanın.", // Join the Dogeverse and connect with a huge network of Shibes.
send_verification: "Doğrulama Gönder", // Send Verification
verify_your_phone_number: "Telefon Numaranızı Doğrulayın", // Verify Your Phone Number
enter_the_code_sent_to: "Gönderilen kodu girin:", // Enter the code sent to
resend_code: "Kodu Yeniden Gönder", // Resend Code
wrong_number: "Yanlış Numara", // Wrong Number
confirm_code: "Kodu Onayla", // Confirm Code
youve_entered_the_verse: "Verse'e girdiniz", // You've entered the Verse
youre_now_ready_to_explore_the_dogeverse:
"Artık Dogeverse'i keşfetmeye hazırsınız!", // You're now ready to explore the Dogeverse!
lets_go: "Hadi gidelim!", // Let's go!
edit_profile: "Profili Düzenle", // Edit Profile
social_connect: "Sosyal Bağlantı", // Social Connect
profile_privacy: "Profil Gizliliği", // Profile Privacy
profile_is_public: "Profil Herkese Açık", // Profile is Public
show_wallet_address_and_tip_button:
"Cüzdan adresini ve Bahşiş düğmesini göster", // Show wallet address and Tip button
preferences: "Tercihler", // Preferences
confirm_x_tips: "𝕏 Bahşişlerini Onayla", // Confirm 𝕏 Tips
tips_received: "Alınan Bahşişler", // Tips Received
new_followers: "Yeni Takipçiler", // New Followers
new_memes: "Yeni Memeler", // New Memes
about_mydoge: "MyDoge Hakkında", // About MyDoge
terms_of_use: "Kullanım Şartları", // Terms of Use
privacy_policy: "Gizlilik Politikası", // Privacy Policy
share_mydoge: "MyDoge'u Paylaş", // Share MyDoge
visit_our_website: "Web Sitemizi Ziyaret Edin", // Visit Our Website
settings_and_support: "Ayarlar ve Destek", // Settings and Support
connect_twitch: "Twitch'e Bağlan", // Connect Twitch
connect_x: "𝕏'e Bağlan", // Connect 𝕏
create_a_post: "Gönderi Oluştur", // Create a Post
following: "Takip Ediliyor", // Following
followers: "Takipçiler", // Followers
recent_activity: "Son Aktivite", // Recent Activity
history: "Geçmiş", // History
price: "Fiyat", // Price
usd: "USD", // USD
txs: "İşlemler", // TXs
hr: "sa", // hr
send: "Gönder", // Send
receive: "Al", // Receive
buy: "Satın Al", // Buy
scan: "Tara", // Scan
from: "Gönderen", // From
to: "Alıcı", // To
note: "Not", // Note
timestamp: "Zaman Damgası", // Timestamp
confirmations: "Onaylar", // Confirmations
tx_hash: "İşlem Hash'i", // TX Hash
tx_hash_copied: "İşlem hash'i kopyalandı", // Transaction hash copied
note_copied: "Not kopyalandı", // Note copied
address_copied: "Adres kopyalandı", // Address copied
wallet: "Cüzdan", // Wallet
dogeverse: "Dogeverse", // Dogeverse
shop: "Mağaza", // Shop
receive_doge: "Doge Al", // Receive Doge
send_doge: "Doge Gönder", // Send Doge
confirm_transaction: "İşlemi Onayla", // Confirm Transaction
scan_qr_code: "QR Kodu Tara", // Scan QR Code
new_post: "Yeni Gönderi", // New Post
send_doge_alert_box_message:
"Arkadaşlarınıza DOGE gönderebilirsiniz, bir cüzdan adresi veya MyDoge kullanıcı adı girin", // You can send DOGE to your friends, enter a wallet address or a MyDoge username
wallet_address_or_username: "Cüzdan adresi veya kullanıcı adı", // Wallet address or username
saved_addresses: "Kayıtlı Adresler", // Saved Addresses
add_new: "Yeni Ekle", // Add New
sending_to: "Gönderiliyor:", // Sending to
save: "Kaydet", // Save
saved: "Kaydedildi", // Saved
balance: "Bakiye", // Balance
max: "Maksimum", // Max
next: "İleri", // Next
network_fee: "Ağ Ücreti", // Network Fee
max_tx_size_warning:
"UYARI: Maksimum işlem boyutuna ulaşıldı. Bu, bir seferde gönderebileceğiniz en yüksek miktardır.", // WARNING: Max transaction size reached. This is the most you can send at once.
confirm_transaction_warning:
"Onaylamadan önce her zaman kime gönderdiğinizi iki kez kontrol edin. Asla bir borsanın çekim adresine göndermeyin. Dogecoin işlemleri geri alınamaz!", // Always double check who you are sending to before confirming. Never send to an exchange withdrawal address. Dogecoin transactions can not be reversed!
add_note: "Not Ekle", // Add Note
wallet_address: "Cüzdan Adresi", // Wallet Address
wallet_label: "Cüzdan Etiketi", // Wallet Label
save_changes: "Değişiklikleri Kaydet", // Save Changes
save_address: "Adresi Kaydet", // Save Address
enter_new_PIN: "Yeni PIN girin", // Enter new PIN
confirm_new_pin: "Yeni PIN'i onaylayın", // Confirm new PIN
enter_new_PIN_description: "MyDoge cüzdanınız için yeni PIN'inizi girin", // Enter your new PIN for your MyDoge wallet
enter_old_PIN: "Eski PIN'i girin", // Enter old PIN
enter_old_PIN_description: "MyDoge cüzdanınız için eski PIN'inizi girin", // Enter your old PIN for your MyDoge wallet
forgot_PIN: "PIN'i Unuttum", // Forgot PIN
confirm: "Onayla", // Confirm
biometrics_confirmation:
"Cüzdanınızın kilidini açmak için biyometriyi kullanmak istiyor musunuz?", // Do you want to use biometrics to unlock your wallet?
use_biometrics: "Biyometri Kullan", // Use Biometrics
dismiss: "Kapat", // Dismiss
remove_wallet_data_description:
"Bu, cihazınızdan tüm cüzdan ile ilgili verileri kaldıracaktır.", // This will remove all wallet related data from your device.
delete_profile_forever: "MyDoge Profilinizi kalıcı olarak silin", // Delete your MyDoge Profile forever
sign_out: "Çıkış Yap", // Sign Out
delete_wallet_confirmation: "Hey! Emin misiniz?", // Hey! Are you sure?
remove_wallet_description:
"Mevcut cüzdanınız bu uygulamadan kaldırılacak, ancak her zaman blok zincirinde var olmaya devam edecektir.", // Your current wallet will be removed from this app, however it will always exist on the blockchain.
remove_profile_assets_description:
"Kullanıcı profiliniz ve varlıklarınız kaldırılacak ve kalıcı olarak silinecektir. Bu işlem geri alınamaz.", // Your user profile and assets will be removed and deleted permanently. This action cannot be undone.
wallet_recovery_description: "Bu cüzdanı SADECE şununla kurtarabilirsiniz:", // You can ONLY recover this wallet with your
seed_phrase: "TOHUM KELİMELERİ", // SEED PHRASE
no_seed_phrase: "MyDoge, tohum kelimelerinize sahip değildir.", // MyDoge does not have your seed phrase.
understand_continue: "Anlıyorum, devam et", // I understand, continue
enter: "Gir", // Enter
Delete: "Delete", // Delete // Stays in English for UI compatibility
erase_wallet: "cüzdanınızı silmek için", // to erase your wallet
and_profile_data: "ve profil verilerini", // and profile data
message: "Mesaj", // Message
username: "Kullanıcı Adı", // Username
edit: "Düzenle", // Edit
new_address: "Yeni Adres", // New Address
your_seed_phrase: "Tohum Kelimeleriniz ✍️", // Your Seed Phrase ✍️
save_seed_phrase_instructions:
"Bu kelimeleri sırasıyla kaydedin. Onları yazın ve güvenli bir yerde saklayın veya bir şifre yöneticisine kopyalayın.", // Save these words, in order. Write them down and keep them somewhere safe, or copy them to a password manager.
seed_phrase_warning:
"Tohum Kelimeleriniz cüzdanınızın anahtarıdır. Bu kelimeler ile herkes fonlarınıza erişebilir. Daha fazla bilgi için dokunun", // Your Seed Phrase is the key to your wallet. Anyone with this phrase can access your funds. Tap to learn more
copy: "Kopyala", // Copy
hide: "Gizle", // Hide
show: "Göster", // Show
screenshot_warning:
"Tohum kelimelerinizin ekran görüntüleri veya diğer dijital kopyaları üçüncü taraflara sızabilir.", // Screenshots or other digital copies of your seed phrase could leak to a third party.
okay: "Tamam", // Okay
seed_phrase_importance: "Tohum Kelimelerim ne kadar önemli?", // How important is my Seed Phrase?
seed_phrase_explanation:
"Tohum Kelimelerinize sahip olan herkes fonlarınıza erişebilir. Tohum Kelimelerinizi kimseyle paylaşmayın. MyDoge, Tohum Kelimelerinizi sizin için kaydetmez. Cihazınız hasar görürse, kaybolursa veya çalınırsa ya da başka bir şekilde erişilemez hale gelirse, Tohum Kelimeleriniz cüzdanınızı kurtarmanın tek yoludur.", // Anyone with your Seed Phrase can access your funds. Do not share your Seed Phrase with anyone. MyDoge does not save your Seed Phrase for you. Should your device be damaged, lost or stolen, or otherwise inaccessible, your Seed Phrase is the only way to recover your wallet.
send_receive_tips_x: "𝕏 üzerinden bahşiş gönder ve al", // Send and receive tips via 𝕏
read_mydogetip_faq: "MyDogeTip SSS'yi oku", // Read the MyDogeTip FAQ
connect_with_x: "𝕏 ile bağlan", // Connect with 𝕏
start_receive_tips_twitch: "Twitch'te bahşiş almaya başla", // Start receiving tips on Twitch
visit_mydogetv_twitch:
"Daha fazla bilgi için Twitch'te MyDogeTV'yi ziyaret edin", // Visit MyDogeTV on Twitch for more info
connect_with_twitch: "Twitch ile bağlan", // Connect with Twitch
screen_not_exist: "Bu ekran mevcut değil.", // This screen doesn't exist.
go_to_home_screen: "Ana Ekrana Git", // Go to Home Screen
gift_cards: "Hediye Kartları", // Gift Cards
backup_wallet: "Yeni cüzdanınızı yedekleyin", // Back up your new wallet
backup_required:
"Fonlarınızı güvence altına almak için yedekleme gereklidir", // A backup is required to secure your funds
why_backups_important: "Yedeklemeler neden önemlidir?", // Why are backups important?
learn_about_backups: "Yedeklemeler hakkında bilgi almak için dokunun", // Tap to learn about backups
backup_to: "Yedekleme yeri:", // Backup to
save_wallet_to_cloud:
"Cüzdanınızı buluta kaydedin ve bir şifre ile koruyun", // Save your wallet to the cloud and protect it with a password
write_on_paper: "Kağıda yaz", // Write on paper
write_down_seed_phrase:
"Tohum Kelimelerinizi yazın veya bir şifre yöneticisine kaydedin", // Write down your Seed Phrase or save it in a password manager
why_backups_important_description:
"Kendi gözetiminiz, MyDoge ekibi de dahil olmak üzere başka kimsenin fonlarınıza erişemeyeceği anlamına gelir. Yedekleme, cihazınız hasar görürse, kaybolursa veya çalınırsa ya da silinirse cüzdanınızı geri yüklemenin tek yoludur.", // Self-custody means that nobody else can access your funds, not even the MyDoge team. A backup is the only way to restore your wallet if your device is damaged, lost or stolen, or erased.
choose_password: "Bir şifre seçin", // Choose a password
use_memorable_password:
"Lütfen hatırlayabileceğiniz bir şifre kullanın. Daha uzun şifreler daha güvenlidir.", // Please use a password you can remember. Longer passwords are more secure.
more_secure_password:
"Lütfen hatırlayabileceğiniz bir şifre kullanın. Daha uzun şifreler daha güvenlidir.", // Please use a password you can remember. Longer passwords are more secure.
lose_password_lose_backup:
"Bu şifreyi kaybederseniz, cüzdan yedeklemenizi kaybedersiniz.", // If you lose this password you will lose your wallet backup.
password: "Şifre", // Password
confirm_password: "Şifreyi Onayla", // Confirm Password
confirm_backup: "Yedeklemeyi Onayla", // Confirm Backup
overwrite_backup_title: "Mevcut yedeklemenin üzerine yazılsın mı?", // Overwrite existing backup?
existing_wallet_overwrite_prompt:
"Bulutta daha önce kaydedilmiş bir cüzdanınız var. Üzerine yazmak istiyor musunuz?", // You have an existing wallet previously backed up to the cloud. Do you want to overwrite it?
overwrite_backup: "Yedeklemenin Üzerine Yaz", // Overwrite backup
import_existing_wallet: "Mevcut Cüzdanı İçe Aktar", // Import existing wallet
unknown_cloud_error: "Bilinmeyen Bulut Hatası", // Unknown Cloud Error
unknown_cloud_error_body:
"Buluta yedekleme sırasında bilinmeyen bir hata oluştu.", // There was an unknown error while backing up to the cloud.
try_again_or_notify_support:
"Lütfen tekrar deneyin veya MyDoge desteğine bildirin.", // Please try again or notify MyDoge support.
enter_recovery_password: "Kurtarma şifresini girin", // Enter Recovery Password
enter_cloud_password_description:
"Tohum Kelimelerinizi bulutta saklamak için kullandığınız şifreyi girin", // Enter the password you used to store your seed phrase on the cloud
import_wallet: "Cüzdanı İçe Aktar", // Import wallet
imported_wallet_title: "Cüzdanınızı içe aktardınız", // You've imported your wallet
imported_wallet_success: "Cüzdanınızı başarıyla içe aktardınız!", // You've successfully imported your wallet!
secure_new_wallet: "Yeni cüzdanınızı güvence altına alın", // Secure your new wallet
set_pin: "6 haneli bir PIN belirleyin", // Set a 6-digit PIN
reenter_pin: "6 haneli PIN'i tekrar girin", // Re-enter 6-digit PIN
pin_payment_note: "Ödeme göndermek için PIN'inize ihtiyacınız olacak", // You'll need your PIN to send payments
use_biometric: "Parmak İzi/Yüz Kimliği Kullan", // Use Fingerprint/Face ID
ask_every_time: "Uygulamayı her açtığımda sor", // Ask every time I open the app
create_pin: "PIN Oluştur", // Create PIN
confirm_pin: "PIN'i Onayla", // Confirm PIN
choose_dogeverse_username: "DogeTag'inizi seçin", // Choose a DogeTag
dogeverse_link: "Web bağlantınız şöyle olacak:", // Your web link will be
continue: "Devam Et", // Continue
dogeverse_entry_title: "Verse'e girdiniz", // You've entered the verse
dogeverse_entry_body: "Artık Dogeverse'i keşfetmeye hazırsınız!", // You're now ready to explore the Dogeverse!
manual_backup_title: "Tohum Kelimelerini Yaz", // Write down Seed Phrase
save_words_order:
"Bu kelimeleri sırasıyla kaydedin. Onları yazın ve güvenli bir yerde saklayın veya bir şifre yöneticisine kopyalayın.", // Save these words, in order. Write them down and keep them somewhere safe, or copy them to a password manager.
seed_phrase_key:
"Tohum Kelimeleriniz cüzdanınızın anahtarıdır. Bu kelimeler ile herkes fonlarınıza erişebilir. Daha fazla bilgi için dokunun", // Your Seed Phrase is the key to your wallet. Anyone with this phrase can access your funds. Tap to learn more
written_down: "Bunu yazdım", // I've written it down
screenshot_alert:
"Tohum kelimelerinizin ekran görüntüleri veya diğer dijital kopyaları üçüncü taraflara sızabilir.", // Screenshots or other digital copies of your Seed Phrase could leak to a third party.
seed_phrase_access:
"Tohum Kelimelerinize sahip olan herkes fonlarınıza erişebilir. Tohum Kelimelerinizi kimseyle paylaşmayın. MyDoge, Tohum Kelimelerinizi sizin için kaydetmez. Cihazınız hasar görürse, kaybolursa veya çalınırsa ya da başka bir şekilde erişilemez hale gelirse, Tohum Kelimeleriniz cüzdanınızı kurtarmanın tek yoludur.", // Anyone with your Seed Phrase can access your funds. Do not share your Seed Phrase with anyone. MyDoge does not save your Seed Phrase for you. Should your device be damaged, lost or stolen, or otherwise inaccessible, your Seed Phrase is the only way to recover your wallet.
icloud_backup: "iCloud Yedeklemesi", // iCloud Backup
cloud_backup: "Bulut Yedeklemesi", // Cloud Backup
dont_lose_wallet: "Cüzdanınızı kaybetmeyin!", // Don't lose your wallet!
save_online_backup: "Çevrimiçi yedeklemeyi şuraya kaydedin:", // Save an online backup to
icloud: "iCloud", // iCloud
google_drive: "Google Drive", // Google Drive
do_this_later: "Bunu daha sonra yapacağım", // I'll do this later
confirm_seed_phrase: "Tohum Kelimelerini Onayla", // Confirm seed phrase
select_correct_word:
"Lütfen aşağıdaki listeden her pozisyon için doğru kelimeyi seçin.", // Please select the correct word in each position from the list below.
enter_seed_phrase: "Tohum Kelimelerini Girin", // Enter Seed Phrase
enter_seed_phrase_instructions:
"Mevcut bir cüzdanı geri yüklemek için 12 kelimelik Tohum Kelimelerinizi girin", // Enter your 12 word Seed Phrase to restore your existing wallet
paste: "Yapıştır", // Paste
restore_wallet: "Cüzdanı Geri Yükle", // Restore Wallet
wallet_imported: "Cüzdan içe aktarıldı!", // Wallet imported!
wallet_imported_body: "Cüzdanınız kullanıma hazır.", // Your wallet is ready to use.
restore_existing_wallet: "Mevcut cüzdanınızı geri yükleyin", // Restore your existing wallet
restore_existing_wallet_instructions:
"Zaten bir cüzdanınız var mı? Hadi onu geri getirelim!", // So you've got a wallet already? Let's bring it back up then!
restore_from: "Şuradan geri yükle:", // Restore from
restore_from_cloud_description: "Cüzdanınızı şuradan geri yükleyin:", // Restore your wallet from your
restore_with_seed_phrase: "Tohum Kelimeleri ile geri yükle", // Restore with a seed phrase
restore_with_seed_phrase_description:
"Mevcut bir MyDoge cüzdanını geri yüklemek için Tohum Kelimelerinizi kullanın", // Use your seed phrase to Restore an existing MyDoge wallet
no_cloud_backup: "Bulut Yedeklemesi Yok", // No Cloud Backup
no_cloud_backup_body:
"Bulut yedeklemesi bulunamadı. Lütfen bir Tohum Kelimesi ile geri yükleyin veya yeni bir cüzdan oluşturun", // Cloud backup not found. Please restore from a seed phrase, or create a new wallet
create_wallet: "Bir cüzdan oluştur", // Create a wallet
already_have_wallet: "Zaten bir cüzdanım var", // I already have a wallet
buy_send_receive_dogecoin: "Dogecoin Satın Al, Gönder ve Al", // Buy, Send & Receive Dogecoin
send_doge_tips:
"𝕏'te Doge bahşişleri gönderin, Doge'larınızı güvenle saklayın ve kendi bankanız olun", // Send Doge tips on 𝕏, store your Doge safely, and be your own bank
shop_gift_cards_apparel: "Hediye Kartları ve Giyim Alışverişi Yapın", // Shop Gift Cards and Apparel
buy_gift_cards:
"Dogecoin ile hediye kartları satın alın veya en son Doge Modasını keşfedin", // Buy gift cards with Dogecoin, or shop the latest Doge Fashion
enter_the_dogeverse: "Dogeverse'e Girin", // Enter the Dogeverse
claim_dogtag:
"DogeTag'inizi alın, arkadaşlarınızı bulun, bağlantınızla ödemeler alın ve memeler paylaşın", // Claim Your DogeTag, find friends, receive payments with your link, and share memes
so_much_tip: "Çok Bahşiş, Çok Vay!", // So Tip, Much Wow!
success: "Başarılı", // Success
sent_doge: "Gönderdiniz:", // You've sent
some_doge: "biraz Doge!", // some Doge!
total: "Toplam", // Total
done: "Tamam", // Done
shop_with_doge: "Doge ile Alışveriş Yap", // Shop with Doge
oops: "Ups!", // Oops!
no_comments_yet: "Henüz yorum yok", // No comments yet
to_post_a_comment: "yorum yapmak için", // to post a comment
your_comment: "Yorumunuz", // Your comment
post: "Gönder", // Post
delete: "Sil", // Delete
enable_push_notifications: "Push Bildirimleri Etkinleştirilsin mi?", // Enable Push Notifications?
get_notifications_for_tips: "Bahşişler ve Mesajlar için bildirim alın", // Get notifications for Tips and Messages
no_thanks: "Hayır, teşekkürler", // No thanks
open_settings: "Ayarları Aç", // Open Settings
swipe_for_more: "Daha fazlası için yukarı kaydırın", // Swipe up for more
transaction_confirmation_alert:
"Onaylamadan önce her zaman kime gönderdiğinizi iki kez kontrol edin. Asla bir borsanın çekim adresine göndermeyin. Dogecoin işlemleri geri alınamaz!", // Always double check who you are sending to before confirming. Never send to an exchange withdrawal address. Dogecoin transactions can not be reversed!
clear_amount: "Miktarı Temizle", // Clear Amount
set_amount: "Miktarı Ayarla", // Set Amount
save_qr: "QR'ı Kaydet", // Save QR
WALLET_ADDRESS: "CÜZDAN ADRESİ", // WALLET ADDRESS
dogetag_link: "DOGETAG BAĞLANTISI", // DOGETAG LINK
no_access_camera: "Kameraya erişim yok", // No access to camera
enable_camera_access_ios: "MyDoge için kamera erişimini etkinleştirin", // Enable camera access for MyDoge
grant_camera_permission_android: "Lütfen MyDoge'a kamera izni verin", // Please grant camera permission to MyDoge
scan_qr_payment: "Ödeme yapmak için QR kodunu tarayın", // Scan QR code to make a payment
select_image: "Resim Seç", // Select Image
find_friends_heading: "MyDoge'da Arkadaşları Bul", // Find Friends on MyDoge
find_friends_description:
"Kişi erişimine izin verin ve MyDoge'da arkadaşlarınızı ve kişilerinizi kolayca bulun.", // Allow contact access and make it easy to find friends and contacts on MyDoge.
find_friends_button: "Arkadaşları Bul", // Find Friends
later_button: "Bunu daha sonra yapacağım", // I'll do this later
own_address_error: "Kendi adresinize gönderemezsiniz", // You cannot send to your own address
invalid_address_error: "Geçersiz adres", // Invalid address
results_title: "Sonuçlar", // Results
all: "Tümü", // All
pending: "Beklemede", // Pending
enter_pin: "PIN Girin", // Enter PIN
enter_pin_to_confirm: "Onaylamak için Cüzdan PIN'inizi girin", // Enter your Wallet Pin to confirm
welcome_back: "Tekrar hoş geldiniz", // Welcome back
enter_wallet_pin: "Cüzdan PIN'inizi girin", // Enter your Wallet PIN
forgot_pin: "PIN'i Unuttum", // Forgot PIN
forgot_pin_title: "PIN'i Unuttum", // Forgot PIN
forgot_pin_body:
"Cüzdanınızın kilidini açmak için biyometriyi kullanmak istiyor musunuz?", // Do you want to use biometrics to unlock your wallet?
share: "Paylaş", // Share
address_copied_to_clipboard: "Adres panoya kopyalandı", // Address copied to clipboard
follows_you: "Sizi Takip Ediyor", // Follows You
official_mydoge_profile: "Resmi MyDoge Profili", // Official MyDoge Profile
official_mydoge_commerce_profile: "Resmi MyDoge Ticaret Profili", // Official MyDoge Commerce Profile
official_foundation_profile: "Resmi Vakıf Profili", // Official Foundation Profile
follow_back: "Geri Takip Et", // Follow Back
follow: "Takip Et", // Follow
tip: "Bahşiş", // Tip
share_profile: "Profili Paylaş", // Share Profile
unfollow: "Takibi Bırak", // Unfollow
unblock: "Engeli Kaldır", // Unblock
block_or_report: "Engelle veya Bildir", // Block or Report
copy_profile_url: "Profil URL'sini Kopyala", // Copy Profile URL
memes_error:
"Memeler yüklenirken hata oluştu. Lütfen geri dönün ve tekrar deneyin.", // Error loading memes. Please go back and try again.
user_profile_hidden: "Kullanıcı profili gizli", // User profile is hidden
error_loading_profile:
"Profil yüklenirken hata oluştu. Lütfen geri dönün ve tekrar deneyin.", // Error loading profile. Please go back and try again.
uid_not_specified: "Hata: uid belirtilmedi. Lütfen desteğe bildirin.", // Error: uid not specified. Please notify support.
block_or_report_description:
"MyDoge, bildirilen tüm profilleri yönergelerimize aykırı herhangi bir faaliyet için inceleyecektir. Ayrıca, gönderilerini görmemek için profili engelleyebilirsiniz.", // MyDoge will review all reported profiles for any activity against our guidelines. You can also block the profile to stop seeing their posts.
nevermind: "Boş ver", // Nevermind
report: "Bildir", // Report
block: "Engelle", // Block
unblock_user: "Kullanıcının Engelini Kaldır?", // Unblock User?
unblock_user_description:
"Bu, kullanıcının engelini kaldıracak ve gönderilerini görmeye devam edeceksiniz.", // This will unblock the user and you will continue to see their posts.
you_have_no_posts_yet: "Henüz gönderiniz yok", // You have no posts yet
no_posts_yet: "Henüz gönderi yok", // No posts yet
amount: "Miktar", // Amount
custom: "Özel", // Custom
add_a_message: "Bir mesaj ekle", // Add a message
find_friends: "Arkadaşları bul", // Find friends
cancel: "İptal", // Cancel
i_understand_continue: "Anlıyorum, devam et", // I understand, continue
hey_are_you_sure: "Hey! Emin misiniz?", // Hey! Are you sure?
delete_backup_confirmation:
"Bu yedeklemeyi sildiğinizde, bulut yedeklemenizi kaybedersiniz, bu işlem geri alınamaz", // Once you delete this backup, you lose your cloud backup, this action cannot be undone
all_transactions: "Tüm İşlemler", // All Transactions
pending_transactions: "Bekleyen İşlemler", // Pending Transactions
view_on: "Görüntüle:", // View on
invoice_id_copied: "Fatura ID'si kopyalandı", // Invoice ID copied
gift_card: "Hediye Kartı", // Gift Card
invoice_id: "Fatura ID", // Invoice ID
support: "Destek", // Support
phone_number: "Telefon numarası", // Phone number
whatsapp_verification_notice:
"Bir doğrulama kodu WhatsApp üzerinden telefonunuza gönderilecek", // A verification code will be sent to your phone via WhatsApp
via_whatsapp: "WhatsApp üzerinden", // via WhatsApp
you_may_not_have_backed_up_your_wallet:
"Bulutta mevcut bir yedeklemeniz var, ancak mevcut cüzdanınızı yedeklememiş olabilirsiniz.", // You have an existing backup on the cloud, but you may not have backed up your current wallet.
signed_in_as: "Şu şekilde giriş yapıldı:", // Signed in as
sign_in_to_restore_backup: "Yedeklemeyi geri yüklemek için giriş yapın", // Sign in to restore backup
sign_in_with_google: "Google ile giriş yap", // Sign in with Google
sign_in_to_backup: "Yedeklemek için giriş yapın", // Sign in to backup
delete_meme: "Meme'i sil?", // Delete meme?
delete_meme_confirmation:
"Bu, meme'i profilinizden ve Dogeverse'den kaldıracaktır.", // This will remove the meme from your profile and the Dogeverse.
meme_saved_to_gallery: "Meme galeriye kaydedildi!", // Meme saved to gallery!
error_saving_meme: "Meme kaydedilirken hata oluştu.", // Error saving meme.
report_or_block: "Bildir veya Engelle?", // Report or Block?
report_block_description:
"MyDoge, bildirilen tüm memeleri yönergelerimize aykırı herhangi bir faaliyet için inceleyecektir. Ayrıca, gönderilerini görmemek için profili engelleyebilirsiniz.", // MyDoge will review all reported memes for any activity against our guidelines. You can also block the profile to stop seeing their posts.
report_or_block_user: "Bildir veya Engelle?", // Report or Block?
are_you_sure_you_want_to_cancel_this_tip:
"Bu bahşişi iptal etmek istediğinizden emin misiniz?", // Are you sure you want to cancel this tip?
yes_cancel: "Evet, iptal et", // Yes, cancel
allow_photos_access: "Fotoğraf Erişimine İzin Ver?", // Allow Photos Access?
enable_photo_access_in_order_to_post_memes:
"Meme paylaşmak için fotoğraf erişimini etkinleştirin.", // Enable photo access in order to post memes.
cannot_upload_a_video_longer_than_60_seconds:
"60 saniyeden uzun video yüklenemez", // Cannot upload a video longer than 60 seconds
sign_in_to_post_memes: "Meme paylaşmak için giriş yapın", // Sign in to post memes
hidden_profiles_cannot_post: "Gizli profiller paylaşım yapamaz", // Hidden profiles cannot post
error_posting_meme: "Meme paylaşılırken hata oluştu", // Error posting meme
unsupported_file: "Desteklenmeyen dosya", // Unsupported file
unsupported_media_type: "Desteklenmeyen medya türü", // Unsupported media type
no_security_enabled: "Güvenlik Etkinleştirilmedi", // No Security Enabled
passcode_touch_id_face_id_required_to_use_your_wallet:
"Cüzdanınızı kullanmak için Şifre/Touch ID/Face ID gereklidir. Nasıl etkinleştirileceğini görmek ister misiniz?", // Passcode/Touch ID/Face ID is required to use your wallet. Do you want to see how to enable it?
yes_show_me_how: "Evet, nasıl yapılacağını göster", // Yes, show me how
the_meme_will_no_longer_be_posted: "Meme artık paylaşılmayacak", // The meme will no longer be posted
retry_post: "Gönderiyi yeniden dene?", // Retry post?
retry_post_confirmation: "Meme tekrar paylaşılacak", // The meme will be posted again
pins_dont_match_please_retry: "PIN'ler eşleşmiyor. Lütfen tekrar deneyin", // Pins don't match. Please retry
invalid_phrase: "Geçersiz ifade", // Invalid phrase
WARNING: "UYARI", // WARNING
username_must_be_at_least_4_characters:
"Kullanıcı adı en az 4 karakter olmalıdır", // Usernames must be at least 4 characters
username_must_contain_only_a_z_0_9_and_underscore:
"Kullanıcı adı sadece A-Z, 0-9 ve _ içermelidir", // Usernames must contain only A-Z, 0-9, and _
username_not_available: "Kullanıcı adı mevcut değil", // Username not available
username_available: "Kullanıcı adı mevcut", // Username available
error_try_again_or_contact_support:
"Hata. Tekrar deneyin veya destek ile iletişime geçin.", // Error. Try again or contact support.
enable_photo_access_in_order_to_change_your_avatar:
"Avatarınızı değiştirmek için fotoğraf erişimini etkinleştirin.", // Enable photo access in order to change your avatar.
invalid_seed_phrase_word: "Geçersiz tohum kelimesi", // Invalid seed phrase word
is_not_a_mydoge_seed_phrase_word: "MyDoge tohum kelimesi değil", // is not a MyDoge seed phrase word
wallet_not_found: "Cüzdan Bulunamadı!", // Wallet Not Found!
non_standard_words:
"Bir veya daha fazla standart olmayan kelime girdiniz! Bu, uyumluluk sorunları olabilecek bir cüzdanı içe aktaracaktır. Yalnızca bu ifadenin sizin olduğundan eminseniz devam edin.", // You have entered one or more non-standard words! This will import a wallet which may have compatibilty issues. Only proceed if you are sure this is your phrase.
warning: "Uyarı", // Warning
import: "İçe Aktar", // Import
iCloud_Drive_not_enabled: "iCloud Drive etkinleştirilmedi", // iCloud Drive not enabled
do_you_want_to_see_how_to_enable_it:
"Nasıl etkinleştirileceğini görmek ister misiniz?", // Do you want to see how to enable it?
backup_deleted: "Yedekleme silindi", // Backup deleted
error_deleting_backup: "Yedekleme silinirken hata oluştu", // Error deleting backup
ban_user: "Kullanıcıyı yasakla", // Ban user
ban_user_confirmation:
"Bu kullanıcıyı yasaklamak istediğinizden emin misiniz?", // Are you sure you want to ban this user?
ban: "Yasakla", // Ban
x_account_linked_to_another_user:
"𝕏 hesabı başka bir kullanıcıya bağlıdır. Bağlantıyı kaldırmak için lütfen diğer telefon numarasını kullanarak giriş yapın ve bu ekrandan geri dönün", // 𝕏 account linked to another user. To unlink, please log in using the other phone number and return to this screen
unexpected_error_contact_support:
"Beklenmeyen hata, destek ile iletişime geçin", // Unexpected error, contact support
not_a_valid_dogecoin_address: "Geçerli bir Dogecoin adresi değil", // Not a valid Dogecoin address
balance_too_low_deposit_more_doge:
"Bakiye çok düşük. Daha fazla DOGE yatırın.", // Balance too low. Deposit more DOGE.
error_preparing_transaction: "İşlem hazırlanırken hata oluştu", // Error preparing transaction
error_sending_transaction: "İşlem gönderilirken hata oluştu", // Error sending transaction
max_transaction_size_allowed_for: "İzin verilen maksimum işlem boyutu:", // Max transaction size allowed for
qr_code_saved_to_gallery: "QR kodu galeriye kaydedildi", // QR code saved to gallery
error_saving_qr_code: "QR kodu kaydedilirken hata oluştu", // Error saving QR code
cannot_send_to_your_own_address: "Kendi adresinize gönderemezsiniz", // Cannot send to your own address
unsupported_format_or_not_a_doge_address:
"Desteklenmeyen format veya DOGE adresi değil", // Unsupported format or not a DOGE address
qr_not_found_in_file: "Dosyada QR bulunamadı", // QR not found in file
unknown_file_error: "Bilinmeyen dosya hatası", // Unknown file error
invalid_address: "Geçersiz adres", // Invalid address
error_preparing_transaction_try_again:
"İşlem hazırlanırken hata oluştu. Lütfen tekrar deneyin.", // Error preparing transaction. Please try again.
error_processing_transaction_please_try_again:
"İşlem işlenirken hata oluştu. Lütfen tekrar deneyin.", // Error processing transaction. Please try again.
minimum_tip_amount_is: "Minimum bahşiş miktarı:", // Minimum tip amount is
backup_failed: "Yedekleme başarısız oldu", // Backup failed
backup_successful: "Yedekleme başarılı", // Backup successful
copied_to_clipboard: "Panoya kopyalandı", // Copied to clipboard
seed_phrase_correct: "Tohum kelimesi doğru", // Seed phrase correct
incorrect_phrase: "Yanlış ifade", // Incorrect phrase
incorrect_pin: "Yanlış PIN", // Incorrect PIN
pin_updated: "PIN güncellendi", // PIN updated
wallet_unlocked_you_may_enter_your_new_pin:
"Cüzdan kilidi açıldı. Yeni PIN'inizi girebilirsiniz", // Wallet unlocked. You may enter your new PIN
label_cannot_be_empty: "Etiket boş olamaz", // Label cannot be empty
address_saved: "Adres kaydedildi", // Address saved
label_already_exists: "Etiket zaten mevcut", // Label already exists
too_many_requests_please_try_again_later:
"Çok fazla istek. Lütfen daha sonra tekrar deneyin.", // Too many requests. Please try again later.
invalid_code: "Geçersiz kod.", // Invalid code.
unsupported_country: "Desteklenmeyen ülke", // Unsupported country
invalid_phone_number:
"Geçersiz telefon numarası.\n\"+<ülke kodu><telefon numarası>\" formatını kullanın.\nVOIP veya sabit telefon numaraları kullanılamaz.", // Invalid phone number. Use the format \"+<Country code><Phone number>\" Cannot use VOIP or landline numbers.
invalid_phone_number_error:
"Geçersiz telefon numarası. Lütfen \"+<ülke kodu><telefon numarası>\" formatını kullanın ve VOIP veya sabit telefon numaraları olmadığından emin olun.", // Invalid phone number. Please use the format \"+<Country code><Phone number>\" and make sure it is not a VOIP or landline number.
amount_mismatch: "Tutar uyuşmuyor. Lütfen tekrar deneyin.", // Amount mismatch. Please try again.
amount_mismatch_warning:
"Tutar uyumsuzluğu muhtemelen sınırlı harcanabilir işlemlerden kaynaklanmaktadır. Başka bir işlem göndermeden önce bu işlemin onaylanmasını bekleyin.", // Amount mismatch is likely due to limited spendable transactions. Wait for this transaction to confirm before sending another.
inscription_id: "İnscription ID", // Inscription ID
address: "Adres", // Address
output_value: "Çıkış değeri", // Output Value
preview: "Önizleme", // Preview
content: "İçerik", // Content
content_type: "İçerik tipi", // Content Type
genesis_transaction: "Genesis işlemi", // Genesis Transaction
nft_details: "NFT detayları", // NFT Details
transfer: "Transfer", // Transfer
transactions: "İşlemler", // Transactions
nfts: "NFTs", // NFTs
confirm_nft_transfer: "NFT transferini onayla", // Confirm NFT Transfer
confirm_transfer: "Transferi onayla", // Confirm Transfer
creating_transaction: "İşlem oluşturuluyor...", // Creating transaction...
error_creating_transaction: "İşlem oluşturulurken hata oluştu", // Error creating transaction
youve_sent: "Gönderildi", // You've sent
nft_sent: "NFT gönderildi", // NFT sent
transfer_nft: "NFT transferi", // Transfer NFT
transaction_history: "İşlem geçmişi", // Transaction History
view_all: "Tümünü gör", // View All
posts: "Gönderiler", // Posts
no_nfts_found: "NFT bulunamadı", // No NFTs found
tokens: "Fichas", // Tokens
transferable: "Transferível", // Transferable
token_details: "Detalhes do token", // Token Details
inscribe: "Inscrever", // Inscribe
floor_price: "Taban fiyatı", // Floor Price
twenty_four_hour_volume: "24 saatlik hacim", // 24H Volume
twenty_four_hour_change: "24 saatlik değişim", // 24H Change
volume: "Toplam Hacim", // Total Volume
holders: "Sahipçiler", // Holders
sales: "Satışlar", // Sales
minted: "Minted", // Minted
supply: "Suministro", // Supply
inscribe_for_transfer: "Inscrever para transferir", // Inscribe for Transfer
inscribe_for_transfer_description_1:
"Inicia o primeiro passo da transferência do seu", // Initiates the first step of transferring your
inscribe_for_transfer_description_2:
"Este passo torna a quantidade inscrita dos tokens disponível para transferência.", // This step makes the inscribed amount of tokens available for transfer.
last_price: "Último preço", // Last Price
info: "Bilgi", // Info
retry: "Tekrar deneyin", // Retry
select: "Seçin", // Select
inscription: "İnscription", // Inscription
error_fetching_user_details: "Kullanıcı detayları alırken hata oluştu", // Error fetching user details
transfer_token: "Token transferi", // Transfer Token
no_inscriptions_found: "İnscription bulunamadı", // No inscriptions found
dune_sent: "DUNE gönderildi", // DUNE sent
},
};