translate UI text from Indonesian to English for consistency
This commit is contained in:
@@ -168,7 +168,7 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
color: '#262626',
|
||||
}}
|
||||
>
|
||||
Notifikasi
|
||||
Notification
|
||||
</h2>
|
||||
<p style={{ margin: '0 0 24px 0', color: '#8c8c8c', fontSize: '14px' }}>
|
||||
Riwayat notifikasi yang dikirim ke engineer
|
||||
@@ -181,7 +181,7 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
onClick={() => setActiveTab('all')}
|
||||
style={tabButtonStyle(activeTab === 'all')}
|
||||
>
|
||||
Semua
|
||||
All
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab('unread')}
|
||||
@@ -192,7 +192,7 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
gap: '8px',
|
||||
}}
|
||||
>
|
||||
Belum Dibaca
|
||||
Not read yet
|
||||
{getUnreadCount() > 0 && (
|
||||
<Badge
|
||||
count={getUnreadCount()}
|
||||
@@ -206,7 +206,7 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
onClick={() => setActiveTab('read')}
|
||||
style={tabButtonStyle(activeTab === 'read')}
|
||||
>
|
||||
Sudah Dibaca
|
||||
Already read
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -381,7 +381,7 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
fontWeight: 500,
|
||||
}}
|
||||
>
|
||||
Lihat Detail
|
||||
View Detail
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -397,3 +397,5 @@ const ListNotification = memo(function ListNotification(props) {
|
||||
});
|
||||
|
||||
export default ListNotification;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user