You've already forked OpenIntegrations
							
							
				mirror of
				https://github.com/Bayselonarrend/OpenIntegrations.git
				synced 2025-10-30 23:47:46 +02:00 
			
		
		
		
	Возвращение _category
This commit is contained in:
		
							
								
								
									
										73
									
								
								.github/workflows/os/docs_main.os
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										73
									
								
								.github/workflows/os/docs_main.os
									
									
									
									
										vendored
									
									
								
							| @@ -122,6 +122,15 @@ | ||||
| 	ПроверитьСоздатьКаталог(КаталогБиблиотеки); | ||||
| 	ПроверитьСоздатьКаталог(КаталогОбласти); | ||||
| 	ПроверитьСоздатьКаталог(КаталогКартинок); | ||||
|  | ||||
| 	СтруктураКатегории = Новый Структура("label,position", ЗаголовокОбласти, Строка(СчетчикБиблиотеки)); | ||||
| 	ФайлКатегории      = КаталогОбласти + "/_category_.json"; | ||||
|  | ||||
| 	Запись = Новый ЗаписьJSON; | ||||
| 	ПараметрыЗаписиJSON = Новый ПараметрыЗаписиJSON(ПереносСтрокJSON.Авто); | ||||
| 	Запись.ОткрытьФайл(ФайлКатегории, , , ПараметрыЗаписиJSON); | ||||
| 	ЗаписатьJSON(Запись, СтруктураКатегории); | ||||
| 	Запись.Закрыть(); | ||||
| 	 | ||||
| 	Макет = Новый ТекстовыйДокумент(); | ||||
| 	Макет.Прочитать("./.github/workflows/os/template.md", "UTF-8"); | ||||
| @@ -752,30 +761,58 @@ | ||||
| 			Продолжить; | ||||
| 		КонецЕсли; | ||||
|  | ||||
| 		ТекущийДокумент = Новый ТекстовыйДокумент(); | ||||
| 		ТекущийДокумент.Прочитать(Файл.ПолноеИмя, "UTF-8"); | ||||
| 		ТекстДокумента = ТекущийДокумент.ПолучитьТекст(); | ||||
| 		Если Файл.Имя = "_category_.json" Тогда | ||||
|  | ||||
| 		Для Каждого Слово Из ТаблицаСловаря Цикл | ||||
| 			ТекстДокумента = СтрЗаменить(ТекстДокумента, Слово.Ключ, Слово.Значение); | ||||
| 		КонецЦикла; | ||||
| 			ФайлКатегории = Файл.ПолноеИмя; | ||||
|  | ||||
| 		Пока СтрНайти(ТекстДокумента, "  ") <> 0 Цикл | ||||
| 			ТекстДокумента = СтрЗаменить(ТекстДокумента, "  ", " "); | ||||
| 		КонецЦикла; | ||||
| 			 | ||||
| 			ЧтениеJSON = Новый ЧтениеJSON(); | ||||
| 			ЧтениеJSON.ОткрытьФайл(ФайлКатегории); | ||||
| 			СтруктураКатегории = ПрочитатьJSON(ЧтениеJSON, Истина); | ||||
| 			ЧтениеJSON.Закрыть(); | ||||
|  | ||||
| 		ТекстДокумента = СтрЗаменить(ТекстДокумента, " ,", ","); | ||||
| 			ЛокализированныйЗаголовок = СоответствиеЗаголовков[СтруктураКатегории["label"]]; | ||||
|  | ||||
| 		ТекущийДокумент.УстановитьТекст(ТекстДокумента); | ||||
| 		ТекущийДокумент.Записать(Файл.ПолноеИмя); | ||||
|  | ||||
| 		Для Каждого Буква Из Транслитация Цикл | ||||
| 			Если СтрНайти(ТекстДокумента, Буква.Ключ) <> 0 Тогда | ||||
| 				Сообщить("Ошибка перевода | " + Файл.ПолноеИмя); | ||||
| 				Прервать; | ||||
| 			Если ЗначениеЗаполнено(ЛокализированныйЗаголовок) Тогда | ||||
| 				СтруктураКатегории.Вставить("label", ЛокализированныйЗаголовок); | ||||
| 			КонецЕсли; | ||||
| 		КонецЦикла; | ||||
| 			 | ||||
| 			Запись = Новый ЗаписьJSON; | ||||
| 			ПараметрыЗаписиJSON = Новый ПараметрыЗаписиJSON(ПереносСтрокJSON.Авто); | ||||
| 			Запись.ОткрытьФайл(ФайлКатегории, , , ПараметрыЗаписиJSON); | ||||
| 			ЗаписатьJSON(Запись, СтруктураКатегории); | ||||
| 			Запись.Закрыть(); | ||||
|  | ||||
| 		Иначе | ||||
|  | ||||
| 			ТекущийДокумент = Новый ТекстовыйДокумент(); | ||||
| 			ТекущийДокумент.Прочитать(Файл.ПолноеИмя, "UTF-8"); | ||||
| 			ТекстДокумента = ТекущийДокумент.ПолучитьТекст(); | ||||
|  | ||||
| 			Для Каждого Слово Из ТаблицаСловаря Цикл | ||||
| 				ТекстДокумента = СтрЗаменить(ТекстДокумента, Слово.Ключ, Слово.Значение); | ||||
| 			КонецЦикла; | ||||
|  | ||||
| 			Пока СтрНайти(ТекстДокумента, "  ") <> 0 Цикл | ||||
| 				ТекстДокумента = СтрЗаменить(ТекстДокумента, "  ", " "); | ||||
| 			КонецЦикла; | ||||
|  | ||||
| 			ТекстДокумента = СтрЗаменить(ТекстДокумента, " ,", ","); | ||||
|  | ||||
| 			ТекущийДокумент.УстановитьТекст(ТекстДокумента); | ||||
| 			ТекущийДокумент.Записать(Файл.ПолноеИмя); | ||||
|  | ||||
| 		КонецЕсли; | ||||
|  | ||||
| 			Для Каждого Буква Из Транслитация Цикл | ||||
| 				Если СтрНайти(ТекстДокумента, Буква.Ключ) <> 0 Тогда | ||||
| 					Сообщить("Ошибка перевода | " + Файл.ПолноеИмя); | ||||
| 					Прервать; | ||||
| 				КонецЕсли; | ||||
| 			КонецЦикла; | ||||
|  | ||||
|  | ||||
| 	 | ||||
| 	КонецЦикла; | ||||
| 	 | ||||
| 	Сообщить("Перевод завершен!"); | ||||
|   | ||||
							
								
								
									
										4
									
								
								docs/en/md/Airtable/Comment-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Airtable/Comment-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Comment management", | ||||
| "position": "6" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Airtable/Record-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Airtable/Record-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Record management", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Airtable/Table-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Airtable/Table-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Table management", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Working with databases", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Airtable/Working-with-fields/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Airtable/Working-with-fields/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Working with fields", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Bitrix24/Feed-posts-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Bitrix24/Feed-posts-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Feed posts managment", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Settings and administartion", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Storages and files managment", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Bitrix24/Tasks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Bitrix24/Tasks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Tasks managment", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Account and authorization", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "File and directory management", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Shared access settings", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Dropbox/Tags-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Dropbox/Tags-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Tags managment", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Calendar list management", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Calendar metadata management", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Event management", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Comment management", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "File and directory management", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Google_Sheets/Data-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Google_Sheets/Data-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Data managment", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Spreadsheets managment", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Working with sheets", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Notion/Blocks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Notion/Blocks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Blocks managment", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Notion/Database-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Notion/Database-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Database management", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Notion/Page-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Notion/Page-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Page management", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Notion/Users/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Notion/Users/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Users", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/Block-formation/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/Block-formation/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Block formation", | ||||
| "position": "8" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/Channel-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/Channel-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Channel management", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/Dialog-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/Dialog-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Dialog management", | ||||
| "position": "5" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "External files management", | ||||
| "position": "7" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/File-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/File-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "File managment", | ||||
| "position": "6" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/Management-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/Management-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Management and settings", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Slack/Message-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Slack/Message-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Message management", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Telegram/Administration/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Telegram/Administration/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Administration", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Data retrieval and settings", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Telegram/Data-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Telegram/Data-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Data sending", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Forum topic management", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Twitter/Data-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Twitter/Data-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Data and settings", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Twitter/Tweets/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Twitter/Tweets/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Tweets", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Ad-account-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Ad-account-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Ad account management", | ||||
| "position": "7" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Community-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Community-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Community managment", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Discussion-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Discussion-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Discussion management", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Interactive-actions/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Interactive-actions/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Interactive actions", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Order-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Order-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Order management", | ||||
| "position": "11" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Others/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Others/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Others", | ||||
| "position": "12" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Product-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Product-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Product management", | ||||
| "position": "8" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Product properties management", | ||||
| "position": "10" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Product selection management", | ||||
| "position": "9" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Statistics/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Statistics/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Statistics", | ||||
| "position": "6" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/VK/Token-retrieval/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/VK/Token-retrieval/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Token retrieval", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/en/md/Viber/Message-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/en/md/Viber/Message-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Message sending", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Settings and information", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "File and folder management", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Manage public access", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Airtable/Comment-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Airtable/Comment-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с комментариями", | ||||
| "position": "6" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Airtable/Record-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Airtable/Record-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с записями", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Airtable/Table-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Airtable/Table-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с таблицами", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с базами", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Airtable/Working-with-fields/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Airtable/Working-with-fields/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с полями", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Bitrix24/Feed-posts-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Bitrix24/Feed-posts-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с живой лентой", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Настройки и администрирование", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с диском и файлами", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Bitrix24/Tasks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Bitrix24/Tasks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с задачами", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Аккаунт и авторизация", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с файлами и каталогами", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Настройки совместного доступа", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Dropbox/Tags-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Dropbox/Tags-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с тегами", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа со списком календарей", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с метаданными календарей", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с событиями", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с комментариями", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с файлами и каталогами", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Google_Sheets/Data-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Google_Sheets/Data-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с данными", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с книгами", | ||||
| "position": "2" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с листами", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Notion/Blocks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Notion/Blocks-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с блоками", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Notion/Database-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Notion/Database-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с базами данных", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Notion/Page-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Notion/Page-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа со страницами", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Notion/Users/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Notion/Users/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Пользователи", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/Block-formation/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/Block-formation/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Формирование блоков", | ||||
| "position": "8" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/Channel-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/Channel-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с каналами", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/Dialog-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/Dialog-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с диалогами", | ||||
| "position": "5" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с удаленными файлами", | ||||
| "position": "7" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/File-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/File-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с файлами", | ||||
| "position": "6" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/Management-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/Management-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Управление и настройки", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Slack/Message-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Slack/Message-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с сообщениями", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Telegram/Administration/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Telegram/Administration/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Администрирование", | ||||
| "position": "4" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Получение данных и настройка", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Telegram/Data-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Telegram/Data-sending/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Отправка данных", | ||||
| "position": "3" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с темами форума", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Twitter/Data-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Twitter/Data-and-settings/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Данные и настройка", | ||||
| "position": "2" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/Twitter/Tweets/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/Twitter/Tweets/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Твиты", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Ad-account-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Ad-account-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с рекламным кабинетом", | ||||
| "position": "7" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Community-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Community-managment/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с группой", | ||||
| "position": "3" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Discussion-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Discussion-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с обсуждениями", | ||||
| "position": "4" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Interactive-actions/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Interactive-actions/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Интерактивные действия", | ||||
| "position": "5" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Order-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Order-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с заказами", | ||||
| "position": "11" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Others/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Others/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Прочие", | ||||
| "position": "12" | ||||
| } | ||||
							
								
								
									
										4
									
								
								docs/ru/md/VK/Product-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								docs/ru/md/VK/Product-management/_category_.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа с товарами", | ||||
| "position": "8" | ||||
| } | ||||
| @@ -0,0 +1,4 @@ | ||||
| { | ||||
| "label": "Работа со свойствами товаров", | ||||
| "position": "10" | ||||
| } | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user