Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MPLUGIN-492] Documentation for plugins in general: Goals comprises m… #252

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ protected void renderBody() {
}
}

paragraph(getI18nString("description"));

renderGoalsSection(hasMavenReport);

renderSystemRequirementsSection();
Expand All @@ -107,6 +109,8 @@ protected void renderBody() {
}

private void renderGoalsSection(boolean hasMavenReport) {
startSection(getI18nString("goals"));

paragraph(getI18nString("goals.intro"));

startTable();
Expand Down Expand Up @@ -157,6 +161,8 @@ private void renderGoalsSection(boolean hasMavenReport) {
}

endTable();

endSection();
}

private void renderSystemRequirementsSection() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
#

report.plugin.name=Plugin Documentation
report.plugin.description=This report provides goals and parameters documentation of a plugin.
report.plugin.description=This report describes goals, parameters details, requirements and sample usage of this plugin.
report.plugin.title=Plugin Documentation

report.plugin.goals=Goals
report.plugin.goals.nogoal=No goals defined in this plugin.
report.plugin.goals.intro=Goals available for this plugin:
report.plugin.goals.column.goal=Goal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#

report.plugin.name=Plugin-Dokumentation
report.plugin.description=Dieser Bericht dokumentiert die Goals des Plugins und deren Parameter.
report.plugin.description=Dieser Bericht dokumentiert die Goals, Parameterdetails, Anforderungen und Verwendungsbeispiele dieses Plugins.
report.plugin.title=Plugin-Dokumentation

report.plugin.goals.nogoal=Keine Goals verf\u00FCgbar.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#

report.plugin.name=Documentation du plugin
report.plugin.description=Ce rapport fournit de la documentation sur les goals et les param\u00EAtres d'un plugin.
report.plugin.title=Documentation du plugin

report.plugin.goals.nogoal=Aucun goal disponible.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#

report.plugin.name=Plugindokumentation
report.plugin.description=Denna rapport tillhandah\u00E5ller m\u00E5l- och parameterdokumentation f\u00F6r en plugin.
report.plugin.title=Plugindokumentation

report.plugin.goals.nogoal=Inga m\u00E5l tillg\u00E4ngliga \u00E4nnu.
Expand Down