mirror of
https://github.com/pezkuwichain/pezkuwi-telegram-miniapp.git
synced 2026-04-22 03:07:55 +00:00
fix: resolve remaining lint errors in App.tsx and tr.ts
- Fix prettier formatting for lazy import in App.tsx - Use double quotes for Turkish strings containing apostrophes
This commit is contained in:
+1
-3
@@ -17,9 +17,7 @@ const RewardsSection = lazy(() =>
|
|||||||
const WalletSection = lazy(() =>
|
const WalletSection = lazy(() =>
|
||||||
import('@/sections/Wallet').then((m) => ({ default: m.WalletSection }))
|
import('@/sections/Wallet').then((m) => ({ default: m.WalletSection }))
|
||||||
);
|
);
|
||||||
const P2PSection = lazy(() =>
|
const P2PSection = lazy(() => import('@/sections/P2P').then((m) => ({ default: m.P2PSection })));
|
||||||
import('@/sections/P2P').then((m) => ({ default: m.P2PSection }))
|
|
||||||
);
|
|
||||||
const CitizenPage = lazy(() =>
|
const CitizenPage = lazy(() =>
|
||||||
import('@/pages/CitizenPage').then((m) => ({ default: m.CitizenPage }))
|
import('@/pages/CitizenPage').then((m) => ({ default: m.CitizenPage }))
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -306,12 +306,12 @@ const tr: Translations = {
|
|||||||
p2p: {
|
p2p: {
|
||||||
title: 'P2P Borsa',
|
title: 'P2P Borsa',
|
||||||
subtitle: 'Eşler arası kripto alım-satım',
|
subtitle: 'Eşler arası kripto alım-satım',
|
||||||
firstTime: 'P2P\'yi ilk kez mi kullanıyorsun?',
|
firstTime: "P2P'yi ilk kez mi kullanıyorsun?",
|
||||||
steps: [
|
steps: [
|
||||||
'Aşağıdaki butona tıklayarak web uygulamasını açın',
|
'Aşağıdaki butona tıklayarak web uygulamasını açın',
|
||||||
'Hesap oluşturun veya giriş yapın',
|
'Hesap oluşturun veya giriş yapın',
|
||||||
'Kurulum sürecini tamamlayın',
|
'Kurulum sürecini tamamlayın',
|
||||||
'Kurulumdan sonra P2P\'ye doğrudan erişebilirsiniz',
|
"Kurulumdan sonra P2P'ye doğrudan erişebilirsiniz",
|
||||||
],
|
],
|
||||||
note: 'Web uygulaması yeni bir pencerede açılacaktır.',
|
note: 'Web uygulaması yeni bir pencerede açılacaktır.',
|
||||||
button: 'P2P Platformunu Aç',
|
button: 'P2P Platformunu Aç',
|
||||||
|
|||||||
Reference in New Issue
Block a user