Skip to content

Commit

Permalink
Merge pull request #14 from wp-blocks/fix/author-uri
Browse files Browse the repository at this point in the history
Fix author uri label
  • Loading branch information
erikyo authored Mar 16, 2024
2 parents 9844ee5 + e550ddf commit f0044e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/extractors/headers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,16 @@ export function translationsHeaders(args: Args) {

/** the theme and plugin case, the rest is not supported yet */
return {
[name]: gentranslation('Name of the ' + domain, name, fakePath),
[url]: gentranslation('Url of the ' + domain, url, fakePath),
[name]: gentranslation(`Name of the ${domain}`, name, fakePath),
[url]: gentranslation(`Url of the ${domain}`, url, fakePath),
[description]: gentranslation(
'Description of the ' + domain,
`Description of the ${domain}`,
description,
fakePath
),
[author]: gentranslation(domain + ' author', author, fakePath),
[author]: gentranslation(`Author of the ${domain}`, author, fakePath),
[authorUri]: gentranslation(
'Author of the ' + domain,
`Author URI of the ${domain}`,
authorUri,
fakePath
),
Expand Down

0 comments on commit f0044e3

Please sign in to comment.