mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-01 02:32:18 +02:00
Исправлено описание команды сортировки проекта
Исправлено описание команды, параметров и имен параметров для команды сортировки проекта.
This commit is contained in:
parent
a8b9767305
commit
6adb249636
@ -25,8 +25,8 @@ final class Messages
|
||||
public static String SortCommand_Description;
|
||||
public static String SortCommand_Project__0__did_not_import_into_workspace;
|
||||
public static String SortCommand_Project__0__not_found_in_workspace;
|
||||
public static String SortCommand_Project_names_Description;
|
||||
public static String SortCommand_Project_paths_Description;
|
||||
public static String SortCommand_Projects;
|
||||
public static String SortCommand_Projects_location;
|
||||
public static String SortCommand_Sort_project__0__finished;
|
||||
public static String SortCommand_Sort_projects__0;
|
||||
static
|
||||
|
@ -60,8 +60,8 @@ public class SortCommand
|
||||
* @return the status of command
|
||||
*/
|
||||
@CliCommand(command = "sort-project", value = "SortCommand_Description")
|
||||
public IStatus importAndSortProjects(@Argument(value = "--projects", elementType = Path.class,
|
||||
descriptor = "SortCommand_Project_paths_Description") Path[] projectPaths)
|
||||
public IStatus importAndSortProjects(@Argument(value = "--project-list", elementType = Path.class,
|
||||
descriptor = "SortCommand_Projects_location") Path[] projectPaths)
|
||||
{
|
||||
if (projectPaths == null || projectPaths.length == 0)
|
||||
{
|
||||
@ -109,8 +109,8 @@ public class SortCommand
|
||||
* @return the status of command
|
||||
*/
|
||||
@CliCommand(command = "sort-project", value = "SortCommand_Description")
|
||||
public IStatus sortExistingProjects(@Argument(value = "--project-names", elementType = IProject.class,
|
||||
descriptor = "SortCommand_Project_names_Description") IProject[] projectNames)
|
||||
public IStatus sortExistingProjects(@Argument(value = "--project-name-list", elementType = IProject.class,
|
||||
descriptor = "SortCommand_Projects") IProject[] projectNames)
|
||||
{
|
||||
if (projectNames == null || projectNames.length == 0)
|
||||
{
|
||||
|
@ -12,15 +12,15 @@
|
||||
# 1C-Soft LLC - initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
SortCommand_Description = Sort 1C:Enterprise projects with current auto-sort settings. If auto-sorting is not enabled yet, then default sort settings will enable for the project.
|
||||
SortCommand_Description = Sorts configuration objects according to the automatic sorting settings. If automatic sorting has not been enabled for the project, standard automatic sorting settings will be set, according to which configuration objects will be sorted.
|
||||
|
||||
SortCommand_Project__0__did_not_import_into_workspace = Project "{0}" was not imported into workspace
|
||||
|
||||
SortCommand_Project__0__not_found_in_workspace = Project "{0}" was not found in workspace
|
||||
|
||||
SortCommand_Project_names_Description = List of project names, imported into workspace earlier, which will be sorted
|
||||
SortCommand_Projects = A list of project names to sort.
|
||||
|
||||
SortCommand_Project_paths_Description = List of project paths, which will be imported into workspace and will be sorted
|
||||
SortCommand_Projects_location = A list of paths to the directories where the project files are located, while all nested projects are processed. If one of the projects is not imported into the workspace passed in the -data parameter, then before sorting the project, this project will be imported into the workspace.
|
||||
|
||||
SortCommand_Sort_project__0__finished = Sort project "{0}" is finished.
|
||||
|
||||
|
@ -13,15 +13,15 @@
|
||||
###############################################################################
|
||||
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/)
|
||||
|
||||
SortCommand_Description = Сортирует проекты 1С:Предприятия с текущиими настройками авто-сортировки. Если авто-сортировка еще не была включена, тогда для проекта включатся настройки сортировки по умолчанию.
|
||||
SortCommand_Description = Сортирует объекты конфигурации в соответствии с настройками автоматической сортировки. Если автоматическая сортировка не была включена для проекта, будут установлены стандартные настройки автоматической сортировки, в соответствии с которыми объекты конфигурации будут отсортированы.
|
||||
|
||||
SortCommand_Project__0__did_not_import_into_workspace = Проект "{0}" не был импортирован в рабочее пространство
|
||||
|
||||
SortCommand_Project__0__not_found_in_workspace = Проект "{0}" не найден в рабочем пространстве
|
||||
|
||||
SortCommand_Project_names_Description = Список имен проектов, ранее импортированных в рабочее пространство, которые будут отсортированы
|
||||
SortCommand_Projects = Список имен проектов для сортировки.
|
||||
|
||||
SortCommand_Project_paths_Description = Список путей к проектам, которые будут импортированы в рабочее пространство и отсортированы
|
||||
SortCommand_Projects_location = Список путей к каталогам, в которых находятся файлы проектов, при этом обрабатываются все вложенные проекты. Если какой-то из проектов не импортирован в рабочую область, переданную в параметре -data, то перед сортировкой проекта будет выполнен импорт этого проекта в рабочую область.
|
||||
|
||||
SortCommand_Sort_project__0__finished = Сортировка проекта "{0}" завершена.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user