Skip to content

Commit

Permalink
Made black button for info (#294)
Browse files Browse the repository at this point in the history
* Made black button for info: #252

* Made black button for info: #252

* Formatting

* Changed translations

* Changed translations

---------

Co-authored-by: Ingo Fischer <[email protected]>
  • Loading branch information
GermanBluefox and Apollon77 authored Jan 9, 2025
1 parent bae7df0 commit a65b26c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 23 deletions.
10 changes: 5 additions & 5 deletions io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@
"titleLang": {
"en": "Matter protocol",
"de": "Matter Protokoll",
"ru": "Мэттерный протокол",
"pt": "Protocolo de matéria",
"ru": "Протокол Matter",
"pt": "Protocolo de Matter",
"nl": "Matter protocol",
"fr": "Matter protocol",
"it": "Protocollo della materia",
"es": "Protocolo de la materia",
"it": "Protocollo della Matter",
"es": "Protocolo de la Matter",
"pl": "Protokół Matter",
"uk": "Протокол Маттер",
"zh-cn": "马特议定书"
"zh-cn": "Matter"
},
"desc": {
"en": "Controlling and simulation of matter devices",
Expand Down
16 changes: 4 additions & 12 deletions src-admin/src/Tabs/Bridges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1257,11 +1257,9 @@ export class Bridges extends BridgesAndDevices<BridgesProps, BridgesState> {
height: 40,
color: hasError
? '#FF0000'
: this.isDevice
? this.props.themeType === 'dark'
? 'white'
: '#00000080'
: 'white',
: this.props.themeType === 'dark'
? '#FFFFFF'
: '#00000080',
}}
onClick={e => this.requestAdditionalInformation(e, bridge.uuid, device.uuid)}
>
Expand Down Expand Up @@ -1500,13 +1498,7 @@ export class Bridges extends BridgesAndDevices<BridgesProps, BridgesState> {
>
<span>
<IconButton
style={{
color: this.isDevice
? this.props.themeType === 'dark'
? 'white'
: '#00000080'
: 'white',
}}
style={{ color: '#FFF' }}
disabled={bridge.enabled && !allowDisable}
onClick={e => {
e.stopPropagation();
Expand Down
8 changes: 3 additions & 5 deletions src-admin/src/Tabs/BridgesAndDevices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ class BridgesAndDevices<TProps extends BridgesAndDevicesProps, TState extends Br
slotProps={{ popper: { sx: { pointerEvents: 'none' } } }}
>
<IconButton
style={{ height: 40 }}
style={{ height: 40, color: this.isDevice ? undefined : '#FFFFFF' }}
onClick={() => {
this.reAnnounceDevice(deviceOrBridge.uuid).catch(e => window.alert(`Cannot re-announce: ${e}`));
this.setState({ showQrCode: deviceOrBridge });
Expand Down Expand Up @@ -355,11 +355,9 @@ class BridgesAndDevices<TProps extends BridgesAndDevicesProps, TState extends Br
: '#980000'
: this.isDevice
? this.props.themeType === 'dark'
? 'white'
? '#FFFFFF'
: '#00000080'
: this.props.themeType === 'dark'
? 'white'
: '#00000080',
: '#FFFFFF',
}}
onClick={e => this.requestAdditionalInformation(e, deviceOrBridge.uuid)}
>
Expand Down
2 changes: 1 addition & 1 deletion src-admin/src/i18n/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"Matter Controller BLE Dialog Infotext": "Для сопряжения устройств, которые используют WLAN или Thread для связи, вам необходимо предоставить свои учетные данные WLAN или Thread.\nЭти учетные данные затем передаются на устройство во время ввода в эксплуатацию. \nЕсли устройство уже было введено в эксплуатацию в другой экосистеме и уже находится в сети, в этом нет необходимости.",
"Matter Controller Infotext": "Используйте функции «Контроллер» для интеграции совместимых с Matter устройств в ioBroker. \nВы можете обнаружить и ввести в эксплуатацию устройство, а затем управлять им. Данные устройств будут доступны в виде состояний на вкладке «Объекты ioBroker». \nФункция контроллера по умолчанию отключена, но ее можно включить с помощью переключателя ниже.",
"Matter requires enabled IPv6 protocol on selected interface. No IPv6 was found on your system!": "Matter требует включенного протокола IPv6 на выбранном интерфейсе. IPv6 не найден в вашей системе!",
"Matter requires enabled IPv6 protocol on selected interface. Some IPv6 was found on your system.": "Matter требует включенного протокола IPv6 на выбранном интерфейсе. В вашей системе обнаружен какой-то IPv6.",
"Matter requires enabled IPv6 protocol on selected interface. Some IPv6 was found on your system.": "Matter требует включенного протокола IPv6 на выбранном интерфейсе. В вашей системе обнаружен IPv6.",
"More details in the Troubleshooting Guide": "Более подробную информацию см. в Руководстве по устранению неполадок.",
"Name": "Имя",
"Network configuration": "Конфигурация сети",
Expand Down

0 comments on commit a65b26c

Please sign in to comment.