mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
fix: add Russian translation for device limit reduction reason
This commit is contained in:
@@ -405,6 +405,7 @@
|
|||||||
"connectedDevices": "Connected devices: {{count}}",
|
"connectedDevices": "Connected devices: {{count}}",
|
||||||
"disconnectDevicesFirst": "Disconnect devices first to reduce the limit below {{count}}",
|
"disconnectDevicesFirst": "Disconnect devices first to reduce the limit below {{count}}",
|
||||||
"reduceUnavailable": "Device reduction is not available",
|
"reduceUnavailable": "Device reduction is not available",
|
||||||
|
"alreadyAtMinDeviceLimit": "Already at minimum device limit for your tariff",
|
||||||
"reduce": "Reduce",
|
"reduce": "Reduce",
|
||||||
"reducing": "Reducing...",
|
"reducing": "Reducing...",
|
||||||
"newDeviceLimit": "New limit: {{count}} devices",
|
"newDeviceLimit": "New limit: {{count}} devices",
|
||||||
|
|||||||
@@ -427,6 +427,7 @@
|
|||||||
"connectedDevices": "Подключено устройств: {{count}}",
|
"connectedDevices": "Подключено устройств: {{count}}",
|
||||||
"disconnectDevicesFirst": "Сначала отключите устройства, чтобы уменьшить лимит ниже {{count}}",
|
"disconnectDevicesFirst": "Сначала отключите устройства, чтобы уменьшить лимит ниже {{count}}",
|
||||||
"reduceUnavailable": "Уменьшение устройств недоступно",
|
"reduceUnavailable": "Уменьшение устройств недоступно",
|
||||||
|
"alreadyAtMinDeviceLimit": "Уже достигнут минимальный лимит устройств для вашего тарифа",
|
||||||
"reduce": "Уменьшить",
|
"reduce": "Уменьшить",
|
||||||
"reducing": "Уменьшение...",
|
"reducing": "Уменьшение...",
|
||||||
"newDeviceLimit": "Новый лимит: {{count}} устройств",
|
"newDeviceLimit": "Новый лимит: {{count}} устройств",
|
||||||
|
|||||||
@@ -1253,8 +1253,10 @@ export default function Subscription() {
|
|||||||
|
|
||||||
{deviceReductionInfo?.available === false ? (
|
{deviceReductionInfo?.available === false ? (
|
||||||
<div className="py-4 text-center text-sm text-dark-400">
|
<div className="py-4 text-center text-sm text-dark-400">
|
||||||
{deviceReductionInfo.reason ||
|
{deviceReductionInfo.reason?.includes('minimum device limit')
|
||||||
t('subscription.additionalOptions.reduceUnavailable')}
|
? t('subscription.additionalOptions.alreadyAtMinDeviceLimit')
|
||||||
|
: deviceReductionInfo.reason ||
|
||||||
|
t('subscription.additionalOptions.reduceUnavailable')}
|
||||||
</div>
|
</div>
|
||||||
) : deviceReductionInfo ? (
|
) : deviceReductionInfo ? (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user