@nocobase/plugin-workflow 0.9.2-alpha.2 → 0.9.2-alpha.4

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.
Files changed (72) hide show
  1. package/lib/client/AddButton.js +1 -3
  2. package/lib/client/Branch.d.ts +1 -1
  3. package/lib/client/ExecutionCanvas.js +1 -1
  4. package/lib/client/FlowContext.d.ts +1 -1
  5. package/lib/client/WorkflowProvider.js +0 -1
  6. package/lib/client/components/CollectionFieldset.d.ts +1 -1
  7. package/lib/client/components/CollectionFieldset.js +13 -13
  8. package/lib/client/components/Duration.js +3 -3
  9. package/lib/client/components/DynamicExpression.d.ts +1 -1
  10. package/lib/client/components/DynamicExpression.js +19 -19
  11. package/lib/client/components/RadioWithTooltip.js +4 -4
  12. package/lib/client/components/renderEngineReference.js +12 -11
  13. package/lib/client/interfaces/expression.d.ts +1 -1
  14. package/lib/client/interfaces/expression.js +2 -1
  15. package/lib/client/locale/en-US.d.ts +70 -70
  16. package/lib/client/locale/en-US.js +115 -115
  17. package/lib/client/locale/ja-JP.d.ts +57 -57
  18. package/lib/client/locale/ja-JP.js +85 -85
  19. package/lib/client/locale/pt-BR.d.ts +70 -70
  20. package/lib/client/locale/pt-BR.js +115 -115
  21. package/lib/client/locale/ru-RU.d.ts +57 -57
  22. package/lib/client/locale/ru-RU.js +85 -85
  23. package/lib/client/locale/tr-TR.d.ts +57 -57
  24. package/lib/client/locale/tr-TR.js +85 -85
  25. package/lib/client/locale/zh-CN.js +55 -55
  26. package/lib/client/nodes/calculation.d.ts +1 -1
  27. package/lib/client/nodes/calculation.js +29 -29
  28. package/lib/client/nodes/condition.d.ts +3 -3
  29. package/lib/client/nodes/condition.js +76 -72
  30. package/lib/client/nodes/delay.d.ts +1 -1
  31. package/lib/client/nodes/index.js +35 -37
  32. package/lib/client/nodes/manual/ModeConfig.js +5 -5
  33. package/lib/client/nodes/manual/SchemaConfig.js +2 -5
  34. package/lib/client/nodes/manual/WorkflowTodo.js +3 -3
  35. package/lib/client/nodes/manual/forms/customForm.js +1 -2
  36. package/lib/client/nodes/parallel.d.ts +1 -1
  37. package/lib/client/nodes/parallel.js +6 -6
  38. package/lib/client/nodes/request.d.ts +2 -0
  39. package/lib/client/nodes/request.js +7 -5
  40. package/lib/client/style.js +67 -63
  41. package/lib/client/triggers/index.d.ts +4 -4
  42. package/lib/client/triggers/index.js +5 -7
  43. package/lib/client/triggers/schedule/DateFieldsSelect.d.ts +1 -1
  44. package/lib/client/triggers/schedule/EndsByField.js +3 -3
  45. package/lib/client/triggers/schedule/OnField.js +3 -3
  46. package/lib/client/triggers/schedule/RepeatField.js +16 -16
  47. package/lib/client/triggers/schedule/ScheduleConfig.js +2 -2
  48. package/lib/client/utils.js +1 -1
  49. package/lib/client/variable.js +4 -4
  50. package/lib/server/Processor.d.ts +2 -2
  51. package/lib/server/Processor.js +8 -8
  52. package/lib/server/functions/index.d.ts +1 -1
  53. package/lib/server/functions/index.js +1 -2
  54. package/lib/server/instructions/calculation.d.ts +1 -1
  55. package/lib/server/instructions/calculation.js +7 -7
  56. package/lib/server/instructions/condition.d.ts +2 -2
  57. package/lib/server/instructions/condition.js +7 -8
  58. package/lib/server/instructions/create.d.ts +1 -1
  59. package/lib/server/instructions/destroy.d.ts +1 -1
  60. package/lib/server/instructions/manual/index.js +1 -2
  61. package/lib/server/instructions/parallel.d.ts +3 -3
  62. package/lib/server/instructions/query.d.ts +2 -2
  63. package/lib/server/instructions/request.js +0 -1
  64. package/lib/server/instructions/update.d.ts +2 -2
  65. package/lib/server/migrations/20230221071831-calculation-expression.js +11 -11
  66. package/lib/server/migrations/20230221121203-condition-calculation.js +6 -6
  67. package/lib/server/migrations/20230221162902-jsonb-to-json.js +3 -5
  68. package/lib/server/migrations/20230411034722-manual-multi-form.js +3 -2
  69. package/lib/server/triggers/collection.d.ts +2 -2
  70. package/lib/server/triggers/collection.js +2 -2
  71. package/lib/server/triggers/schedule.js +26 -20
  72. package/package.json +12 -12
@@ -5,90 +5,90 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _default = {
8
- "Workflow": "Рабочий процесс",
9
- "Execution history": "История запусков",
10
- "Trigger type": "Тип триггера",
11
- "Status": "Статус",
12
- "On": "Вкл.",
13
- "Off": "Выкл.",
14
- "Version": "Версия",
15
- "Copy to new version": "Скопировать в новую версию",
16
- "Load failed": "Загрузка не удалась",
17
- "Trigger": "Триггер",
18
- "Collection event": "Событие коллекции",
19
- "Trigger on": "Триггер на",
20
- "After record added": "После добавления записи",
21
- "After record updated": "После обновления записи",
22
- "After record added or updated": "После добавления или обновления записи",
23
- "After record deleted": "После удаления записи",
24
- "Changed fields": "Измененные поля",
25
- "Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": "Запускается только при изменении одного из выбранных полей. Если флажок не установлен, это означает, что он будет срабатывать при изменении любого поля. При добавлении или удалении записи любое поле считается измененным.",
26
- "Only triggers when match conditions": "Срабатывает только при совпадении условий",
27
- "Schedule event": "Событие по расписанию",
28
- "Trigger mode": "Режим триггера",
29
- "Based on certain date": "На основе определенной даты",
30
- "Based on date field of collection": "На базе поля с датой в коллекции",
31
- "Starts on": "Стартует с",
32
- "Ends on": "Оканчивается в",
33
- "Exactly at": "Ровно в",
34
- "Repeat mode": "Режим повтора",
35
- "Repeat limit": "Ограничение на повторы",
36
- "No limit": "Нет ограничений",
37
- "Seconds": "Секунды",
38
- "Minutes": "Минуты",
39
- "Hours": "Часы",
40
- "Days": "Дни",
41
- "Weeks": "Недели",
42
- "Months": "Месяцы",
43
- "No repeat": "Не повторять",
44
- "Every": "Каждые",
45
- "By minute": "По минутам",
46
- "By hour": "По часам",
47
- "By day": "По дням",
48
- "By week": "По неделям",
49
- "By month": "По месяцам",
50
- "By field": "По полю",
51
- "By custom date": "По пользовательской дате",
52
- "Advanced": "Продвинутый",
53
- "End": "Окончание",
54
- "Trigger variables": "Контекст триггера",
55
- "Node result": "Результат Узла",
56
- "Constant": "Константа",
57
- "Boolean": "Логический",
58
- "String": "Строка",
59
- "Arithmetic calculation": "Арифметическое вычисление",
60
- "String operation": "Операция со строкой",
61
- "On going": "Непрерывный",
62
- "Succeeded": "Успешный",
63
- "Failed": "Неудачный",
64
- "Canceled": "Прерванный",
65
- "This node contains branches, deleting will also be preformed to them, are you sure?": "Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?",
66
- "Control": "Управление",
67
- "Collection operations": "Операции с Коллекцией",
68
- "Node type": "Тип Узла",
69
- "Calculation": "Вычисление",
70
- "Configure calculation": "Настроить вычисление",
71
- "Calculation result": "Результат вычисления",
72
- "True": "Истина",
73
- "False": "Ложь",
74
- "Condition": "Условие",
75
- "Mode": "Режим",
76
- "Continue when \"Yes\"": "Продолжить когда \"Да\"",
77
- "Branch into \"Yes\" and \"No\"": "Разветвление на \"Да\" and \"Нет\"",
78
- "Conditions": "Условия",
79
- "Parallel branch": "Параллельная ветвь",
80
- "All succeeded": "Всё успешно",
81
- "Any succeeded": "Что-то успешно",
82
- "Continue after all branches succeeded": "Продолжать после успеха на всех ветвях",
83
- "Continue after any branch succeeded": "Продолжать после успеха на любой из ветвей",
84
- "Create record": "Создать запись",
85
- "Update record": "Обновить запись",
86
- "Query record": "Запрос записи",
87
- "Multiple records": "Множество записей",
88
- "Please select collection first": "Выберите сначала Коллекцию, пожалуйста",
89
- "Only update records matching conditions": "Обновлять только записи, соответствующие условиям",
90
- "Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.",
91
- "Trigger in executed workflow cannot be modified": "Триггер в выполняемом рабочем процессе не может быть изменен",
92
- "Node in executed workflow cannot be modified": "Узел в выполняемом рабочем процессе не может быть изменен"
8
+ Workflow: 'Рабочий процесс',
9
+ 'Execution history': 'История запусков',
10
+ 'Trigger type': 'Тип триггера',
11
+ Status: 'Статус',
12
+ On: 'Вкл.',
13
+ Off: 'Выкл.',
14
+ Version: 'Версия',
15
+ 'Copy to new version': 'Скопировать в новую версию',
16
+ 'Load failed': 'Загрузка не удалась',
17
+ Trigger: 'Триггер',
18
+ 'Collection event': 'Событие коллекции',
19
+ 'Trigger on': 'Триггер на',
20
+ 'After record added': 'После добавления записи',
21
+ 'After record updated': 'После обновления записи',
22
+ 'After record added or updated': 'После добавления или обновления записи',
23
+ 'After record deleted': 'После удаления записи',
24
+ 'Changed fields': 'Измененные поля',
25
+ 'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.': 'Запускается только при изменении одного из выбранных полей. Если флажок не установлен, это означает, что он будет срабатывать при изменении любого поля. При добавлении или удалении записи любое поле считается измененным.',
26
+ 'Only triggers when match conditions': 'Срабатывает только при совпадении условий',
27
+ 'Schedule event': 'Событие по расписанию',
28
+ 'Trigger mode': 'Режим триггера',
29
+ 'Based on certain date': 'На основе определенной даты',
30
+ 'Based on date field of collection': 'На базе поля с датой в коллекции',
31
+ 'Starts on': 'Стартует с',
32
+ 'Ends on': 'Оканчивается в',
33
+ 'Exactly at': 'Ровно в',
34
+ 'Repeat mode': 'Режим повтора',
35
+ 'Repeat limit': 'Ограничение на повторы',
36
+ 'No limit': 'Нет ограничений',
37
+ Seconds: 'Секунды',
38
+ Minutes: 'Минуты',
39
+ Hours: 'Часы',
40
+ Days: 'Дни',
41
+ Weeks: 'Недели',
42
+ Months: 'Месяцы',
43
+ 'No repeat': 'Не повторять',
44
+ Every: 'Каждые',
45
+ 'By minute': 'По минутам',
46
+ 'By hour': 'По часам',
47
+ 'By day': 'По дням',
48
+ 'By week': 'По неделям',
49
+ 'By month': 'По месяцам',
50
+ 'By field': 'По полю',
51
+ 'By custom date': 'По пользовательской дате',
52
+ Advanced: 'Продвинутый',
53
+ End: 'Окончание',
54
+ 'Trigger variables': 'Контекст триггера',
55
+ 'Node result': 'Результат Узла',
56
+ Constant: 'Константа',
57
+ Boolean: 'Логический',
58
+ String: 'Строка',
59
+ 'Arithmetic calculation': 'Арифметическое вычисление',
60
+ 'String operation': 'Операция со строкой',
61
+ 'On going': 'Непрерывный',
62
+ Succeeded: 'Успешный',
63
+ Failed: 'Неудачный',
64
+ Canceled: 'Прерванный',
65
+ 'This node contains branches, deleting will also be preformed to them, are you sure?': 'Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?',
66
+ Control: 'Управление',
67
+ 'Collection operations': 'Операции с Коллекцией',
68
+ 'Node type': 'Тип Узла',
69
+ Calculation: 'Вычисление',
70
+ 'Configure calculation': 'Настроить вычисление',
71
+ 'Calculation result': 'Результат вычисления',
72
+ True: 'Истина',
73
+ False: 'Ложь',
74
+ Condition: 'Условие',
75
+ Mode: 'Режим',
76
+ 'Continue when "Yes"': 'Продолжить когда "Да"',
77
+ 'Branch into "Yes" and "No"': 'Разветвление на "Да" and "Нет"',
78
+ Conditions: 'Условия',
79
+ 'Parallel branch': 'Параллельная ветвь',
80
+ 'All succeeded': 'Всё успешно',
81
+ 'Any succeeded': 'Что-то успешно',
82
+ 'Continue after all branches succeeded': 'Продолжать после успеха на всех ветвях',
83
+ 'Continue after any branch succeeded': 'Продолжать после успеха на любой из ветвей',
84
+ 'Create record': 'Создать запись',
85
+ 'Update record': 'Обновить запись',
86
+ 'Query record': 'Запрос записи',
87
+ 'Multiple records': 'Множество записей',
88
+ 'Please select collection first': 'Выберите сначала Коллекцию, пожалуйста',
89
+ 'Only update records matching conditions': 'Обновлять только записи, соответствующие условиям',
90
+ 'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.': 'Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.',
91
+ 'Trigger in executed workflow cannot be modified': 'Триггер в выполняемом рабочем процессе не может быть изменен',
92
+ 'Node in executed workflow cannot be modified': 'Узел в выполняемом рабочем процессе не может быть изменен'
93
93
  };
94
94
  exports.default = _default;
@@ -1,88 +1,88 @@
1
1
  declare const _default: {
2
2
  Workflow: string;
3
- "Execution history": string;
4
- "Trigger type": string;
3
+ 'Execution history': string;
4
+ 'Trigger type': string;
5
5
  Status: string;
6
6
  On: string;
7
7
  Off: string;
8
8
  Version: string;
9
- "Copy to new version": string;
10
- "Load failed": string;
9
+ 'Copy to new version': string;
10
+ 'Load failed': string;
11
11
  Trigger: string;
12
- "Collection event": string;
13
- "Trigger on": string;
14
- "After record added": string;
15
- "After record updated": string;
16
- "After record added or updated": string;
17
- "After record deleted": string;
18
- "Changed fields": string;
19
- "Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": string;
20
- "Only triggers when match conditions": string;
21
- "Schedule event": string;
22
- "Trigger mode": string;
23
- "Based on certain date": string;
24
- "Based on date field of collection": string;
25
- "Starts on": string;
26
- "Ends on": string;
27
- "Exactly at": string;
28
- "Repeat mode": string;
29
- "Repeat limit": string;
30
- "No limit": string;
12
+ 'Collection event': string;
13
+ 'Trigger on': string;
14
+ 'After record added': string;
15
+ 'After record updated': string;
16
+ 'After record added or updated': string;
17
+ 'After record deleted': string;
18
+ 'Changed fields': string;
19
+ 'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.': string;
20
+ 'Only triggers when match conditions': string;
21
+ 'Schedule event': string;
22
+ 'Trigger mode': string;
23
+ 'Based on certain date': string;
24
+ 'Based on date field of collection': string;
25
+ 'Starts on': string;
26
+ 'Ends on': string;
27
+ 'Exactly at': string;
28
+ 'Repeat mode': string;
29
+ 'Repeat limit': string;
30
+ 'No limit': string;
31
31
  Seconds: string;
32
32
  Minutes: string;
33
33
  Hours: string;
34
34
  Days: string;
35
35
  Weeks: string;
36
36
  Months: string;
37
- "No repeat": string;
37
+ 'No repeat': string;
38
38
  Every: string;
39
- "By minute": string;
40
- "By hour": string;
41
- "By day": string;
42
- "By week": string;
43
- "By month": string;
44
- "By field": string;
45
- "By custom date": string;
39
+ 'By minute': string;
40
+ 'By hour': string;
41
+ 'By day': string;
42
+ 'By week': string;
43
+ 'By month': string;
44
+ 'By field': string;
45
+ 'By custom date': string;
46
46
  Advanced: string;
47
47
  End: string;
48
- "Trigger variables": string;
49
- "Node result": string;
48
+ 'Trigger variables': string;
49
+ 'Node result': string;
50
50
  Constant: string;
51
51
  Boolean: string;
52
52
  String: string;
53
- "Arithmetic calculation": string;
54
- "String operation": string;
55
- "On going": string;
53
+ 'Arithmetic calculation': string;
54
+ 'String operation': string;
55
+ 'On going': string;
56
56
  Succeeded: string;
57
57
  Failed: string;
58
58
  Canceled: string;
59
- "This node contains branches, deleting will also be preformed to them, are you sure?": string;
59
+ 'This node contains branches, deleting will also be preformed to them, are you sure?': string;
60
60
  Control: string;
61
- "Collection operations": string;
62
- "Node type": string;
61
+ 'Collection operations': string;
62
+ 'Node type': string;
63
63
  Calculation: string;
64
- "Configure calculation": string;
65
- "Calculation result": string;
64
+ 'Configure calculation': string;
65
+ 'Calculation result': string;
66
66
  True: string;
67
67
  False: string;
68
68
  Condition: string;
69
69
  Mode: string;
70
- "Continue when \"Yes\"": string;
71
- "Branch into \"Yes\" and \"No\"": string;
70
+ 'Continue when "Yes"': string;
71
+ 'Branch into "Yes" and "No"': string;
72
72
  Conditions: string;
73
- "Parallel branch": string;
74
- "All succeeded": string;
75
- "Any succeeded": string;
76
- "Continue after all branches succeeded": string;
77
- "Continue after any branch succeeded": string;
78
- "Create record": string;
79
- "Update record": string;
80
- "Query record": string;
81
- "Multiple records": string;
82
- "Please select collection first": string;
83
- "Only update records matching conditions": string;
84
- "Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": string;
85
- "Trigger in executed workflow cannot be modified": string;
86
- "Node in executed workflow cannot be modified": string;
73
+ 'Parallel branch': string;
74
+ 'All succeeded': string;
75
+ 'Any succeeded': string;
76
+ 'Continue after all branches succeeded': string;
77
+ 'Continue after any branch succeeded': string;
78
+ 'Create record': string;
79
+ 'Update record': string;
80
+ 'Query record': string;
81
+ 'Multiple records': string;
82
+ 'Please select collection first': string;
83
+ 'Only update records matching conditions': string;
84
+ 'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.': string;
85
+ 'Trigger in executed workflow cannot be modified': string;
86
+ 'Node in executed workflow cannot be modified': string;
87
87
  };
88
88
  export default _default;
@@ -5,90 +5,90 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _default = {
8
- "Workflow": "İş Akışı",
9
- "Execution history": "Yürütme Geçmişi",
10
- "Trigger type": "Tetikleme türü",
11
- "Status": "Durum",
12
- "On": "",
13
- "Off": "Kapa",
14
- "Version": "Sürüm",
15
- "Copy to new version": "Yeni sürüme kopyala",
16
- "Load failed": "Yükleme başarısız",
17
- "Trigger": "Tetikle",
18
- "Collection event": "Koleksiyon etkinliği",
19
- "Trigger on": "Tetikleme açık",
20
- "After record added": "Kayıt eklendikten sonra",
21
- "After record updated": "Kayıt güncellendikten sonra",
22
- "After record added or updated": "Kayıt eklendikten veya güncellendikten sonra",
23
- "After record deleted": "Kayıt silindikten sonra",
24
- "Changed fields": "Değiştirilen alanlar",
25
- "Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": "Yalnızca seçilen alanlardan biri değiştiğinde tetiklenir. Seçili değilse, herhangi bir alan değiştiğinde tetikleneceği anlamına gelir. Kayıt eklendiğinde veya silindiğinde, herhangi bir alan değiştirilmiş olarak kabul edilir.",
26
- "Only triggers when match conditions": "Yalnızca eşleşme koşulları olduğunda tetiklenir",
27
- "Schedule event": "Etkinlik planla",
28
- "Trigger mode": "Tetikleme modu",
29
- "Based on certain date": "Belirli bir tarihe göre",
30
- "Based on date field of collection": "Koleksiyonun tarih alanına göre",
31
- "Starts on": "Başlangıç",
32
- "Ends on": "Bitiş",
33
- "Exactly at": "Tam zamanı",
34
- "Repeat mode": "Tekrarlama modu",
35
- "Repeat limit": "Tekrarlama limiti",
36
- "No limit": "Limit yok",
37
- "Seconds": "Saniye",
38
- "Minutes": "Dakika",
39
- "Hours": "Saat",
40
- "Days": "Gün",
41
- "Weeks": "Hafta",
42
- "Months": "Ay",
43
- "No repeat": "Tekrar yok",
44
- "Every": "Her",
45
- "By minute": "Dakikada",
46
- "By hour": "Saatte",
47
- "By day": "Günde",
48
- "By week": "Haftada",
49
- "By month": "Ayda",
50
- "By field": "Alanda",
51
- "By custom date": "Özel tarihe göre",
52
- "Advanced": "Gelişmiş",
53
- "End": "Son",
54
- "Trigger variables": "Tetikleyici bağlamı",
55
- "Node result": "Düğüm sonucu",
56
- "Constant": "Devamlı",
57
- "Boolean": "Boolean",
58
- "String": "String",
59
- "Arithmetic calculation": "Aritmetik hesaplama",
60
- "String operation": "String operation",
61
- "On going": "Devam eden",
62
- "Succeeded": "Başarılı",
63
- "Failed": "Başarısız",
64
- "Canceled": "İptal edilen",
65
- "This node contains branches, deleting will also be preformed to them, are you sure?": "Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?",
66
- "Control": "Kontrol",
67
- "Collection operations": "Koleksiyon operasyonları",
68
- "Node type": "Düğüm türü",
69
- "Calculation": "Hesaplama",
70
- "Configure calculation": "Hesaplamayı yapılandır",
71
- "Calculation result": "Hesaplama sonucu",
72
- "True": "Doğru",
73
- "False": "Yanlış",
74
- "Condition": "Koşul",
75
- "Mode": "Tür",
76
- "Continue when \"Yes\"": "\"Evet\" durumunda devam",
77
- "Branch into \"Yes\" and \"No\"": "\"Evet\" ve \"Hayır\" olarak dallandırın",
78
- "Conditions": "Koşullar",
79
- "Parallel branch": "Paralel dal",
80
- "All succeeded": "Hepsi başarılı",
81
- "Any succeeded": "Herhangi biri başarılı",
82
- "Continue after all branches succeeded": "Tüm dallar başarılı olduktan sonra devam et",
83
- "Continue after any branch succeeded": "Herhangi bir dal başarılı olduktan sonra devam et",
84
- "Create record": "Kayıt oluştur",
85
- "Update record": "Kayıt güncelle",
86
- "Query record": "Sorgu kaydı",
87
- "Multiple records": "Birden çok kayıt",
88
- "Please select collection first": "Lütfen önce koleksiyonu seçin",
89
- "Only update records matching conditions": "Yalnızca koşullarla eşleşen kayıtları güncelleyin",
90
- "Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.",
91
- "Trigger in executed workflow cannot be modified": "Yürütülen iş akışındaki tetikleyici değiştirilemez",
92
- "Node in executed workflow cannot be modified": "Yürütülen iş akışındaki düğüm değiştirilemez"
8
+ Workflow: 'İş Akışı',
9
+ 'Execution history': 'Yürütme Geçmişi',
10
+ 'Trigger type': 'Tetikleme türü',
11
+ Status: 'Durum',
12
+ On: '',
13
+ Off: 'Kapa',
14
+ Version: 'Sürüm',
15
+ 'Copy to new version': 'Yeni sürüme kopyala',
16
+ 'Load failed': 'Yükleme başarısız',
17
+ Trigger: 'Tetikle',
18
+ 'Collection event': 'Koleksiyon etkinliği',
19
+ 'Trigger on': 'Tetikleme açık',
20
+ 'After record added': 'Kayıt eklendikten sonra',
21
+ 'After record updated': 'Kayıt güncellendikten sonra',
22
+ 'After record added or updated': 'Kayıt eklendikten veya güncellendikten sonra',
23
+ 'After record deleted': 'Kayıt silindikten sonra',
24
+ 'Changed fields': 'Değiştirilen alanlar',
25
+ 'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.': 'Yalnızca seçilen alanlardan biri değiştiğinde tetiklenir. Seçili değilse, herhangi bir alan değiştiğinde tetikleneceği anlamına gelir. Kayıt eklendiğinde veya silindiğinde, herhangi bir alan değiştirilmiş olarak kabul edilir.',
26
+ 'Only triggers when match conditions': 'Yalnızca eşleşme koşulları olduğunda tetiklenir',
27
+ 'Schedule event': 'Etkinlik planla',
28
+ 'Trigger mode': 'Tetikleme modu',
29
+ 'Based on certain date': 'Belirli bir tarihe göre',
30
+ 'Based on date field of collection': 'Koleksiyonun tarih alanına göre',
31
+ 'Starts on': 'Başlangıç',
32
+ 'Ends on': 'Bitiş',
33
+ 'Exactly at': 'Tam zamanı',
34
+ 'Repeat mode': 'Tekrarlama modu',
35
+ 'Repeat limit': 'Tekrarlama limiti',
36
+ 'No limit': 'Limit yok',
37
+ Seconds: 'Saniye',
38
+ Minutes: 'Dakika',
39
+ Hours: 'Saat',
40
+ Days: 'Gün',
41
+ Weeks: 'Hafta',
42
+ Months: 'Ay',
43
+ 'No repeat': 'Tekrar yok',
44
+ Every: 'Her',
45
+ 'By minute': 'Dakikada',
46
+ 'By hour': 'Saatte',
47
+ 'By day': 'Günde',
48
+ 'By week': 'Haftada',
49
+ 'By month': 'Ayda',
50
+ 'By field': 'Alanda',
51
+ 'By custom date': 'Özel tarihe göre',
52
+ Advanced: 'Gelişmiş',
53
+ End: 'Son',
54
+ 'Trigger variables': 'Tetikleyici bağlamı',
55
+ 'Node result': 'Düğüm sonucu',
56
+ Constant: 'Devamlı',
57
+ Boolean: 'Boolean',
58
+ String: 'String',
59
+ 'Arithmetic calculation': 'Aritmetik hesaplama',
60
+ 'String operation': 'String operation',
61
+ 'On going': 'Devam eden',
62
+ Succeeded: 'Başarılı',
63
+ Failed: 'Başarısız',
64
+ Canceled: 'İptal edilen',
65
+ 'This node contains branches, deleting will also be preformed to them, are you sure?': 'Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?',
66
+ Control: 'Kontrol',
67
+ 'Collection operations': 'Koleksiyon operasyonları',
68
+ 'Node type': 'Düğüm türü',
69
+ Calculation: 'Hesaplama',
70
+ 'Configure calculation': 'Hesaplamayı yapılandır',
71
+ 'Calculation result': 'Hesaplama sonucu',
72
+ True: 'Doğru',
73
+ False: 'Yanlış',
74
+ Condition: 'Koşul',
75
+ Mode: 'Tür',
76
+ 'Continue when "Yes"': '"Evet" durumunda devam',
77
+ 'Branch into "Yes" and "No"': '"Evet" ve "Hayır" olarak dallandırın',
78
+ Conditions: 'Koşullar',
79
+ 'Parallel branch': 'Paralel dal',
80
+ 'All succeeded': 'Hepsi başarılı',
81
+ 'Any succeeded': 'Herhangi biri başarılı',
82
+ 'Continue after all branches succeeded': 'Tüm dallar başarılı olduktan sonra devam et',
83
+ 'Continue after any branch succeeded': 'Herhangi bir dal başarılı olduktan sonra devam et',
84
+ 'Create record': 'Kayıt oluştur',
85
+ 'Update record': 'Kayıt güncelle',
86
+ 'Query record': 'Sorgu kaydı',
87
+ 'Multiple records': 'Birden çok kayıt',
88
+ 'Please select collection first': 'Lütfen önce koleksiyonu seçin',
89
+ 'Only update records matching conditions': 'Yalnızca koşullarla eşleşen kayıtları güncelleyin',
90
+ 'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.': 'Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.',
91
+ 'Trigger in executed workflow cannot be modified': 'Yürütülen iş akışındaki tetikleyici değiştirilemez',
92
+ 'Node in executed workflow cannot be modified': 'Yürütülen iş akışındaki düğüm değiştirilemez'
93
93
  };
94
94
  exports.default = _default;