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