ssg: Strings: build and publish error messages
This commit is contained in:
parent
6a1c00e6c2
commit
c7f36efabd
|
@ -4595,6 +4595,36 @@ namespace OpenLiveWriter.Localization
|
||||||
/// More...
|
/// More...
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SplitterMore,
|
SplitterMore,
|
||||||
|
/// <summary>
|
||||||
|
/// {0} has failed to build your site. Please ensure your site builds manually, check your build command and try again.
|
||||||
|
///
|
||||||
|
/// Build command exit code: {1}
|
||||||
|
/// Command STDOUT:
|
||||||
|
/// {2}
|
||||||
|
/// Command STDERR:
|
||||||
|
/// {3}
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
SSGBuildErrorText,
|
||||||
|
/// <summary>
|
||||||
|
/// Static site build failed
|
||||||
|
/// </summary>
|
||||||
|
SSGBuildErrorTitle,
|
||||||
|
/// <summary>
|
||||||
|
/// {0} has failed to publish your site. Please check your site publish command.
|
||||||
|
///
|
||||||
|
/// Publish command exit code: {1}
|
||||||
|
/// Command STDOUT:
|
||||||
|
/// {2}
|
||||||
|
/// Command STDERR:
|
||||||
|
/// {3}
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
SSGPublishErrorText,
|
||||||
|
/// <summary>
|
||||||
|
/// Static site publish failed
|
||||||
|
/// </summary>
|
||||||
|
SSGPublishErrorTitle,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Statistics
|
/// Statistics
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -380,6 +380,24 @@ CWStaticSiteBuildCommand,Build command:,
|
||||||
CWStaticSitePublishCommand,Publish command:,
|
CWStaticSitePublishCommand,Publish command:,
|
||||||
CWStaticSiteEnableBuilding,Enable building,
|
CWStaticSiteEnableBuilding,Enable building,
|
||||||
CWStaticSiteLocalSiteFolderPicker,Please select the project folder of your static site (eg. Git repository),
|
CWStaticSiteLocalSiteFolderPicker,Please select the project folder of your static site (eg. Git repository),
|
||||||
|
SSGBuildErrorTitle,Static site build failed,
|
||||||
|
SSGBuildErrorText,"{0} has failed to build your site. Please ensure your site builds manually, check your build command and try again.
|
||||||
|
|
||||||
|
Build command exit code: {1}
|
||||||
|
Command STDOUT:
|
||||||
|
{2}
|
||||||
|
Command STDERR:
|
||||||
|
{3}
|
||||||
|
","{0} - Product name, {1} - Build command exit code"
|
||||||
|
SSGPublishErrorTitle,Static site publish failed,
|
||||||
|
SSGPublishErrorText,"{0} has failed to publish your site. Please check your site publish command.
|
||||||
|
|
||||||
|
Publish command exit code: {1}
|
||||||
|
Command STDOUT:
|
||||||
|
{2}
|
||||||
|
Command STDERR:
|
||||||
|
{3}
|
||||||
|
","{0} - Product name, {1} - Publish command exit code"
|
||||||
CWTitle,Add Blog Wizard,Caption of the Add Blog Wizard window.
|
CWTitle,Add Blog Wizard,Caption of the Add Blog Wizard window.
|
||||||
CWProgressHeader,Setting up your blog account,
|
CWProgressHeader,Setting up your blog account,
|
||||||
ProgressDownloadingEditingTemplate,Downloading editing template...,
|
ProgressDownloadingEditingTemplate,Downloading editing template...,
|
||||||
|
|
Can't render this file because it has a wrong number of fields in line 52.
|
|
@ -3572,6 +3572,32 @@ Do you still want to set this web address as your custom pin?</value>
|
||||||
<data name="SplitterMore" xml:space="preserve">
|
<data name="SplitterMore" xml:space="preserve">
|
||||||
<value>More...</value>
|
<value>More...</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="SSGBuildErrorText" xml:space="preserve">
|
||||||
|
<value>{0} has failed to build your site. Please ensure your site builds manually, check your build command and try again.
|
||||||
|
|
||||||
|
Build command exit code: {1}
|
||||||
|
Command STDOUT:
|
||||||
|
{2}
|
||||||
|
Command STDERR:
|
||||||
|
{3}
|
||||||
|
</value>
|
||||||
|
<comment>{0} - Product name, {1} - Build command exit code</comment></data>
|
||||||
|
<data name="SSGBuildErrorTitle" xml:space="preserve">
|
||||||
|
<value>Static site build failed</value>
|
||||||
|
</data>
|
||||||
|
<data name="SSGPublishErrorText" xml:space="preserve">
|
||||||
|
<value>{0} has failed to publish your site. Please check your site publish command.
|
||||||
|
|
||||||
|
Publish command exit code: {1}
|
||||||
|
Command STDOUT:
|
||||||
|
{2}
|
||||||
|
Command STDERR:
|
||||||
|
{3}
|
||||||
|
</value>
|
||||||
|
<comment>{0} - Product name, {1} - Publish command exit code</comment></data>
|
||||||
|
<data name="SSGPublishErrorTitle" xml:space="preserve">
|
||||||
|
<value>Static site publish failed</value>
|
||||||
|
</data>
|
||||||
<data name="Statistics" xml:space="preserve">
|
<data name="Statistics" xml:space="preserve">
|
||||||
<value>Statistics</value>
|
<value>Statistics</value>
|
||||||
<comment>Header of the table that shows word and character count</comment></data>
|
<comment>Header of the table that shows word and character count</comment></data>
|
||||||
|
|
Loading…
Reference in New Issue