Update interface text and button labels to English

Translate UI elements, including button labels and descriptive text within the MediaOutletManagement component, from Korean to English.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/gVirbWH
This commit is contained in:
kimjaehyeon0101
2025-09-29 20:30:26 +00:00
parent f92f4670a7
commit 759851fe5e

View File

@ -172,7 +172,7 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
data-testid="button-create-article" data-testid="button-create-article"
> >
<Plus className="h-4 w-4 mr-2" /> <Plus className="h-4 w-4 mr-2" />
Create New Article
</Button> </Button>
<Button <Button
className="w-full justify-start" className="w-full justify-start"
@ -180,7 +180,7 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
data-testid="button-create-prediction" data-testid="button-create-prediction"
> >
<BarChart3 className="h-4 w-4 mr-2" /> <BarChart3 className="h-4 w-4 mr-2" />
Create Prediction Market
</Button> </Button>
<Button <Button
className="w-full justify-start" className="w-full justify-start"
@ -188,7 +188,7 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
data-testid="button-start-auction" data-testid="button-start-auction"
> >
<Gavel className="h-4 w-4 mr-2" /> <Gavel className="h-4 w-4 mr-2" />
Start Auction
</Button> </Button>
<Button <Button
className="w-full justify-start" className="w-full justify-start"
@ -196,7 +196,7 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
data-testid="button-moderate-comments" data-testid="button-moderate-comments"
> >
<MessageSquare className="h-4 w-4 mr-2" /> <MessageSquare className="h-4 w-4 mr-2" />
Manage Comments
</Button> </Button>
</CardContent> </CardContent>
</Card> </Card>
@ -207,17 +207,17 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
<Card> <Card>
<CardHeader> <CardHeader>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<CardTitle> </CardTitle> <CardTitle>Article Management</CardTitle>
<Button data-testid="button-new-article"> <Button data-testid="button-new-article">
<Plus className="h-4 w-4 mr-2" /> <Plus className="h-4 w-4 mr-2" />
Create New Article
</Button> </Button>
</div> </div>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<div className="text-center py-12"> <div className="text-center py-12">
<div className="text-gray-400 text-lg mb-2"> </div> <div className="text-gray-400 text-lg mb-2">No articles yet</div>
<div className="text-gray-500 text-sm"> </div> <div className="text-gray-500 text-sm">Create your first article</div>
</div> </div>
</CardContent> </CardContent>
</Card> </Card>
@ -227,17 +227,17 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
<Card> <Card>
<CardHeader> <CardHeader>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<CardTitle> </CardTitle> <CardTitle>Prediction Market Management</CardTitle>
<Button data-testid="button-new-prediction"> <Button data-testid="button-new-prediction">
<Plus className="h-4 w-4 mr-2" /> <Plus className="h-4 w-4 mr-2" />
Create New Market
</Button> </Button>
</div> </div>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<div className="text-center py-12"> <div className="text-center py-12">
<div className="text-gray-400 text-lg mb-2"> </div> <div className="text-gray-400 text-lg mb-2">No active prediction markets</div>
<div className="text-gray-500 text-sm"> </div> <div className="text-gray-500 text-sm">Create a new prediction market</div>
</div> </div>
</CardContent> </CardContent>
</Card> </Card>
@ -247,17 +247,17 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
<Card> <Card>
<CardHeader> <CardHeader>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<CardTitle> </CardTitle> <CardTitle>Auction Management</CardTitle>
<Button data-testid="button-new-auction"> <Button data-testid="button-new-auction">
<Plus className="h-4 w-4 mr-2" /> <Plus className="h-4 w-4 mr-2" />
Start New Auction
</Button> </Button>
</div> </div>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<div className="text-center py-12"> <div className="text-center py-12">
<div className="text-gray-400 text-lg mb-2"> </div> <div className="text-gray-400 text-lg mb-2">No active auctions</div>
<div className="text-gray-500 text-sm"> </div> <div className="text-gray-500 text-sm">Start a new auction</div>
</div> </div>
</CardContent> </CardContent>
</Card> </Card>
@ -266,12 +266,12 @@ export default function MediaOutletManagement({ outlet, onBack }: MediaOutletMan
<TabsContent value="comments" className="mt-6"> <TabsContent value="comments" className="mt-6">
<Card> <Card>
<CardHeader> <CardHeader>
<CardTitle> </CardTitle> <CardTitle>Comment Management</CardTitle>
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<div className="text-center py-12"> <div className="text-center py-12">
<div className="text-gray-400 text-lg mb-2"> </div> <div className="text-gray-400 text-lg mb-2">No comments to manage</div>
<div className="text-gray-500 text-sm"> </div> <div className="text-gray-500 text-sm">Comments will appear here when posted</div>
</div> </div>
</CardContent> </CardContent>
</Card> </Card>