Skip to content

Commit 9bbff46

Browse files
committed
fix(Open Graph Metadata Generator): fix missing translation keys
Fix #409
1 parent 7e979b3 commit 9bbff46

3 files changed

Lines changed: 55 additions & 3 deletions

File tree

locales/en.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5300,6 +5300,8 @@ tools:
53005300
meta-tag-generator:
53015301
texts:
53025302
label-your-meta-tags: Your meta tags
5303+
isbn: ISBN
5304+
book: Book
53035305
article:
53045306
text:
53055307
tag-words-associated-with-this-article: Tag words associated with this article...
@@ -5383,6 +5385,7 @@ tools:
53835385
summary-with-large-image: Summary with large image
53845386
summary: Summary
53855387
twitter: Twitter
5388+
the-name-of-the-twitter-account-of-the-creator-ex-cthmsst: The name of the Twitter account of the creator (ex{':'} {'@'}cthmsst)...
53865389
videoEpisode:
53875390
text:
53885391
which-series-this-episode-belongs-to: Which series this episode belongs to...
@@ -5403,6 +5406,50 @@ tools:
54035406
videoOther:
54045407
text:
54055408
other-video-details: Other video details
5409+
website:
5410+
text:
5411+
article: Article
5412+
profile: Profile
5413+
song: Song
5414+
book: Book
5415+
music: Music
5416+
music-0: Music
5417+
music-album: Music album
5418+
playlist: Playlist
5419+
radio-station: Radio station
5420+
video: Video
5421+
video-0: Video
5422+
movie: Movie
5423+
episode: Episode
5424+
tv-show: TV Show
5425+
other-video: Other video
5426+
general-information: General Information
5427+
page-type: Page type
5428+
select-the-type-of-your-website: Select the type of your website...
5429+
enter-the-title-of-your-website: Enter the title of your website...
5430+
enter-the-description-of-your-website: Enter the description of your website...
5431+
page-url: Page URL
5432+
enter-the-url-of-your-website: Enter the url of your website...
5433+
ies-lighting-guidelines:
5434+
texts:
5435+
tag-application: Application
5436+
videoTVShow:
5437+
text:
5438+
tv-show-details: TV show details
5439+
basic-auth-generator:
5440+
username: Enter the username of the person...
5441+
qr-code-generator:
5442+
texts:
5443+
title-image: Image
5444+
qr-contact-info-generator:
5445+
texts:
5446+
label-website: Website
5447+
xslt-tester:
5448+
texts:
5449+
tag-title: Title
5450+
ical-generator:
5451+
texts:
5452+
label-description: Description
54065453
regex-tester:
54075454
title: Regex Tester
54085455
description: Test your regular expressions with sample text.

src/tools/meta-tag-generator/og-schemas/book.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import type { OGSchemaType } from '../OGSchemaType.type';
33
import { translate as t } from '@/plugins/i18n.plugin';
44

55
export const book: OGSchemaType = {
6-
name: t('tools.meta-tag-generator.website.text.book'),
6+
name: t('tools.meta-tag-generator.texts.book'),
77
elements: [
88
{ type: 'input', label: t('tools.meta-tag-generator.article.text.author'), key: 'book:author', placeholder: t('tools.meta-tag-generator.book.text.who-wrote-this-book') },
9-
{ type: 'input', label: 'ISBN', key: 'book:isbn', placeholder: t('tools.meta-tag-generator.book.text.the-international-standard-book-number') },
9+
{ type: 'input', label: t('tools.meta-tag-generator.texts.isbn'), key: 'book:isbn', placeholder: t('tools.meta-tag-generator.book.text.the-international-standard-book-number') },
1010
{
1111
type: 'input',
1212
label: t('tools.meta-tag-generator.book.text.release-date'),

src/tools/meta-tag-generator/og-schemas/website.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ export const website: OGSchemaType = {
4141
key: 'type',
4242
options: typeOptions,
4343
},
44-
{ type: 'input', label: t('tools.meta-tag-generator.xslt-tester.texts.tag-title'), placeholder: t('tools.meta-tag-generator.website.text.enter-the-title-of-your-website'), key: 'title' },
44+
{
45+
type: 'input',
46+
label: t('tools.meta-tag-generator.xslt-tester.texts.tag-title'),
47+
placeholder: t('tools.meta-tag-generator.website.text.enter-the-title-of-your-website'),
48+
key: 'title',
49+
},
4550
{
4651
type: 'input',
4752
label: t('tools.meta-tag-generator.ical-generator.texts.label-description'),

0 commit comments

Comments
 (0)