@@ -112,6 +112,10 @@ web-ext-deploy --env
112112 If specified and ` firefox.env ` exists, it will be used to provide changelog for the Firefox users
113113 New lines (` \n ` ) are supported
114114
115+ - ` --firefox-changelog-lang ` string?
116+ - If specified and ` firefox.env ` exists, it will be used to dictate the language of the release notes.
117+ Fallbacks to the Manifest's ` default_locale ` field, if applicable, or ` en-US `
118+
115119- ` --firefox-dev-changelog ` string?
116120 If specified and ` firefox.env ` exists, it will be used to provide changelog for the Firefox Add-ons reviewers
117121 New lines (` \n ` ) are supported
@@ -269,6 +273,10 @@ web-ext-deploy --chrome-ext-id="ExtensionID" --chrome-refresh-token="RefreshToke
269273# A description of the changes in this version, compared to the previous one
270274# It's recommended to use instead --firefox-changelog , so it stays up to date
271275--firefox-changelog? : string
276+
277+ # The language of the changelog
278+ # Fallbacks to the Manifest's `default_locale` field, if applicable, or `en-US`
279+ --firefox-changelog-lang? : string
272280
273281# A description of the technical changes made in this version, compared to the previous one
274282# This will only be seen by the Firefox Addons reviewers
@@ -410,6 +418,10 @@ zipSource?: string;
410418# It's recommended to use instead --firefox-changelog , so it stays up to date
411419changelog? : string;
412420
421+ # The language of the changelog
422+ # Fallbacks to the Manifest's `default_locale` field, if applicable, or `en-US`
423+ changelogLang? : string;
424+
413425# A description of the technical changes made in this version, compared to the previous one
414426# This will only be seen by the Firefox Addons reviewers
415427# It's recommended to use instead --firefox-dev-changelog , so it stays up to date
@@ -505,6 +517,7 @@ deployFirefoxSubmissionApi({
505517 zip: "dist/some-zip-v{version}.zip",
506518 zipSource: "dist/zip-source-v{version}.zip",
507519 changelog: "Some changes",
520+ changelogLang: "en-US",
508521 devChangelog: "Changes for reviewers",
509522 verbose: false
510523}).catch(console.error);
0 commit comments