Merge pull request #26 from poum/master

I18N and french L10N
This commit is contained in:
Kingsley Hendrickse 2012-07-23 02:23:18 -07:00
commit 5f814c206c
3 changed files with 7 additions and 8 deletions

View File

@ -9,7 +9,7 @@
<groupId>net.masterthought.jenkins</groupId>
<artifactId>cucumber-reports</artifactId>
<version>0.0.14</version>
<version>0.0.15</version>
<packaging>hpi</packaging>
<scm>

View File

@ -128,7 +128,7 @@ public class CucumberReportPublisher extends Recorder {
public static class DescriptorImpl extends BuildStepDescriptor<Publisher> {
@Override
public String getDisplayName() {
return "Publish cucumber results as a report";
return Messages.CucumberReportPublisher_DisplayName();
}

View File

@ -10,22 +10,21 @@
When submitted, it will be passed to the corresponding constructor parameter.
-->
<f:advanced>
<f:entry title="Json Reports Path" field="jsonReportDirectory" description="The path relative to the workspace of the json reports generated by cucumber-jvm e.g. target - leave empty to let the plugin find them automagically">
<f:entry title="${%JsonReportsPath}" field="jsonReportDirectory" description="${%JsonReportsPathDescription}">
<f:textbox />
</f:entry>
<f:entry title="Plugin Url Path" field="pluginUrlPath" description="The path to the jenkins user content url e.g. http://host:port[/jenkins/]plugin - leave empty if jenkins url root is host:port">
<f:entry title="${%PluginUrlPath}" field="pluginUrlPath" description="${%PluginUrlPathDescription}">
<f:textbox />
</f:entry>
<f:entry title="Skipped Steps Fail the Build" field="skippedFails" description="Tick this if you want skipped steps to cause the build to fail">
<f:entry title="${%SkippedStepsFailTheBuild}" field="skippedFails" description="${%SkippedStepsFailTheBuildDescription}">
<f:checkbox />
</f:entry>
<f:entry title="Pending Steps Fail the Build" field="undefinedFails" description="Tick this if you want pending steps to cause the build to fail">
<f:entry title="${%PendingStepsFailTheBuild}" field="undefinedFails" description="${%PendingStepsFailTheBuildDescription}">
<f:checkbox />
</f:entry>
<f:entry title="Turn Off Flash Charts" field="noFlashCharts" description="Tick this if you want to use javascript charts instead of flash charts">
<f:entry title="${%TurnOffFlashCharts}" field="noFlashCharts" description="${%TurnOffFlashChartsDescription}">
<f:checkbox />
</f:entry>
</f:advanced>
</j:jelly>