Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZEUS-2382: Channels: clean up capacity labels #2388

Merged
merged 2 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,8 @@
"views.Channel.remoteTimeLock": "Remote Timelock",
"views.Channel.channelActivity": "Channel Activity",
"views.Channel.channelBalance": "Channel balance",
"views.Channel.outbound": "Outbound",
"views.Channel.outboundCapacity": "Outbound Capacity",
"views.Channel.inbound": "Inbound",
"views.Channel.inboundCapacity": "Inbound Capacity",
"views.Channel.outboundCapacity": "Sending Capacity",
"views.Channel.inboundCapacity": "Receiving Capacity",
"views.Channel.unsettled": "Unsettled",
"views.Channel.peerStatus": "Peer status",
"views.Channel.yourNode": "You",
Expand Down Expand Up @@ -426,8 +424,8 @@
"views.Channel.channelId": "Channel ID",
"views.Channel.channelIds": "Channel IDs",
"views.Channel.displayName": "Display name",
"views.Channel.Total.outbound": "Total outbound",
"views.Channel.Total.inbound": "Total inbound",
"views.Channel.Total.outbound": "Sending capacity (outbound)",
"views.Channel.Total.inbound": "Receiving capacity (inbound)",
"views.Channel.Total.offline": "Total offline",
"views.Channel.zeroConf": "Zero conf",
"views.Channel.commitmentType": "Commitment Type",
Expand Down
4 changes: 2 additions & 2 deletions views/Channels/Channel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -509,13 +509,13 @@ export default class ChannelView extends React.Component<
/>
)}
<KeyValue
keyValue={localeString('views.Channel.outbound')}
keyValue={localeString('views.Channel.Total.outbound')}
value={
<Amount sats={localBalance} sensitive toggleable />
}
/>
<KeyValue
keyValue={localeString('views.Channel.inbound')}
keyValue={localeString('views.Channel.Total.inbound')}
value={
<Amount sats={remoteBalance} sensitive toggleable />
}
Expand Down
Loading