data-primals-engine 1.3.3 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +797 -782
- package/client/README.md +20 -0
- package/client/package-lock.json +717 -151
- package/client/package.json +37 -36
- package/client/src/App.jsx +9 -10
- package/client/src/App.scss +42 -1
- package/client/src/Dashboard.jsx +349 -208
- package/client/src/DashboardView.jsx +569 -547
- package/client/src/DataEditor.jsx +20 -2
- package/client/src/DataLayout.jsx +54 -13
- package/client/src/DataTable.jsx +807 -760
- package/client/src/DataTable.scss +187 -90
- package/client/src/Dialog.scss +0 -3
- package/client/src/Field.jsx +1783 -1583
- package/client/src/ModelCreator.jsx +25 -3
- package/client/src/ModelCreatorField.jsx +906 -804
- package/client/src/ModelList.jsx +20 -2
- package/client/src/constants.js +16 -4
- package/client/src/contexts/UIContext.jsx +19 -10
- package/client/src/translations.js +265 -3
- package/package.json +4 -3
- package/server.js +1 -0
- package/src/core.js +18 -0
- package/src/defaultModels.js +70 -10
- package/src/email.js +2 -1
- package/src/filter.js +260 -256
- package/src/i18n.js +503 -30
- package/src/modules/data/data.core.js +5 -1
- package/src/modules/data/data.history.js +489 -489
- package/src/modules/data/data.js +76 -10
- package/src/modules/data/data.routes.js +3 -20
- package/src/modules/user.js +19 -0
- package/src/modules/workflow.js +1808 -1817
- package/client/public/demo/26899917-d1ba-4df4-bb33-48d09a8778da.jpg +0 -0
- package/client/public/demo/4b9894c7-12cd-466d-8fd3-a2757b09ec96.jpg +0 -0
- package/client/public/demo/7ed369ac-a1a2-4b45-b0cd-4fd5bcf5a75a.jpg +0 -0
package/src/i18n.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import i18n from "i18next";
|
|
2
|
-
import {Trans, useTranslation, initReactI18next} from "react-i18next";
|
|
2
|
+
import {Trans, useTranslation,I18nextProvider, initReactI18next} from "react-i18next";
|
|
3
3
|
import LanguageDetector from "i18next-browser-languagedetector";
|
|
4
4
|
|
|
5
5
|
export const translations = {
|
|
@@ -162,13 +162,15 @@ export const translations = {
|
|
|
162
162
|
"field_event_capacity_hint": "Le nombre maximum de participants autorisés pour l'événement.",
|
|
163
163
|
"field_event_price_hint": "Le prix d'entrée, si applicable.",
|
|
164
164
|
|
|
165
|
+
"field_alert_sendEmail_hint": "Cochez pour envoyer également une notification par e-mail.",
|
|
166
|
+
"field_alert_message_hint": "Message personnalisé pour l'e-mail. Si vide, un message par défaut sera utilisé. Vous pouvez utiliser les variables {count}, {alert.name}....",
|
|
167
|
+
|
|
165
168
|
"field_alert_name_hint": "Nom unique pour identifier l'alerte (ex: 'Alerte stock bas', 'Nouveaux utilisateurs inactifs').",
|
|
166
169
|
"field_alert_targetModel_hint": "Le modèle de données sur lequel cette alerte s'applique.",
|
|
167
170
|
"field_alert_description_hint": "Description de ce que l'alerte surveille et pourquoi.",
|
|
168
171
|
"field_alert_triggerCondition_hint": "La condition qui, si elle est remplie, déclenchera l'alerte.",
|
|
169
172
|
"field_alert_frequency_hint": "À quelle fréquence vérifier si la condition est remplie.",
|
|
170
173
|
"field_alert_lastNotifiedAt_hint": "Timestamp de la dernière notification envoyée pour cette alerte.",
|
|
171
|
-
"field_alert_notificationChannel_hint": "Canal par lequel la notification sera envoyée (dans l'application ou par email).",
|
|
172
174
|
"field_alert_isActive_hint": "Si cette case est cochée, l'alerte est active et vérifiera les conditions.",
|
|
173
175
|
"field_env_name_hint": "Le nom de la variable (ex: OPENAI_API_KEY).",
|
|
174
176
|
"field_env_value_hint": "La valeur de la variable (sera stockée de manière sécurisée et ne sera pas exportée).",
|
|
@@ -205,11 +207,12 @@ export const translations = {
|
|
|
205
207
|
|
|
206
208
|
|
|
207
209
|
"field_alert_name": "Nom",
|
|
210
|
+
"field_alert_sendEmail": "Envoyer un email",
|
|
211
|
+
"field_alert_message": "Message",
|
|
208
212
|
"field_alert_targetModel": "Modèle cible",
|
|
209
213
|
"field_alert_description": "Description",
|
|
210
214
|
"field_alert_triggerCondition": "Condition de déclenchement",
|
|
211
215
|
"field_alert_frequency": "Fréquence",
|
|
212
|
-
"field_alert_notificationChannel": "Canal de notification",
|
|
213
216
|
"field_alert_isActive": "Actif",
|
|
214
217
|
"field_alert_lastNotifiedAt": "Dernière notification",
|
|
215
218
|
"field_env_name": "Nom",
|
|
@@ -1079,8 +1082,6 @@ export const translations = {
|
|
|
1079
1082
|
"sms": "SMS",
|
|
1080
1083
|
"push": "Notification Push",
|
|
1081
1084
|
|
|
1082
|
-
// alert.notificationChannel
|
|
1083
|
-
"in_app": "Dans l'application",
|
|
1084
1085
|
|
|
1085
1086
|
// taxonomy.type
|
|
1086
1087
|
"keyword": "Mot-clé",
|
|
@@ -1399,13 +1400,15 @@ export const translations = {
|
|
|
1399
1400
|
"field_event_capacity_hint": "Maximum number of participants allowed for the event.",
|
|
1400
1401
|
"field_event_price_hint": "Entry price, if applicable.",
|
|
1401
1402
|
|
|
1403
|
+
"field_alert_sendEmail_hint": "Check to also send an email notification.",
|
|
1404
|
+
"field_alert_message_hint": "Custom message for the email. If empty, a default message will be used. You can use the variables {count}, {alert.name}, etc....",
|
|
1405
|
+
|
|
1402
1406
|
"field_alert_name_hint": "Unique name to identify the alert (e.g., 'Low Stock Alert', 'New Inactive Users').",
|
|
1403
1407
|
"field_alert_targetModel_hint": "Data model to which this alert applies.",
|
|
1404
1408
|
"field_alert_description_hint": "Description of what the alert monitors and why.",
|
|
1405
1409
|
"field_alert_triggerCondition_hint": "Condition that, when met, will trigger the alert.",
|
|
1406
1410
|
"field_alert_frequency_hint": "How often to check if the condition is met.",
|
|
1407
1411
|
"field_alert_lastNotifiedAt_hint": "Timestamp of the last notification sent for this alert.",
|
|
1408
|
-
"field_alert_notificationChannel_hint": "Channel through which the notification will be sent (in-app or by email).",
|
|
1409
1412
|
"field_alert_isActive_hint": "If checked, the alert is active and will check conditions.",
|
|
1410
1413
|
"field_env_name_hint": "Variable name (e.g., OPENAI_API_KEY).",
|
|
1411
1414
|
"field_env_value_hint": "Variable value (will be stored securely and not exported).",
|
|
@@ -1441,11 +1444,12 @@ export const translations = {
|
|
|
1441
1444
|
"field_workflow_startStep_hint": "First step to execute when the workflow starts.",
|
|
1442
1445
|
|
|
1443
1446
|
"field_alert_name": "Name",
|
|
1447
|
+
"field_alert_sendEmail": "Send Email",
|
|
1448
|
+
"field_alert_message": "Message",
|
|
1444
1449
|
"field_alert_targetModel": "Target model",
|
|
1445
1450
|
"field_alert_description": "Description",
|
|
1446
1451
|
"field_alert_triggerCondition": "Trigger condition",
|
|
1447
1452
|
"field_alert_frequency": "Frequency",
|
|
1448
|
-
"field_alert_notificationChannel": "Notification channel",
|
|
1449
1453
|
"field_alert_isActive": "Active",
|
|
1450
1454
|
"field_alert_lastNotifiedAt": "Last notified",
|
|
1451
1455
|
"field_env_name": "Name",
|
|
@@ -2315,9 +2319,6 @@ export const translations = {
|
|
|
2315
2319
|
"sms": "SMS",
|
|
2316
2320
|
"push": "Push notification",
|
|
2317
2321
|
|
|
2318
|
-
// alert.notificationChannel
|
|
2319
|
-
"in_app": "In-app",
|
|
2320
|
-
|
|
2321
2322
|
// taxonomy.type
|
|
2322
2323
|
"keyword": "Keyword",
|
|
2323
2324
|
"category": "Category",
|
|
@@ -2629,13 +2630,17 @@ export const translations = {
|
|
|
2629
2630
|
"field_event_capacity_hint": "El número máximo de participantes permitidos para el evento.",
|
|
2630
2631
|
"field_event_price_hint": "El precio de entrada, si aplica.",
|
|
2631
2632
|
|
|
2633
|
+
"field_alert_sendEmail_hint": "Marque esta opción para enviar también una notificación por correo electrónico.",
|
|
2634
|
+
"field_alert_message_hint": "Mensaje personalizado para el correo electrónico. Si está vacío, se usará un mensaje predeterminado. Puede usar las variables {count}, {alert.name}, etc....",
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
|
|
2632
2638
|
"field_alert_name_hint": "Nombre único para identificar la alerta (ej: 'Alerta stock bajo', 'Nuevos usuarios inactivos').",
|
|
2633
2639
|
"field_alert_targetModel_hint": "El modelo de datos al que se aplica esta alerta.",
|
|
2634
2640
|
"field_alert_description_hint": "Descripción de lo que la alerta monitorea y por qué.",
|
|
2635
2641
|
"field_alert_triggerCondition_hint": "La condición que, si se cumple, disparará la alerta.",
|
|
2636
2642
|
"field_alert_frequency_hint": "Con qué frecuencia verificar si se cumple la condición.",
|
|
2637
2643
|
"field_alert_lastNotifiedAt_hint": "Marca de tiempo de la última notificación enviada para esta alerta.",
|
|
2638
|
-
"field_alert_notificationChannel_hint": "Canal por el cual se enviará la notificación (en la aplicación o por email).",
|
|
2639
2644
|
"field_alert_isActive_hint": "Si esta casilla está marcada, la alerta está activa y verificará las condiciones.",
|
|
2640
2645
|
"field_env_name_hint": "El nombre de la variable (ej: OPENAI_API_KEY).",
|
|
2641
2646
|
"field_env_value_hint": "El valor de la variable (se almacenará de forma segura y no se exportará).",
|
|
@@ -2671,11 +2676,12 @@ export const translations = {
|
|
|
2671
2676
|
"field_workflow_startStep_hint": "La primera etapa a ejecutar cuando comienza el workflow.",
|
|
2672
2677
|
|
|
2673
2678
|
"field_alert_name": "Nombre",
|
|
2679
|
+
"field_alert_sendEmail": "Enviar correo electrónico",
|
|
2680
|
+
"field_alert_message": "Mensaje",
|
|
2674
2681
|
"field_alert_targetModel": "Modelo objetivo",
|
|
2675
2682
|
"field_alert_description": "Descripción",
|
|
2676
2683
|
"field_alert_triggerCondition": "Condición de activación",
|
|
2677
2684
|
"field_alert_frequency": "Frecuencia",
|
|
2678
|
-
"field_alert_notificationChannel": "Canal de notificación",
|
|
2679
2685
|
"field_alert_isActive": "Activo",
|
|
2680
2686
|
"field_alert_lastNotifiedAt": "Última notificación",
|
|
2681
2687
|
"field_env_name": "Nombre",
|
|
@@ -3584,9 +3590,6 @@ export const translations = {
|
|
|
3584
3590
|
"sms": "SMS",
|
|
3585
3591
|
"push": "Notificación push",
|
|
3586
3592
|
|
|
3587
|
-
// alert.notificationChannel
|
|
3588
|
-
"in_app": "En aplicación",
|
|
3589
|
-
|
|
3590
3593
|
// taxonomy.type
|
|
3591
3594
|
"keyword": "Palabra clave",
|
|
3592
3595
|
"category": "Categoría",
|
|
@@ -3945,12 +3948,13 @@ export const translations = {
|
|
|
3945
3948
|
"field_event_capacity_hint": "Die maximale Anzahl zugelassener Teilnehmer für die Veranstaltung.",
|
|
3946
3949
|
"field_event_price_hint": "Der Eintrittspreis, falls zutreffend.",
|
|
3947
3950
|
"field_alert_name_hint": "Eindeutiger Name zur Identifizierung der Warnung (z.B. 'Niedriger Lagerbestand', 'Neue inaktive Benutzer').",
|
|
3951
|
+
"field_alert_sendEmail_hint": "Aktivieren Sie dieses Kontrollkästchen, um zusätzlich eine E-Mail-Benachrichtigung zu senden.",
|
|
3952
|
+
"field_alert_message_hint": "Benutzerdefinierte Nachricht für die E-Mail. Wenn dieses Feld leer ist, wird eine Standardnachricht verwendet. Sie können die Variablen {count}, {alert.name} usw. verwenden.",
|
|
3948
3953
|
"field_alert_targetModel_hint": "Das Datenmodell, auf das diese Warnung angewendet wird.",
|
|
3949
3954
|
"field_alert_description_hint": "Beschreibung dessen, was die Warnung überwacht und warum.",
|
|
3950
3955
|
"field_alert_triggerCondition_hint": "Die Bedingung, die bei Erfüllung die Warnung auslöst.",
|
|
3951
3956
|
"field_alert_frequency_hint": "Wie oft die Bedingung überprüft werden soll.",
|
|
3952
3957
|
"field_alert_lastNotifiedAt_hint": "Zeitstempel der letzten für diese Warnung gesendeten Benachrichtigung.",
|
|
3953
|
-
"field_alert_notificationChannel_hint": "Kanal, über den die Benachrichtigung gesendet wird (in der App oder per E-Mail).",
|
|
3954
3958
|
"field_alert_isActive_hint": "Wenn aktiviert, ist die Warnung aktiv und überprüft die Bedingungen.",
|
|
3955
3959
|
"field_env_name_hint": "Der Name der Variable (z.B. OPENAI_API_KEY).",
|
|
3956
3960
|
"field_env_value_hint": "Der Wert der Variable (wird sicher gespeichert und nicht exportiert).",
|
|
@@ -3983,11 +3987,12 @@ export const translations = {
|
|
|
3983
3987
|
"field_employee_notes_hint": "Zusätzliche Notizen zum Mitarbeiter",
|
|
3984
3988
|
"field_workflow_startStep_hint": "Der erste auszuführende Schritt, wenn der Workflow startet.",
|
|
3985
3989
|
"field_alert_name": "Name",
|
|
3990
|
+
"field_alert_sendEmail": "E-Mail senden",
|
|
3991
|
+
"field_alert_message": "Nachricht",
|
|
3986
3992
|
"field_alert_targetModel": "Zielmodell",
|
|
3987
3993
|
"field_alert_description": "Beschreibung",
|
|
3988
3994
|
"field_alert_triggerCondition": "Auslösebedingung",
|
|
3989
3995
|
"field_alert_frequency": "Häufigkeit",
|
|
3990
|
-
"field_alert_notificationChannel": "Benachrichtigungskanal",
|
|
3991
3996
|
"field_alert_isActive": "Aktiv",
|
|
3992
3997
|
"field_alert_lastNotifiedAt": "Letzte Benachrichtigung",
|
|
3993
3998
|
"field_env_name": "Name",
|
|
@@ -5108,12 +5113,13 @@ export const translations = {
|
|
|
5108
5113
|
"field_event_price_hint": "Il prezzo d'ingresso, se applicabile.",
|
|
5109
5114
|
|
|
5110
5115
|
"field_alert_name_hint": "Nome univoco per identificare l'allerta (es: 'Allerta stock basso', 'Nuovi utenti inattivi').",
|
|
5116
|
+
"field_alert_sendEmail_hint": "Seleziona per inviare anche una notifica via email.",
|
|
5117
|
+
"field_alert_message_hint": "Messaggio personalizzato per l'email. Se vuoto, verrà utilizzato un messaggio predefinito. Puoi utilizzare le variabili {count}, {alert.name}, ecc...",
|
|
5111
5118
|
"field_alert_targetModel_hint": "Il modello di dati a cui si applica questa allerta.",
|
|
5112
5119
|
"field_alert_description_hint": "Descrizione di ciò che l'allerta monitora e perché.",
|
|
5113
5120
|
"field_alert_triggerCondition_hint": "La condizione che, se soddisfatta, attiverà l'allerta.",
|
|
5114
5121
|
"field_alert_frequency_hint": "Con quale frequenza verificare se la condizione è soddisfatta.",
|
|
5115
5122
|
"field_alert_lastNotifiedAt_hint": "Timestamp dell'ultima notifica inviata per questa allerta.",
|
|
5116
|
-
"field_alert_notificationChannel_hint": "Canale attraverso cui verrà inviata la notifica (nell'applicazione o via email).",
|
|
5117
5123
|
"field_alert_isActive_hint": "Se questa casella è selezionata, l'allerta è attiva e verificherà le condizioni.",
|
|
5118
5124
|
"field_env_name_hint": "Il nome della variabile (es: OPENAI_API_KEY).",
|
|
5119
5125
|
"field_env_value_hint": "Il valore della variabile (sarà memorizzato in modo sicuro e non sarà esportato).",
|
|
@@ -5148,11 +5154,12 @@ export const translations = {
|
|
|
5148
5154
|
"field_workflow_startStep_hint": "Il primo passo da eseguire quando il workflow inizia.",
|
|
5149
5155
|
|
|
5150
5156
|
"field_alert_name": "Nome",
|
|
5157
|
+
"field_alert_sendEmail": "Invia email",
|
|
5158
|
+
"field_alert_message": "Messaggio",
|
|
5151
5159
|
"field_alert_targetModel": "Modello target",
|
|
5152
5160
|
"field_alert_description": "Descrizione",
|
|
5153
5161
|
"field_alert_triggerCondition": "Condizione di attivazione",
|
|
5154
5162
|
"field_alert_frequency": "Frequenza",
|
|
5155
|
-
"field_alert_notificationChannel": "Canale di notifica",
|
|
5156
5163
|
"field_alert_isActive": "Attivo",
|
|
5157
5164
|
"field_alert_lastNotifiedAt": "Ultima notifica",
|
|
5158
5165
|
"field_env_name": "Nome",
|
|
@@ -6295,12 +6302,13 @@ export const translations = {
|
|
|
6295
6302
|
"field_event_capacity_hint": "Maximální povolený počet účastníků pro událost.",
|
|
6296
6303
|
"field_event_price_hint": "Vstupní cena, pokud je relevantní.",
|
|
6297
6304
|
"field_alert_name_hint": "Jedinečný název pro identifikaci upozornění (např.: 'Upozornění na nízké zásoby', 'Noví neaktivní uživatelé').",
|
|
6305
|
+
"field_alert_sendEmail_hint": "Zaškrtněte pro odeslání také e-mailového oznámení.",
|
|
6306
|
+
"field_alert_message_hint": "Vlastní zpráva pro e-mail. Pokud je prázdné, bude použita výchozí zpráva. Můžete použít proměnné {count}, {alert.name} atd....",
|
|
6298
6307
|
"field_alert_targetModel_hint": "Datový model, na který se toto upozornění vztahuje.",
|
|
6299
6308
|
"field_alert_description_hint": "Popis toho, co upozornění sleduje a proč.",
|
|
6300
6309
|
"field_alert_triggerCondition_hint": "Podmínka, která při splnění spustí upozornění.",
|
|
6301
6310
|
"field_alert_frequency_hint": "Jak často kontrolovat, zda je podmínka splněna.",
|
|
6302
6311
|
"field_alert_lastNotifiedAt_hint": "Časové razítko posledního odeslaného upozornění pro tuto výstrahu.",
|
|
6303
|
-
"field_alert_notificationChannel_hint": "Kanál, přes který bude upozornění odesláno (v aplikaci nebo e-mailem).",
|
|
6304
6312
|
"field_alert_isActive_hint": "Pokud je toto zaškrtnuto, upozornění je aktivní a bude kontrolovat podmínky.",
|
|
6305
6313
|
"field_env_name_hint": "Název proměnné (např.: OPENAI_API_KEY).",
|
|
6306
6314
|
"field_env_value_hint": "Hodnota proměnné (bude uložena bezpečně a nebude exportována).",
|
|
@@ -7155,12 +7163,13 @@ export const translations = {
|
|
|
7155
7163
|
"field_event_price_hint": "Стоимость входа, если применимо.",
|
|
7156
7164
|
|
|
7157
7165
|
"field_alert_name_hint": "Уникальное название для идентификации оповещения (например: 'Оповещение о низком запасе', 'Новые неактивные пользователи').",
|
|
7166
|
+
"field_alert_sendEmail_hint": "Установите флажок, чтобы также отправлять уведомление по электронной почте.",
|
|
7167
|
+
"field_alert_message_hint": "Пользовательское сообщение для электронного письма. Если не указано, будет использовано сообщение по умолчанию. Вы можете использовать переменные {count}, {alert.name} и т. д.",
|
|
7158
7168
|
"field_alert_targetModel_hint": "Модель данных, к которой применяется это оповещение.",
|
|
7159
7169
|
"field_alert_description_hint": "Описание того, что отслеживает оповещение и почему.",
|
|
7160
7170
|
"field_alert_triggerCondition_hint": "Условие, при выполнении которого сработает оповещение.",
|
|
7161
7171
|
"field_alert_frequency_hint": "Как часто проверять выполнение условия.",
|
|
7162
7172
|
"field_alert_lastNotifiedAt_hint": "Метка времени последней отправленной нотификации для этого оповещения.",
|
|
7163
|
-
"field_alert_notificationChannel_hint": "Канал, через который будет отправлено оповещение (в приложении или по email).",
|
|
7164
7173
|
"field_alert_isActive_hint": "Если отмечено, оповещение активно и будет проверять условия.",
|
|
7165
7174
|
"field_env_name_hint": "Название переменной (например: OPENAI_API_KEY).",
|
|
7166
7175
|
"field_env_value_hint": "Значение переменной (будет храниться безопасно и не будет экспортироваться).",
|
|
@@ -7196,11 +7205,12 @@ export const translations = {
|
|
|
7196
7205
|
"field_workflow_startStep_hint": "Первый этап для выполнения при запуске workflow.",
|
|
7197
7206
|
|
|
7198
7207
|
"field_alert_name": "Название",
|
|
7208
|
+
"field_alert_sendEmail": "Отправить электронное письмо",
|
|
7209
|
+
"field_alert_message": "Сообщение",
|
|
7199
7210
|
"field_alert_targetModel": "Целевая модель",
|
|
7200
7211
|
"field_alert_description": "Описание",
|
|
7201
7212
|
"field_alert_triggerCondition": "Условие срабатывания",
|
|
7202
7213
|
"field_alert_frequency": "Частота",
|
|
7203
|
-
"field_alert_notificationChannel": "Канал уведомлений",
|
|
7204
7214
|
"field_alert_isActive": "Активно",
|
|
7205
7215
|
"field_alert_lastNotifiedAt": "Последнее уведомление",
|
|
7206
7216
|
"field_env_name": "Название",
|
|
@@ -8371,12 +8381,13 @@ export const translations = {
|
|
|
8371
8381
|
"field_event_price_hint": "سعر الدخول، إذا كان مطبقًا.",
|
|
8372
8382
|
|
|
8373
8383
|
"field_alert_name_hint": "اسم فريد لتحديد التنبيه (مثال: 'تنبيه مخزون منخفض'، 'مستخدمون غير نشطين جدد').",
|
|
8384
|
+
"field_alert_sendEmail_hint": "حدد هذا الخيار لإرسال إشعار عبر البريد الإلكتروني أيضًا.",
|
|
8385
|
+
"field_alert_message_hint": "رسالة مخصصة للبريد الإلكتروني. إذا كانت فارغة، فسيتم استخدام رسالة افتراضية. يمكنك استخدام المتغيرات {count} و{alert.name}، إلخ....",
|
|
8374
8386
|
"field_alert_targetModel_hint": "نموذج البيانات الذي ينطبق عليه هذا التنبيه.",
|
|
8375
8387
|
"field_alert_description_hint": "وصف لما يراقبه التنبيه ولماذا.",
|
|
8376
8388
|
"field_alert_triggerCondition_hint": "الشرط الذي عند تحققه، سيتم تشغيل التنبيه.",
|
|
8377
8389
|
"field_alert_frequency_hint": "عدد مرات التحقق من استيفاء الشرط.",
|
|
8378
8390
|
"field_alert_lastNotifiedAt_hint": "طابع زمني لآخر إشعار تم إرساله لهذا التنبيه.",
|
|
8379
|
-
"field_alert_notificationChannel_hint": "القناة التي سيتم إرسال الإشعار من خلالها (داخل التطبيق أو عبر البريد الإلكتروني).",
|
|
8380
8391
|
"field_alert_isActive_hint": "إذا تم تحديده، يكون التنبيه نشطًا وسيتحقق من الشروط.",
|
|
8381
8392
|
"field_env_name_hint": "اسم المتغير (مثال: OPENAI_API_KEY).",
|
|
8382
8393
|
"field_env_value_hint": "قيمة المتغير (سيتم تخزينها بشكل آمن ولن يتم تصديرها).",
|
|
@@ -8412,11 +8423,13 @@ export const translations = {
|
|
|
8412
8423
|
"field_workflow_startStep_hint": "الخطوة الأولى التي يتم تنفيذها عند بدء سير العمل.",
|
|
8413
8424
|
|
|
8414
8425
|
"field_alert_name": "الاسم",
|
|
8426
|
+
"field_alert_sendEmail": "إرسال بريد إلكتروني",
|
|
8427
|
+
"field_alert_message": "رسالة",
|
|
8428
|
+
|
|
8415
8429
|
"field_alert_targetModel": "النموذج المستهدف",
|
|
8416
8430
|
"field_alert_description": "الوصف",
|
|
8417
8431
|
"field_alert_triggerCondition": "شرط التشغيل",
|
|
8418
8432
|
"field_alert_frequency": "التكرار",
|
|
8419
|
-
"field_alert_notificationChannel": "قناة الإشعار",
|
|
8420
8433
|
"field_alert_isActive": "نشط",
|
|
8421
8434
|
"field_alert_lastNotifiedAt": "آخر إشعار",
|
|
8422
8435
|
"field_env_name": "الاسم",
|
|
@@ -9593,12 +9606,13 @@ export const translations = {
|
|
|
9593
9606
|
"field_event_capacity_hint": "Maximalt antal tillåtna deltagare.",
|
|
9594
9607
|
"field_event_price_hint": "Inträdespris, om tillämpligt.",
|
|
9595
9608
|
"field_alert_name_hint": "Unikt namn för att identifiera aviseringen (t.ex. 'Lågt lager', 'Inaktiva nya användare').",
|
|
9609
|
+
"field_alert_sendEmail_hint": "Markera om du vill skicka ett e-postmeddelande.",
|
|
9610
|
+
"field_alert_message_hint": "Anpassat meddelande för e-postmeddelandet. Om tomt används ett standardmeddelande. Du kan använda variablerna {count}, {alert.name}, etc....",
|
|
9596
9611
|
"field_alert_targetModel_hint": "Datamodell som aviseringen gäller.",
|
|
9597
9612
|
"field_alert_description_hint": "Beskrivning av vad aviseringen övervakar och varför.",
|
|
9598
9613
|
"field_alert_triggerCondition_hint": "Villkor som, om uppfyllt, utlöser aviseringen.",
|
|
9599
9614
|
"field_alert_frequency_hint": "Hur ofta villkoret kontrolleras.",
|
|
9600
9615
|
"field_alert_lastNotifiedAt_hint": "Tidsstämpel för senaste aviseringssändning.",
|
|
9601
|
-
"field_alert_notificationChannel_hint": "Kanal för aviseringssändning (i app eller via e-post).",
|
|
9602
9616
|
"field_alert_isActive_hint": "Om markerad är aviseringen aktiv och kontrollerar villkor.",
|
|
9603
9617
|
"field_env_name_hint": "Variabelns namn (t.ex. OPENAI_API_KEY).",
|
|
9604
9618
|
"field_env_value_hint": "Variabelns värde (lagras säkert och exporteras inte).",
|
|
@@ -9631,11 +9645,12 @@ export const translations = {
|
|
|
9631
9645
|
"field_employee_notes_hint": "Ytterligare anteckningar om den anställde",
|
|
9632
9646
|
"field_workflow_startStep_hint": "Första steget att köra när workflow startar.",
|
|
9633
9647
|
"field_alert_name": "Namn",
|
|
9648
|
+
"field_alert_sendEmail": "Skicka e-post",
|
|
9649
|
+
"field_alert_message": "Meddelande",
|
|
9634
9650
|
"field_alert_targetModel": "Målmodell",
|
|
9635
9651
|
"field_alert_description": "Beskrivning",
|
|
9636
9652
|
"field_alert_triggerCondition": "Utlösarvillkor",
|
|
9637
9653
|
"field_alert_frequency": "Frekvens",
|
|
9638
|
-
"field_alert_notificationChannel": "Aviseringskanal",
|
|
9639
9654
|
"field_alert_isActive": "Aktiv",
|
|
9640
9655
|
"field_alert_lastNotifiedAt": "Senaste avisering",
|
|
9641
9656
|
"field_env_name": "Namn",
|
|
@@ -10755,12 +10770,13 @@ export const translations = {
|
|
|
10755
10770
|
"field_event_price_hint": "Η τιμή εισόδου, εάν ισχύει.",
|
|
10756
10771
|
|
|
10757
10772
|
"field_alert_name_hint": "Μοναδικό όνομα για την αναγνώριση του alert (π.χ.: 'Ειδοποίηση χαμηλού αποθέματος', 'Νέοι ανενεργοί χρήστες').",
|
|
10773
|
+
"field_alert_sendEmail_hint": "Επιλέξτε για να στείλετε και μια ειδοποίηση μέσω email.",
|
|
10774
|
+
"field_alert_message_hint": "Προσαρμοσμένο μήνυμα για το email. Εάν είναι κενό, θα χρησιμοποιηθεί ένα προεπιλεγμένο μήνυμα. Μπορείτε να χρησιμοποιήσετε τις μεταβλητές {count}, {alert.name}, κ.λπ....",
|
|
10758
10775
|
"field_alert_targetModel_hint": "Το μοντέλο δεδομένων στο οποίο εφαρμόζεται αυτό το alert.",
|
|
10759
10776
|
"field_alert_description_hint": "Περιγραφή του τι παρακολουθεί το alert και γιατί.",
|
|
10760
10777
|
"field_alert_triggerCondition_hint": "Η συνθήκη που, εάν πληρούται, θα ενεργοποιήσει το alert.",
|
|
10761
10778
|
"field_alert_frequency_hint": "Πόσο συχνά να ελέγχεται εάν η συνθήκη πληρούται.",
|
|
10762
10779
|
"field_alert_lastNotifiedAt_hint": "Χρονική σήμανση της τελευταίας ειδοποίησης που εστάλη για αυτό το alert.",
|
|
10763
|
-
"field_alert_notificationChannel_hint": "Κανάλι μέσω του οποίου θα αποσταλεί η ειδοποίηση (στην εφαρμογή ή μέσω email).",
|
|
10764
10780
|
"field_alert_isActive_hint": "Εάν αυτό το πλαίσιο είναι επιλεγμένο, το alert είναι ενεργό και θα ελέγχει τις συνθήκες.",
|
|
10765
10781
|
"field_env_name_hint": "Το όνομα της μεταβλητής (π.χ.: OPENAI_API_KEY).",
|
|
10766
10782
|
"field_env_value_hint": "Η τιμή της μεταβλητής (θα αποθηκευτεί με ασφαλή τρόπο και δεν θα εξαχθεί).",
|
|
@@ -10795,11 +10811,12 @@ export const translations = {
|
|
|
10795
10811
|
"field_workflow_startStep_hint": "Το πρώτο βήμα που θα εκτελεστεί όταν ξεκινά το workflow.",
|
|
10796
10812
|
|
|
10797
10813
|
"field_alert_name": "Όνομα",
|
|
10814
|
+
"field_alert_sendEmail": "Αποστολή email",
|
|
10815
|
+
"field_alert_message": "Μήνυμα",
|
|
10798
10816
|
"field_alert_targetModel": "Προορισμός μοντέλου",
|
|
10799
10817
|
"field_alert_description": "Περιγραφή",
|
|
10800
10818
|
"field_alert_triggerCondition": "Συνθήκη ενεργοποίησης",
|
|
10801
10819
|
"field_alert_frequency": "Συχνότητα",
|
|
10802
|
-
"field_alert_notificationChannel": "Κανάλι ειδοποίησης",
|
|
10803
10820
|
"field_alert_isActive": "Ενεργό",
|
|
10804
10821
|
"field_alert_lastNotifiedAt": "Τελευταία ειδοποίηση",
|
|
10805
10822
|
"field_env_name": "Όνομα",
|
|
@@ -11753,6 +11770,461 @@ export const translations = {
|
|
|
11753
11770
|
"btns.duplicate": "کپی",
|
|
11754
11771
|
"btns.edit": "ویرایش",
|
|
11755
11772
|
"btns.delete": "حذف",
|
|
11773
|
+
|
|
11774
|
+
|
|
11775
|
+
"field_workflowRun_completedAt_hint": "زماننگار تکمیل اجرا (موفق یا ناموفق).",
|
|
11776
|
+
"field_employee_socialSecurityNumber_hint": "شماره تأمین اجتماعی کارمند.",
|
|
11777
|
+
"field_shipment_order_hint": "سفارش مرتبط با این محموله.",
|
|
11778
|
+
"field_shipment_trackingNumber_hint": "شماره رهگیری ارائه شده توسط شرکت حملونقل.",
|
|
11779
|
+
"field_shipment_carrier_hint": "نام شرکت حملونقل (مثلاً: Chronopost, UPS, FedEx).",
|
|
11780
|
+
"field_shipment_status_hint": "وضعیت فعلی محموله (مثلاً: در حال حمل، تحویل شده، مشکل).",
|
|
11781
|
+
"field_shipment_estimatedDeliveryDate_hint": "تاریخ تحویل تخمینی از طرف شرکت حملونقل.",
|
|
11782
|
+
"field_shipment_actualDeliveryDate_hint": "تاریخ و زمان واقعی تحویل.",
|
|
11783
|
+
|
|
11784
|
+
"field_invoice_order_hint": "سفارشی که این فاکتور به آن مرتبط است.",
|
|
11785
|
+
"field_invoice_invoiceId_hint": "شناسه منحصر به فرد فاکتور.",
|
|
11786
|
+
"field_invoice_invoiceDate_hint": "تاریخ صدور فاکتور.",
|
|
11787
|
+
"field_invoice_dueDate_hint": "تاریخ سررسید پرداخت فاکتور.",
|
|
11788
|
+
"field_invoice_status_hint": "وضعیت پرداخت فاکتور (مثلاً: پرداخت شده، پرداخت نشده، частично پرداخت شده).",
|
|
11789
|
+
|
|
11790
|
+
"field_userSubscription_price_hint": "قیمت پرداختی برای هر چرخه صورتحساب.",
|
|
11791
|
+
"field_userSubscription_currency_hint": "ارز اشتراک.",
|
|
11792
|
+
"field_userSubscription_paymentMethod_hint": "روش پرداخت استفاده شده برای اشتراک.",
|
|
11793
|
+
"field_userSubscription_billingCycleAnchor_hint": "تاریخ مرجع برای شروع چرخه صورتحساب.",
|
|
11794
|
+
"field_userSubscription_nextBillingDate_hint": "تاریخ صورتحساب بعدی.",
|
|
11795
|
+
"field_userSubscription_lastBillingDate_hint": "تاریخ آخرین صورتحساب.",
|
|
11796
|
+
"field_userSubscription_cancelReason_hint": "دلیل لغو اشتراک، در صورت ارائه.",
|
|
11797
|
+
|
|
11798
|
+
"field_message_sender_hint": "فرستنده پیام (میتواند کاربر یا سیستم باشد).",
|
|
11799
|
+
"field_message_recipient_hint": "گیرنده پیام.",
|
|
11800
|
+
"field_message_lang_hint": "زبانی که پیام به آن ارسال میشود.",
|
|
11801
|
+
"field_message_subject_hint": "موضوع پیام (مثلاً: عنوان ایمیل).",
|
|
11802
|
+
"field_message_content_hint": "محتوای کامل پیام، که میتواند شامل HTML باشد.",
|
|
11803
|
+
"field_message_channels_hint": "کانالهایی که این پیام از طریق آنها ارسال شده یا خواهد شد.",
|
|
11804
|
+
"field_message_status_hint": "وضعیت تحویل پیام (مثلاً: در انتظار، ارسال شده، خوانده شده).",
|
|
11805
|
+
"field_message_sentAt_hint": "تاریخ و زمان ارسال پیام.",
|
|
11806
|
+
"field_message_readAt_hint": "تاریخ و زمان خوانده شدن پیام توسط گیرنده.",
|
|
11807
|
+
"field_message_type_hint": "نوع داخلی برای دستهبندی پیام (مثلاً: 'order.confirmation').",
|
|
11808
|
+
"field_message_priority_hint": "اولویت پیام، برای مدیریت صفهای ارسال.",
|
|
11809
|
+
|
|
11810
|
+
"field_user_gender_hint": "جنسیت کاربر.",
|
|
11811
|
+
"field_user_profilePicture_hint": "عکس پروفایل کاربر.",
|
|
11812
|
+
|
|
11813
|
+
"field_employee_employeeId_hint": "شناسه منحصر به فرد کارمند در شرکت.",
|
|
11814
|
+
"field_employee_personalInfo_hint": "ارتباط با پروفایل کاربری که حاوی اطلاعات پایه (نام، ایمیل و غیره) است.",
|
|
11815
|
+
"field_employee_jobTitle_hint": "عنوان رسمی شغل کارمند (مثلاً: برنامهنویس، مدیر پروژه).",
|
|
11816
|
+
"field_employee_manager_hint": "ارتباط با مدیر مستقیم یا مافوق کارمند.",
|
|
11817
|
+
"field_employee_workLocation_hint": "محل کار اصلی کارمند.",
|
|
11818
|
+
"field_employee_employmentType_hint": "نوع قرارداد کارمند (مثلاً: تمام وقت، پاره وقت، کارآموز).",
|
|
11819
|
+
"field_employee_emergencyContact_hint": "نفر برای تماس در مواقع اضطراری.",
|
|
11820
|
+
"field_employee_homeAddress_hint": "آدرس شخصی کارمند.",
|
|
11821
|
+
"field_employee_dateOfBirth_hint": "تاریخ تولد کارمند.",
|
|
11822
|
+
"field_employee_nationality_hint": "ملیت کارمند.",
|
|
11823
|
+
"field_employee_nationalId_hint": "شماره شناسنامه یا معادل آن.",
|
|
11824
|
+
"field_employee_taxId_hint": "شماره مالیاتی کارمند.",
|
|
11825
|
+
"field_employee_startDate_hint": "تاریخ شروع قرارداد کار.",
|
|
11826
|
+
"field_employee_endDate_hint": "تاریخ پایان قرارداد کار (در صورت وجود).",
|
|
11827
|
+
"field_employee_contractType_hint": "نوع قرارداد (مثلاً: دائمی، موقت).",
|
|
11828
|
+
"field_employee_salaryCurrency_hint": "ارزی که حقوق در آن پرداخت میشود.",
|
|
11829
|
+
"field_employee_payFrequency_hint": "دفعات پرداخت حقوق (مثلاً: ماهانه، هفتگی).",
|
|
11830
|
+
"field_employee_bankAccountNumber_hint": "شماره حساب بانکی برای واریز حقوق.",
|
|
11831
|
+
"field_employee_bankName_hint": "نام بانک کارمند.",
|
|
11832
|
+
"field_employee_iban_hint": "شماره IBAN حساب بانکی کارمند.",
|
|
11833
|
+
"field_employee_swiftBic_hint": "کد SWIFT/BIC بانک کارمند.",
|
|
11834
|
+
"field_employee_workPermitNumber_hint": "شماره مجوز کار (در صورت وجود).",
|
|
11835
|
+
"field_employee_workPermitExpiry_hint": "تاریخ انقضای مجوز کار.",
|
|
11836
|
+
"field_employee_visaType_hint": "نوع ویزای کار (در صورت وجود).",
|
|
11837
|
+
"field_employee_visaExpiry_hint": "تاریخ انقضای ویزا.",
|
|
11838
|
+
"field_employee_skills_hint": "فهرست مهارتها و صلاحیتهای کارمند.",
|
|
11839
|
+
"field_workflowStep_actions_hint": "اقدامات اصلی که در این مرحله انجام میشوند.",
|
|
11840
|
+
"field_workflowAction_targetSelector_hint": "عبارت JSON (قالب $match MongoDB) برای فیلتر کردن اسناد هدف.",
|
|
11841
|
+
"field_workflowAction_emailRecipients_hint": "گیرنده/های ایمیل. میتواند یک آدرس، چند آدرس جدا شده با کاما، یا یک متغیر مانند {triggerData.client.email} باشد.",
|
|
11842
|
+
"field_workflowAction_emailSubject_hint": "موضوع ایمیل. میتواند شامل متغیرهایی مانند {triggerData.orderId} باشد.",
|
|
11843
|
+
"field_workflowAction_emailContent_hint": "محتوای ایمیل. میتواند شامل متغیرها و HTML باشد.",
|
|
11844
|
+
"field_workflowAction_aiProvider_hint": "ارائهدهنده مدل زبان بزرگ (LLM) که برای تولید استفاده میشود.",
|
|
11845
|
+
"field_workflowAction_aiModel_hint": "مدل خاصی که استفاده میشود (مثلاً: gpt-4o-mini, gemini-1.5-pro-latest).",
|
|
11846
|
+
"field_workflowAction_prompt_hint": "قالب prompt. از متغیرهایی مانند {triggerData.field} یا {context.variable} برای وارد کردن دادههای پویا استفاده کنید.",
|
|
11847
|
+
"field_workflowRun_startedAt_hint": "زماننگار شروع اجرای workflow.",
|
|
11848
|
+
"field_imageGallery_tags_hint": "برچسبها یا دستهها برای سازماندهی گالریها (اختیاری).",
|
|
11849
|
+
"field_imageGallery_createdAt_hint": "تاریخ ایجاد گالری (معمولاً توسط سیستم مدیریت میشود).",
|
|
11850
|
+
|
|
11851
|
+
"field_kpi_targetModel_hint": "نام مدل برای محاسبه KPI (مثلاً: order).",
|
|
11852
|
+
"field_kpi_matchFormula_hint": "فیلتر JSON (MongoDB $match) برای اعمال قبل از تجمیع (مثلاً: { \"status\": \"delivered\" }).",
|
|
11853
|
+
"field_kpi_showTotal_hint": "نمایش کل.",
|
|
11854
|
+
"field_kpi_showPercentTotal_hint": "نمایش کل به درصد.",
|
|
11855
|
+
"field_kpi_totalMatchFormula_hint": "فرمول برای کل (برای محاسبه درصد استفاده میشود).",
|
|
11856
|
+
"field_kpi_icon_hint": "نام آیکون (مثلاً: FaUsers, FaShoppingCart).",
|
|
11857
|
+
"field_kpi_order_hint": "ترتیب نمایش در یک داشبورد.",
|
|
11858
|
+
"field_kpi_color_hint": "رنگ مرتبط با KPI.",
|
|
11859
|
+
|
|
11860
|
+
"field_dashboard_settings_hint": "تنظیمات JSON برای داشبورد، مانند بازه زمانی پیشفرض ('defaultTimeRange') یا فاصله بروزرسانی بر حسب ثانیه ('refreshInterval').",
|
|
11861
|
+
"field_dashboard_isDefault_hint": "در صورت انتخاب، این داشبورد به طور پیشفرض برای کاربر نمایش داده میشود.",
|
|
11862
|
+
|
|
11863
|
+
"field_event_currency_hint": "ارز برای قیمت (مثلاً: EUR, USD).",
|
|
11864
|
+
"field_event_registrationDeadline_hint": "مهلت ثبتنام شرکتکنندگان در رویداد.",
|
|
11865
|
+
"field_event_attendees_hint": "ارتباط با مخاطبین شرکتکننده در رویداد.",
|
|
11866
|
+
"field_event_sponsors_hint": "فهرست حامیان یا شرکای درگیر در رویداد.",
|
|
11867
|
+
|
|
11868
|
+
"field_workflowTrigger_workflow_hint": "Workflowی که این trigger به آن تعلق دارد.",
|
|
11869
|
+
"field_workflowTrigger_dataFilter_hint": "شرایط اختیاری که قبل از راهاندازی workflow روی دادهها بررسی میشوند.",
|
|
11870
|
+
"field_workflowTrigger_env_hint": "متغیرهای محیطی (جفتهای کلید/مقدار JSON) در دسترس برای workflow.",
|
|
11871
|
+
"field_workflowTrigger_cronExpression_hint": "عبارت Cron برای زمانبندی (مثلاً: '0 9 * * 1' برای دوشنبه ساعت 9 صبح).",
|
|
11872
|
+
|
|
11873
|
+
"field_workflowStep_workflow_hint": "Workflowی که این مرحله به آن تعلق دارد.",
|
|
11874
|
+
"field_workflowStep_name_hint": "نام توصیفی اختیاری برای مرحله (مثلاً: 'بررسی موجودی', 'ارسال ایمیل تأیید').",
|
|
11875
|
+
"field_workflowStep_conditions_hint": "شرایط اختیاری که قبل از اجرای عمل مرحله بررسی میشوند.",
|
|
11876
|
+
"field_workflowStep_onSuccessStep_hint": "اختیاری: مرحله بعدی در صورت موفقیتآمیز بودن عمل این مرحله.",
|
|
11877
|
+
"field_workflowStep_onFailureStep_hint": "اختیاری: مرحله بعدی در صورت شکست شرایط یا عمل.",
|
|
11878
|
+
"field_workflowStep_isTerminal_hint": "نشان میدهد که آیا این مرحله پایان یک مسیر workflow را نشان میدهد.",
|
|
11879
|
+
|
|
11880
|
+
"field_workflowAction_name_hint": "نام عمل (مثلاً: 'بهروزرسانی وضعیت', 'ارسال ایمیل', 'فراخوانی API').",
|
|
11881
|
+
"field_workflowAction_type_hint": "نوع عملی که انجام خواهد شد.",
|
|
11882
|
+
"field_workflowAction_targetModel_hint": "مدل داده برای فیلتر کردن اسناد هدف.",
|
|
11883
|
+
"field_workflowAction_fieldsToUpdate_hint": "جفتهای کلید-مقدار فیلدهایی که بهروزرسانی میشوند (مثلاً: { \"status\": \"Validé\" }).",
|
|
11884
|
+
"field_workflowAction_dataToCreate_hint": "شیء مدل برای سند جدیدی که ایجاد میشود.",
|
|
11885
|
+
"field_workflowAction_script_hint": "اسکریپتی که اجرا خواهد شد.",
|
|
11886
|
+
"field_workflowAction_url_hint": "آدرس URL webhook که فراخوانی میشود.",
|
|
11887
|
+
"field_workflowAction_method_hint": "متد HTTP مورد استفاده برای فراخوانی webhook.",
|
|
11888
|
+
"field_workflowAction_headers_hint": "هدرهای درخواست HTTP webhook (قالب JSON).",
|
|
11889
|
+
"field_workflowAction_body_hint": "بدنه درخواست HTTP webhook (قالب JSON، میتواند شامل متغیرها باشد).",
|
|
11890
|
+
"field_workflowAction_duration_hint": "مدت زمان انتظار.",
|
|
11891
|
+
"field_workflowAction_durationUnit_hint": "واحد زمان برای مدت انتظار.",
|
|
11892
|
+
|
|
11893
|
+
"field_workflowRun_contextData_hint": "نمونهای از دادهها یا رویدادی که اجرا را فعال کرد.",
|
|
11894
|
+
"field_workflowRun_currentStep_hint": "مرحلهای که در حال اجرا یا در انتظار است.",
|
|
11895
|
+
"field_workflowRun_error_hint": "پیام خطا در صورت شکست اجرای workflow.",
|
|
11896
|
+
|
|
11897
|
+
"field_event_title_hint": "عنوان رویداد.",
|
|
11898
|
+
"field_event_description_hint": "توضیح مفصلی از رویداد، شامل برنامه، سخنرانان و غیره.",
|
|
11899
|
+
"field_event_startDate_hint": "تاریخ و زمان شروع رویداد.",
|
|
11900
|
+
"field_event_endDate_hint": "تاریخ و زمان پایان رویداد.",
|
|
11901
|
+
"field_event_location_hint": "مکانی که رویداد در آن برگزار میشود (آدرس فیزیکی یا لینک آنلاین).",
|
|
11902
|
+
"field_event_categories_hint": "دستهها یا برچسبهای مرتبط با رویداد (مثلاً: \"کنفرانس\", \"کارگاه\").",
|
|
11903
|
+
"field_event_organizer_hint": "نام سازمان یا فرد برگزارکننده رویداد.",
|
|
11904
|
+
"field_event_isOnline_hint": "نشان میدهد که رویداد آنلاین است یا حضوری.",
|
|
11905
|
+
"field_event_eventUrl_hint": "لینک به وبسایت رسمی رویداد یا صفحه ثبتنام.",
|
|
11906
|
+
"field_event_imageUrl_hint": "آدرس URL تصویر یا بنر رویداد.",
|
|
11907
|
+
"field_event_status_hint": "وضعیت فعلی رویداد.",
|
|
11908
|
+
"field_event_capacity_hint": "حداکثر تعداد شرکتکنندگان مجاز برای رویداد.",
|
|
11909
|
+
"field_event_price_hint": "قیمت ورودی، در صورت وجود.",
|
|
11910
|
+
|
|
11911
|
+
"field_alert_name_hint": "یک نام منحصر به فرد برای شناسایی هشدار (مثلاً: 'هشدار موجودی کم', 'کاربران غیرفعال جدید').",
|
|
11912
|
+
"field_alert_sendEmail_hint": "برای ارسال یک اعلان از طریق ایمیل نیز انتخاب کنید.",
|
|
11913
|
+
"field_alert_message_hint": "پیام سفارشی برای ایمیل. اگر خالی باشد، از یک پیام پیشفرض استفاده میشود. میتوانید از متغیرهایی مانند {count}, {alert.name} و غیره استفاده کنید...",
|
|
11914
|
+
"field_alert_targetModel_hint": "مدل دادهای که این هشدار روی آن اعمال میشود.",
|
|
11915
|
+
"field_alert_description_hint": "توضیحی درباره اینکه هشدار چه چیزی را نظارت میکند و چرا.",
|
|
11916
|
+
"field_alert_triggerCondition_hint": "شرطی که در صورت برقرار بودن، هشدار را فعال میکند.",
|
|
11917
|
+
"field_alert_frequency_hint": "دفعات بررسی برقرار بودن شرط.",
|
|
11918
|
+
"field_alert_lastNotifiedAt_hint": "زماننگار آخرین اعلان ارسال شده برای این هشدار.",
|
|
11919
|
+
"field_alert_isActive_hint": "اگر این کادر انتخاب شده باشد، هشدار فعال است و شرایط را بررسی میکند.",
|
|
11920
|
+
"field_env_name_hint": "نام متغیر (مثلاً: OPENAI_API_KEY).",
|
|
11921
|
+
"field_env_value_hint": "مقدار متغیر (به صورت ایمن ذخیره میشود و export نمیشود).",
|
|
11922
|
+
"field_kpi_aggregationField_hint": "نام فیلد عددی که تجمیع روی آن اعمال میشود (مثلاً: totalAmount). برای 'count' لازم نیست.",
|
|
11923
|
+
"field_content_category": "دسته",
|
|
11924
|
+
"field_content_order": "ترتیب",
|
|
11925
|
+
"field_content_inSitemap": "در نقشه سایت",
|
|
11926
|
+
"field_resource_file": "فایل",
|
|
11927
|
+
"field_taxonomy_identifier": "شناسه",
|
|
11928
|
+
"field_taxonomy_order": "ترتیب",
|
|
11929
|
+
"field_taxonomy_description": "توضیحات",
|
|
11930
|
+
"field_review_product": "محصول",
|
|
11931
|
+
"field_review_productVariant": "گونه محصول",
|
|
11932
|
+
"field_product_slug": "Slug",
|
|
11933
|
+
"field_product_seoTitle": "عنوان سئو",
|
|
11934
|
+
"field_product_seoDescription": "توضیحات سئو",
|
|
11935
|
+
"field_productVariant_description": "توضیحات",
|
|
11936
|
+
"field_cart_name": "نام سبد خرید",
|
|
11937
|
+
"field_return_channel": "کانال",
|
|
11938
|
+
"field_ticket_parent": "تیکت والد",
|
|
11939
|
+
"field_accountingExercise_name_hint": "عنوان دوره مالی",
|
|
11940
|
+
"field_accountingLineItem_values_hint": "مقادیر آیتم خط حسابداری",
|
|
11941
|
+
"field_accountingEntry_entryDate_hint": "تاریخ ثبت",
|
|
11942
|
+
"field_accountingEntry_referenceNumber_hint": "شماره مرجع",
|
|
11943
|
+
"field_accountingEntry_status_hint": "وضعیت",
|
|
11944
|
+
"field_accountingEntry_createdBy_hint": "ایجاد شده توسط",
|
|
11945
|
+
"field_accountingEntry_validatedBy_hint": "تأیید شده توسط",
|
|
11946
|
+
"field_accountingEntry_validationDate_hint": "تاریخ تأیید",
|
|
11947
|
+
"field_accountingEntry_attachments_hint": "پیوستها",
|
|
11948
|
+
"field_employee_notes_hint": "یادداشتهای اضافی برای کارمند",
|
|
11949
|
+
|
|
11950
|
+
"field_workflow_startStep_hint": "اولین مرحلهای که هنگام شروع workflow اجرا میشود.",
|
|
11951
|
+
|
|
11952
|
+
"field_alert_name": "نام",
|
|
11953
|
+
"field_alert_sendEmail": "ارسال ایمیل",
|
|
11954
|
+
"field_alert_message": "پیام",
|
|
11955
|
+
"field_alert_targetModel": "مدل هدف",
|
|
11956
|
+
"field_alert_description": "توضیحات",
|
|
11957
|
+
"field_alert_triggerCondition": "شرط فعالسازی",
|
|
11958
|
+
"field_alert_frequency": "دفعات",
|
|
11959
|
+
"field_alert_isActive": "فعال",
|
|
11960
|
+
"field_alert_lastNotifiedAt": "آخرین اعلان",
|
|
11961
|
+
"field_env_name": "نام",
|
|
11962
|
+
"field_env_value": "مقدار",
|
|
11963
|
+
"field_event_title": "عنوان",
|
|
11964
|
+
"field_event_description": "توضیحات",
|
|
11965
|
+
"field_event_startDate": "تاریخ شروع",
|
|
11966
|
+
"field_event_endDate": "تاریخ پایان",
|
|
11967
|
+
"field_event_location": "مکان",
|
|
11968
|
+
"field_event_categories": "دستهها",
|
|
11969
|
+
"field_event_organizer": "برگزارکننده",
|
|
11970
|
+
"field_event_isOnline": "آنلاین",
|
|
11971
|
+
"field_event_eventUrl": "آدرس رویداد",
|
|
11972
|
+
"field_event_imageUrl": "تصویر",
|
|
11973
|
+
"field_event_status": "وضعیت",
|
|
11974
|
+
"field_event_capacity": "ظرفیت",
|
|
11975
|
+
"field_event_price": "قیمت",
|
|
11976
|
+
"field_event_currency": "ارز",
|
|
11977
|
+
"field_event_registrationDeadline": "مهلت ثبتنام",
|
|
11978
|
+
"field_event_attendees": "شرکتکنندگان",
|
|
11979
|
+
"field_event_sponsors": "حامیان",
|
|
11980
|
+
"field_accountingExercise_name": "نام",
|
|
11981
|
+
"field_accountingExercise_companyContact": "مخاطب شرکت",
|
|
11982
|
+
"field_accountingExercise_companyIdentifier": "شناسه شرکت",
|
|
11983
|
+
"field_workflow_startStep": "مرحله شروع",
|
|
11984
|
+
"field_workflowAction_emailRecipients": "گیرندگان",
|
|
11985
|
+
"field_workflowAction_emailSubject": "موضوع",
|
|
11986
|
+
"field_workflowAction_emailContent": "محتوا",
|
|
11987
|
+
"field_workflowAction_aiProvider": "ارائهدهنده AI",
|
|
11988
|
+
"field_workflowAction_aiModel": "مدل AI",
|
|
11989
|
+
"field_workflowAction_prompt": "Prompt",
|
|
11990
|
+
"field_workflowRun_startedAt": "شروع در",
|
|
11991
|
+
"field_workflowRun_completedAt": "تکمیل در",
|
|
11992
|
+
|
|
11993
|
+
"model_budget": "بودجه",
|
|
11994
|
+
"model_request": "درخواستها",
|
|
11995
|
+
"model_imageGallery": "گالری تصاویر",
|
|
11996
|
+
"model_workflow": "Workflow",
|
|
11997
|
+
"model_workflowRun": "Workflow - نمونهها",
|
|
11998
|
+
"model_workflowAction": "Workflow - اقدامات",
|
|
11999
|
+
"model_workflowStep": "Workflow - مراحل",
|
|
12000
|
+
"model_workflowTrigger": "Workflow - triggerها",
|
|
12001
|
+
"model_dashboard": "داشبوردها",
|
|
12002
|
+
"model_description_dashboard": "مدیریت دادههای خام داشبوردها (چیدمان، گزینهها...)",
|
|
12003
|
+
"model_translation": "ترجمهها",
|
|
12004
|
+
"model_permission": "مجوزها",
|
|
12005
|
+
"model_order": "سفارشات",
|
|
12006
|
+
"model_webpage": "صفحات وب",
|
|
12007
|
+
"model_role": "نقشها",
|
|
12008
|
+
"model_user": "کاربران",
|
|
12009
|
+
"model_lang": "زبانها",
|
|
12010
|
+
"model_content": "محتوا",
|
|
12011
|
+
"model_token": "توکنها",
|
|
12012
|
+
"model_contact": "مخاطبین",
|
|
12013
|
+
"model_currency": "ارزها",
|
|
12014
|
+
"model_resource": "منبع وب",
|
|
12015
|
+
"model_product": "محصولات",
|
|
12016
|
+
"model_discount": "تخفیفها",
|
|
12017
|
+
"model_productVariant": "گونههای محصول",
|
|
12018
|
+
"model_cart": "سبدهای خرید",
|
|
12019
|
+
"model_cartItem": "محتوای سبد خرید",
|
|
12020
|
+
"model_brand": "برندها",
|
|
12021
|
+
"model_taxonomy": "دستهبندیها",
|
|
12022
|
+
"model_location": "مکانها",
|
|
12023
|
+
"model_device": "دستگاهها",
|
|
12024
|
+
"model_return": "مرجوعی محصولات",
|
|
12025
|
+
"model_review": "نظرات کاربران",
|
|
12026
|
+
"model_stock": "موجودی محصولات",
|
|
12027
|
+
"model_warehouse": "انبارها",
|
|
12028
|
+
"model_shipment": "حملونقلها",
|
|
12029
|
+
"model_ticket": "تیکتهای پشتیبانی",
|
|
12030
|
+
"model_ticketMessage": "پیامهای تیکت",
|
|
12031
|
+
"model_campaign": "کمپینهای بازاریابی",
|
|
12032
|
+
"model_userSubscription": "اشتراکها",
|
|
12033
|
+
"model_invoice": "فاکتورها",
|
|
12034
|
+
"model_stockAlert": "هشدارهای موجودی",
|
|
12035
|
+
"model_returnItem": "محصولات مرجوعی",
|
|
12036
|
+
"model_channel": "کانالهای اعلان",
|
|
12037
|
+
"model_message": "پیامها",
|
|
12038
|
+
"model_kpi": "شاخصهای KPI",
|
|
12039
|
+
"field_permission_name": "نام",
|
|
12040
|
+
"field_permission_description": "توضیحات",
|
|
12041
|
+
"field_budget_name": "عنوان",
|
|
12042
|
+
"field_budget_amount": "مبلغ تراکنش",
|
|
12043
|
+
"field_budget_currency": "ارز",
|
|
12044
|
+
"field_budget_transactionDate": "تاریخ / زمان",
|
|
12045
|
+
"field_budget_description": "توضیحات",
|
|
12046
|
+
"field_budget_paymentMethod": "روش پرداخت",
|
|
12047
|
+
"field_budget_category": "دسته",
|
|
12048
|
+
"field_budget_isRecurring": "تکرارشونده؟",
|
|
12049
|
+
"field_budget_recurringFrequency": "دفعات تکرار",
|
|
12050
|
+
"field_budget_recurringEndDate": "پایان تکرار",
|
|
12051
|
+
"field_budget_attachments": "پیوستها",
|
|
12052
|
+
"field_budget_name_hint": "نام یا شرح تراکنش (مثلاً: خرید، حقوق ژانویه).",
|
|
12053
|
+
"field_budget_amount_hint": "مبلغ تراکنش. مثبت برای درآمد، منفی برای هزینه.",
|
|
12054
|
+
"field_budget_currency_hint": "ارز تراکنش.",
|
|
12055
|
+
"field_budget_transactionDate_hint": "تاریخی که تراکنش انجام شده است.",
|
|
12056
|
+
"field_budget_description_hint": "یادداشتها یا جزئیات اضافی درباره تراکنش.",
|
|
12057
|
+
"field_budget_paymentMethod_hint": "روش پرداخت استفاده شده (مثلاً: کارت اعتباری، نقد، انتقال بانکی).",
|
|
12058
|
+
"field_budget_category_hint": "دسته تراکنش (مثلاً: خوراک، مسکن, حملونقل).",
|
|
12059
|
+
"field_budget_isRecurring_hint": "نشان میدهد که این تراکنش تکرارشونده است.",
|
|
12060
|
+
"field_budget_recurringFrequency_hint": "دفعات تراکنش تکرارشونده",
|
|
12061
|
+
"field_budget_recurringEndDate_hint": "تاریخ پایان تراکنش تکرارشونده",
|
|
12062
|
+
"field_budget_attachments_hint": "پیوستها (رسیدها، فاکتورها).",
|
|
12063
|
+
"field_role_name": "نام",
|
|
12064
|
+
"field_role_permissions": "مجوزها",
|
|
12065
|
+
"field_translation_key": "کلید",
|
|
12066
|
+
"field_translation_value": "ترجمه",
|
|
12067
|
+
"field_translation_html": "ترجمه Html",
|
|
12068
|
+
"field_translation_lang": "زبان",
|
|
12069
|
+
"field_lang_name": "نام",
|
|
12070
|
+
"field_lang_code": "کد",
|
|
12071
|
+
"field_currency_symbol": "نماد",
|
|
12072
|
+
"field_currency_code": "کد",
|
|
12073
|
+
"field_currency_name": "نام",
|
|
12074
|
+
"field_currency_exchangeRate": "نرخ ارز",
|
|
12075
|
+
"field_currency_default": "پیشفرض",
|
|
12076
|
+
"field_webpage_title": "عنوان",
|
|
12077
|
+
"field_webpage_path": "مسیر",
|
|
12078
|
+
"field_webpage_published": "منتشر شده",
|
|
12079
|
+
"field_webpage_html": "Html",
|
|
12080
|
+
"field_webpage_inSitemap": "نمایهشده در نقشه سایت",
|
|
12081
|
+
"field_webpage_description": "توضیحات",
|
|
12082
|
+
"field_webpage_keywords": "کلمات کلیدی",
|
|
12083
|
+
"field_webpage_image": "تصویر",
|
|
12084
|
+
"field_webpage_category": "دسته",
|
|
12085
|
+
"field_content_webpage": "صفحه وب",
|
|
12086
|
+
"field_content_title": "عنوان",
|
|
12087
|
+
"field_content_slug": "Slug",
|
|
12088
|
+
"field_content_published": "منتشر شده",
|
|
12089
|
+
"field_content_publishedAt": "تاریخ انتشار",
|
|
12090
|
+
"field_content_html": "Html",
|
|
12091
|
+
"field_content_type": "نوع",
|
|
12092
|
+
"field_content_keywords": "کلمات کلیدی",
|
|
12093
|
+
"field_content_image": "تصویر",
|
|
12094
|
+
"field_content_author": "نویسنده",
|
|
12095
|
+
"field_taxonomy_name": "نام",
|
|
12096
|
+
"field_taxonomy_parent": "والد",
|
|
12097
|
+
"field_taxonomy_type": "نوع",
|
|
12098
|
+
"field_contact_legalName": "نام قانونی",
|
|
12099
|
+
"field_contact_firstName": "نام",
|
|
12100
|
+
"field_contact_lastName": "نام خانوادگی",
|
|
12101
|
+
"field_contact_email": "ایمیل",
|
|
12102
|
+
"field_contact_phone": "تلفن",
|
|
12103
|
+
"field_contact_location": "مکان",
|
|
12104
|
+
"field_location_address_1": "آدرس 1",
|
|
12105
|
+
"field_location_address_2": "آدرس 2",
|
|
12106
|
+
"field_location_address_3": "آدرس 3",
|
|
12107
|
+
"field_location_address_4": "آدرس 4",
|
|
12108
|
+
"field_location_city": "شهر",
|
|
12109
|
+
"field_location_postalCode": "کد پستی",
|
|
12110
|
+
"field_location_region": "منطقه",
|
|
12111
|
+
"field_location_country": "کشور",
|
|
12112
|
+
"field_location_latitude": "عرض جغرافیایی",
|
|
12113
|
+
"field_location_longitude": "طول جغرافیایی",
|
|
12114
|
+
"field_user_username": "نام کاربری",
|
|
12115
|
+
"field_user_password": "رمز عبور",
|
|
12116
|
+
"field_user_contact": "مخاطب",
|
|
12117
|
+
"field_user_roles": "نقشها",
|
|
12118
|
+
"field_user_tokens": "توکنها",
|
|
12119
|
+
"field_token_name": "نام",
|
|
12120
|
+
"field_token_value": "مقدار",
|
|
12121
|
+
"field_token_lastRefresh": "آخرین بروزرسانی",
|
|
12122
|
+
"field_brand_name": "نام",
|
|
12123
|
+
"field_brand_logo": "لوگو",
|
|
12124
|
+
"field_brand_company": "شرکت",
|
|
12125
|
+
"field_cart_user": "کاربر",
|
|
12126
|
+
"field_cart_items": "آیتمها",
|
|
12127
|
+
"field_cart_creationDate": "تاریخ ایجاد",
|
|
12128
|
+
"field_cart_lastUpdate": "آخرین بروزرسانی",
|
|
12129
|
+
"field_cart_active": "فعال",
|
|
12130
|
+
"field_cartItem_product": "محصول",
|
|
12131
|
+
"field_cartItem_quantity": "تعداد",
|
|
12132
|
+
"field_cartItem_variant": "گونه",
|
|
12133
|
+
"field_discount_code": "کد",
|
|
12134
|
+
"field_discount_productSelection": "انتخاب محصولات",
|
|
12135
|
+
"field_discount_description": "توضیحات",
|
|
12136
|
+
"field_discount_percentAmount": "درصد",
|
|
12137
|
+
"field_discount_fixedAmount": "مبلغ ثابت",
|
|
12138
|
+
"field_discount_minAmount": "حداقل مبلغ",
|
|
12139
|
+
"field_discount_minProductQuantity": "حداقل تعداد محصولات",
|
|
12140
|
+
"field_discount_freeProductQuantity": "تعداد محصولات رایگان",
|
|
12141
|
+
"field_discount_startDate": "تاریخ شروع",
|
|
12142
|
+
"field_discount_endDate": "تاریخ پایان",
|
|
12143
|
+
"field_order_orderId": "شناسه سفارش",
|
|
12144
|
+
"field_order_orderDate": "تاریخ سفارش",
|
|
12145
|
+
"field_order_status": "وضعیت",
|
|
12146
|
+
"field_order_products": "محصولات",
|
|
12147
|
+
"field_order_customer": "مشتری",
|
|
12148
|
+
"field_order_totalAmount": "مبلغ کل",
|
|
12149
|
+
"field_order_currency": "ارز",
|
|
12150
|
+
"field_order_paymentMethod": "روش پرداخت",
|
|
12151
|
+
"field_order_shippingAddress": "آدرس حمل",
|
|
12152
|
+
"field_order_billingAddress": "آدرس صورتحساب",
|
|
12153
|
+
"field_order_shippedDate": "تاریخ ارسال",
|
|
12154
|
+
"field_order_deliveryDate": "تاریخ تحویل",
|
|
12155
|
+
"field_order_discount": "تخفیف",
|
|
12156
|
+
"field_invoice_order": "سفارش",
|
|
12157
|
+
"field_invoice_invoiceId": "شناسه فاکتور",
|
|
12158
|
+
"field_invoice_invoiceDate": "تاریخ فاکتور",
|
|
12159
|
+
"field_invoice_dueDate": "تاریخ سررسید",
|
|
12160
|
+
"field_invoice_status": "وضعیت",
|
|
12161
|
+
"field_resource_source": "منبع",
|
|
12162
|
+
"field_product_name": "نام",
|
|
12163
|
+
"field_product_description": "توضیحات",
|
|
12164
|
+
"field_product_image": "تصویر",
|
|
12165
|
+
"field_product_price": "قیمت",
|
|
12166
|
+
"field_product_currency": "ارز",
|
|
12167
|
+
"field_product_billingFrequency": "دفعات صورتحساب",
|
|
12168
|
+
"field_product_brand": "برند",
|
|
12169
|
+
"field_product_category": "دسته",
|
|
12170
|
+
"field_productVariant_product": "محصول",
|
|
12171
|
+
"field_productVariant_size": "سایز",
|
|
12172
|
+
"field_productVariant_color": "رنگ",
|
|
12173
|
+
"field_productVariant_sku": "SKU",
|
|
12174
|
+
"field_productVariant_price": "قیمت",
|
|
12175
|
+
"field_productVariant_currency": "ارز",
|
|
12176
|
+
"field_productVariant_stock": "موجودی",
|
|
12177
|
+
"field_productVariant_image": "تصویر",
|
|
12178
|
+
"field_stock_product": "محصول",
|
|
12179
|
+
"field_stock_variant": "گونه",
|
|
12180
|
+
"field_stock_warehouse": "انبار",
|
|
12181
|
+
"field_stock_available": "موجود",
|
|
12182
|
+
"field_stock_reserved": "رزرو شده",
|
|
12183
|
+
"field_stockAlert_user": "کاربر",
|
|
12184
|
+
"field_stockAlert_stock": "موجودی",
|
|
12185
|
+
"field_stockAlert_threshold": "آستانه",
|
|
12186
|
+
"field_warehouse_name": "نام",
|
|
12187
|
+
"field_warehouse_location": "مکان",
|
|
12188
|
+
"field_warehouse_capacity": "ظرفیت",
|
|
12189
|
+
"field_shipment_order": "سفارش",
|
|
12190
|
+
"field_shipment_trackingNumber": "شماره رهگیری",
|
|
12191
|
+
"field_shipment_carrier": "حامل",
|
|
12192
|
+
"field_shipment_status": "وضعیت",
|
|
12193
|
+
"field_shipment_estimatedDeliveryDate": "تاریخ تحویل تخمینی",
|
|
12194
|
+
"field_shipment_actualDeliveryDate": "تاریخ تحویل واقعی",
|
|
12195
|
+
"field_userSubscription_user": "کاربر",
|
|
12196
|
+
"field_userSubscription_product": "محصول",
|
|
12197
|
+
"field_userSubscription_startDate": "تاریخ شروع",
|
|
12198
|
+
"field_userSubscription_endDate": "تاریخ پایان",
|
|
12199
|
+
"field_userSubscription_price": "قیمت",
|
|
12200
|
+
"field_userSubscription_currency": "ارز",
|
|
12201
|
+
"field_userSubscription_paymentMethod": "روش پرداخت",
|
|
12202
|
+
"field_userSubscription_status": "وضعیت",
|
|
12203
|
+
"field_userSubscription_billingCycleAnchor": "نقطه شروع چرخه صورتحساب",
|
|
12204
|
+
"field_userSubscription_nextBillingDate": "تاریخ صورتحساب بعدی",
|
|
12205
|
+
"field_userSubscription_lastBillingDate": "تاریخ آخرین صورتحساب",
|
|
12206
|
+
"field_userSubscription_cancelReason": "دلیل لغو",
|
|
12207
|
+
"field_userSubscription_autoRenew": "تمدید خودکار",
|
|
12208
|
+
"field_ticket_user": "کاربر",
|
|
12209
|
+
"field_ticket_order": "سفارش",
|
|
12210
|
+
"field_ticket_channel": "کانال",
|
|
12211
|
+
"field_ticket_subject": "موضوع",
|
|
12212
|
+
"field_ticket_message": "پیام",
|
|
12213
|
+
"field_ticket_status": "وضعیت",
|
|
12214
|
+
"field_ticket_priority": "اولویت",
|
|
12215
|
+
"field_ticket_assignedTo": "واگذار شده به",
|
|
12216
|
+
"field_ticket_createdAt": "تاریخ ایجاد",
|
|
12217
|
+
"field_campaign_name": "نام",
|
|
12218
|
+
"field_campaign_description": "توضیحات",
|
|
12219
|
+
"field_campaign_startDate": "تاریخ شروع",
|
|
12220
|
+
"field_campaign_endDate": "تاریخ پایان",
|
|
12221
|
+
"field_campaign_type": "نوع",
|
|
12222
|
+
"field_campaign_status": "وضعیت",
|
|
12223
|
+
"field_campaign_budget": "بودجه",
|
|
12224
|
+
"field_device_location": "مکان",
|
|
12225
|
+
"field_device_lastLocationUpdate": "آخرین بروزرسانی مکان",
|
|
12226
|
+
"field_review_user": "کاربر",
|
|
12227
|
+
|
|
11756
12228
|
"field_return_status_hint": "وضعیت فعلی درخواست مرجوعی (مثال: درخواست شده، تأیید شده، مسترد شده).",
|
|
11757
12229
|
"field_workflowRun_completedAt_hint": "مهر زمانی پایان اجرا (موفق یا ناموفق).",
|
|
11758
12230
|
"field_employee_socialSecurityNumber_hint": "شماره تأمین اجتماعی کارمند.",
|
|
@@ -11906,12 +12378,13 @@ export const translations = {
|
|
|
11906
12378
|
"field_event_price_hint": "هزینه ورودی، در صورت وجود.",
|
|
11907
12379
|
|
|
11908
12380
|
"field_alert_name_hint": "نام منحصر به فرد برای شناسایی هشدار (مثال: 'هشدار موجودی کم', 'کاربران جدید غیرفعال').",
|
|
12381
|
+
"field_alert_sendEmail_hint": "برای ارسال اعلان ایمیل نیز علامت بزنید.",
|
|
12382
|
+
"field_alert_message_hint": "پیام سفارشی برای ایمیل. در صورت خالی بودن، از یک پیام پیشفرض استفاده خواهد شد. میتوانید از متغیرهای {count}، {alert.name} و غیره استفاده کنید....",
|
|
11909
12383
|
"field_alert_targetModel_hint": "مدل دادهای که این هشدار روی آن اعمال میشود.",
|
|
11910
12384
|
"field_alert_description_hint": "توضیحی درباره آنچه هشدار نظارت میکند و چرا.",
|
|
11911
12385
|
"field_alert_triggerCondition_hint": "شرطی که در صورت برآورده شدن، هشدار را فعال میکند.",
|
|
11912
12386
|
"field_alert_frequency_hint": "تناوب بررسی برآورده شدن شرط.",
|
|
11913
12387
|
"field_alert_lastNotifiedAt_hint": "مهر زمانی آخرین اعلان ارسال شده برای این هشدار.",
|
|
11914
|
-
"field_alert_notificationChannel_hint": "کانالی که اعلان از طریق آن ارسال میشود (در برنامه یا از طریق ایمیل).",
|
|
11915
12388
|
"field_alert_isActive_hint": "اگر انتخاب شود، هشدار فعال است و شرایط را بررسی میکند.",
|
|
11916
12389
|
"field_env_name_hint": "نام متغیر (مثال: OPENAI_API_KEY).",
|
|
11917
12390
|
"field_env_value_hint": "مقدار متغیر (به صورت ایمن ذخیره میشود و صادر نخواهد شد).",
|
|
@@ -12441,5 +12914,5 @@ i18n
|
|
|
12441
12914
|
}
|
|
12442
12915
|
});
|
|
12443
12916
|
|
|
12444
|
-
export {Trans, useTranslation};
|
|
12917
|
+
export {Trans, useTranslation, I18nextProvider};
|
|
12445
12918
|
export default i18n;
|