From 786550bdc9014ad45979ac5b69ada71613c482ac Mon Sep 17 00:00:00 2001 From: Riddhimaan-Senapati <114703025+Riddhimaan-Senapati@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:15:15 -0500 Subject: [PATCH] fix: changed topics/keywords to topic/keywords (#13544) --- web/hooks/use-metadata.ts | 8 ++++---- web/i18n/de-DE/dataset-documents.ts | 4 ++-- web/i18n/en-US/dataset-documents.ts | 2 +- web/i18n/es-ES/dataset-documents.ts | 2 +- web/i18n/fa-IR/dataset-documents.ts | 2 +- web/i18n/fr-FR/dataset-documents.ts | 2 +- web/i18n/hi-IN/dataset-documents.ts | 2 +- web/i18n/it-IT/dataset-documents.ts | 2 +- web/i18n/ja-JP/dataset-documents.ts | 2 +- web/i18n/ko-KR/dataset-documents.ts | 2 +- web/i18n/pl-PL/dataset-documents.ts | 2 +- web/i18n/pt-BR/dataset-documents.ts | 2 +- web/i18n/ro-RO/dataset-documents.ts | 2 +- web/i18n/ru-RU/dataset-documents.ts | 2 +- web/i18n/sl-SI/dataset-documents.ts | 2 +- web/i18n/th-TH/dataset-documents.ts | 2 +- web/i18n/tr-TR/dataset-documents.ts | 2 +- web/i18n/uk-UA/dataset-documents.ts | 2 +- web/i18n/vi-VN/dataset-documents.ts | 2 +- web/i18n/zh-Hans/dataset-documents.ts | 2 +- web/i18n/zh-Hant/dataset-documents.ts | 2 +- 21 files changed, 25 insertions(+), 25 deletions(-) diff --git a/web/hooks/use-metadata.ts b/web/hooks/use-metadata.ts index 5d1d86c20e..92eb733e35 100644 --- a/web/hooks/use-metadata.ts +++ b/web/hooks/use-metadata.ts @@ -65,7 +65,7 @@ export const useMetadataMap = (): MetadataMap => { }, 'author/publisher': { label: t(`${fieldPrefix}.webPage.authorPublisher`) }, 'publish_date': { label: t(`${fieldPrefix}.webPage.publishDate`) }, - 'topics/keywords': { label: t(`${fieldPrefix}.webPage.topicsKeywords`) }, + 'topic/keywords': { label: t(`${fieldPrefix}.webPage.topicKeywords`) }, 'description': { label: t(`${fieldPrefix}.webPage.description`) }, }, }, @@ -85,7 +85,7 @@ export const useMetadataMap = (): MetadataMap => { }, 'volume/issue/page_numbers': { label: t(`${fieldPrefix}.paper.volumeIssuePage`) }, 'doi': { label: t(`${fieldPrefix}.paper.DOI`) }, - 'topics/keywords': { label: t(`${fieldPrefix}.paper.topicsKeywords`) }, + 'topic/keywords': { label: t(`${fieldPrefix}.paper.topicKeywords`) }, 'abstract': { label: t(`${fieldPrefix}.paper.abstract`), inputType: 'textarea', @@ -158,8 +158,8 @@ export const useMetadataMap = (): MetadataMap => { 'start_date': { label: t(`${fieldPrefix}.IMChat.startDate`) }, 'end_date': { label: t(`${fieldPrefix}.IMChat.endDate`) }, 'participants': { label: t(`${fieldPrefix}.IMChat.participants`) }, - 'topicsKeywords': { - label: t(`${fieldPrefix}.IMChat.topicsKeywords`), + 'topicKeywords': { + label: t(`${fieldPrefix}.IMChat.topicKeywords`), inputType: 'textarea', }, 'fileType': { label: t(`${fieldPrefix}.IMChat.fileType`) }, diff --git a/web/i18n/de-DE/dataset-documents.ts b/web/i18n/de-DE/dataset-documents.ts index 16bb6349cf..6cfc5147a3 100644 --- a/web/i18n/de-DE/dataset-documents.ts +++ b/web/i18n/de-DE/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Sprache', authorPublisher: 'Autor/Verlag', publishDate: 'Veröffentlichungsdatum', - topicsKeywords: 'Themen/Schlüsselwörter', + topicKeywords: 'Themen/Schlüsselwörter', description: 'Beschreibung', }, paper: { @@ -144,7 +144,7 @@ const translation = { journalConferenceName: 'Zeitschrift/Konferenzname', volumeIssuePage: 'Band/Ausgabe/Seite', DOI: 'DOI', - topicsKeywords: 'Themen/Schlüsselwörter', + topicKeywords: 'Themen/Schlüsselwörter', abstract: 'Zusammenfassung', }, socialMediaPost: { diff --git a/web/i18n/en-US/dataset-documents.ts b/web/i18n/en-US/dataset-documents.ts index d315261c36..d7fd70c089 100644 --- a/web/i18n/en-US/dataset-documents.ts +++ b/web/i18n/en-US/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Language', authorPublisher: 'Author/Publisher', publishDate: 'Publish Date', - topicsKeywords: 'Topics/Keywords', + topicKeywords: 'Topic/Keywords', description: 'Description', }, paper: { diff --git a/web/i18n/es-ES/dataset-documents.ts b/web/i18n/es-ES/dataset-documents.ts index ea4690c5f5..cd5bb36197 100644 --- a/web/i18n/es-ES/dataset-documents.ts +++ b/web/i18n/es-ES/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Idioma', authorPublisher: 'Autor/Editorial', publishDate: 'Fecha de publicación', - topicsKeywords: 'Temas/Palabras clave', + topicKeywords: 'Temas/Palabras clave', description: 'Descripción', }, paper: { diff --git a/web/i18n/fa-IR/dataset-documents.ts b/web/i18n/fa-IR/dataset-documents.ts index ff9e47f71a..85e1e0a4aa 100644 --- a/web/i18n/fa-IR/dataset-documents.ts +++ b/web/i18n/fa-IR/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: 'زبان', authorPublisher: 'نویسنده/ناشر', publishDate: 'تاریخ انتشار', - topicsKeywords: 'موضوعات/کلیدواژه‌ها', + topicKeywords: 'موضوعات/کلیدواژه‌ها', description: 'توضیحات', }, paper: { diff --git a/web/i18n/fr-FR/dataset-documents.ts b/web/i18n/fr-FR/dataset-documents.ts index 614590de53..7a795202ed 100644 --- a/web/i18n/fr-FR/dataset-documents.ts +++ b/web/i18n/fr-FR/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Langue', authorPublisher: 'Auteur/Éditeur', publishDate: 'Date de publication', - topicsKeywords: 'Sujets/Mots-clés', + topicKeywords: 'Sujets/Mots-clés', description: 'Description', }, paper: { diff --git a/web/i18n/hi-IN/dataset-documents.ts b/web/i18n/hi-IN/dataset-documents.ts index e01b3ebb13..35bcb0aad2 100644 --- a/web/i18n/hi-IN/dataset-documents.ts +++ b/web/i18n/hi-IN/dataset-documents.ts @@ -134,7 +134,7 @@ const translation = { language: 'भाषा', authorPublisher: 'लेखक/प्रकाशक', publishDate: 'प्रकाशन तिथि', - topicsKeywords: 'विषय/कीवर्ड्स', + topicKeywords: 'विषय/कीवर्ड्स', description: 'विवरण', }, paper: { diff --git a/web/i18n/it-IT/dataset-documents.ts b/web/i18n/it-IT/dataset-documents.ts index 06c5a2deed..b9afb1ea75 100644 --- a/web/i18n/it-IT/dataset-documents.ts +++ b/web/i18n/it-IT/dataset-documents.ts @@ -134,7 +134,7 @@ const translation = { language: 'Lingua', authorPublisher: 'Autore/Editore', publishDate: 'Data di Pubblicazione', - topicsKeywords: 'Argomenti/Parole Chiave', + topicKeywords: 'Argomenti/Parole Chiave', description: 'Descrizione', }, paper: { diff --git a/web/i18n/ja-JP/dataset-documents.ts b/web/i18n/ja-JP/dataset-documents.ts index 0ca9362433..270c619116 100644 --- a/web/i18n/ja-JP/dataset-documents.ts +++ b/web/i18n/ja-JP/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: '言語', authorPublisher: '著者/出版社', publishDate: '公開日', - topicsKeywords: 'トピック/キーワード', + topicKeywords: 'トピック/キーワード', description: '説明', }, paper: { diff --git a/web/i18n/ko-KR/dataset-documents.ts b/web/i18n/ko-KR/dataset-documents.ts index ec0b2bb62d..6f6cb451cd 100644 --- a/web/i18n/ko-KR/dataset-documents.ts +++ b/web/i18n/ko-KR/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: '언어', authorPublisher: '저자/출판사', publishDate: '공개일', - topicsKeywords: '주제/키워드', + topicKeywords: '주제/키워드', description: '설명', }, paper: { diff --git a/web/i18n/pl-PL/dataset-documents.ts b/web/i18n/pl-PL/dataset-documents.ts index d5292fd2c4..37f373ac93 100644 --- a/web/i18n/pl-PL/dataset-documents.ts +++ b/web/i18n/pl-PL/dataset-documents.ts @@ -134,7 +134,7 @@ const translation = { language: 'Język', authorPublisher: 'Autor/Wydawca', publishDate: 'Data publikacji', - topicsKeywords: 'Tematy/Słowa kluczowe', + topicKeywords: 'Tematy/Słowa kluczowe', description: 'Opis', }, paper: { diff --git a/web/i18n/pt-BR/dataset-documents.ts b/web/i18n/pt-BR/dataset-documents.ts index 9acfca3029..9a3d13bcab 100644 --- a/web/i18n/pt-BR/dataset-documents.ts +++ b/web/i18n/pt-BR/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Idioma', authorPublisher: 'Autor/Editor', publishDate: 'Data de Publicação', - topicsKeywords: 'Tópicos/Palavras-chave', + topicKeywords: 'Tópicos/Palavras-chave', description: 'Descrição', }, paper: { diff --git a/web/i18n/ro-RO/dataset-documents.ts b/web/i18n/ro-RO/dataset-documents.ts index acf40ec4aa..e42be87502 100644 --- a/web/i18n/ro-RO/dataset-documents.ts +++ b/web/i18n/ro-RO/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Limbă', authorPublisher: 'Autor/Editor', publishDate: 'Data publicării', - topicsKeywords: 'Subiecte/Cuvinte cheie', + topicKeywords: 'Subiecte/Cuvinte cheie', description: 'Descriere', }, paper: { diff --git a/web/i18n/ru-RU/dataset-documents.ts b/web/i18n/ru-RU/dataset-documents.ts index f344a7e48c..735266c087 100644 --- a/web/i18n/ru-RU/dataset-documents.ts +++ b/web/i18n/ru-RU/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Язык', authorPublisher: 'Автор/Издатель', publishDate: 'Дата публикации', - topicsKeywords: 'Темы/Ключевые слова', + topicKeywords: 'Темы/Ключевые слова', description: 'Описание', }, paper: { diff --git a/web/i18n/sl-SI/dataset-documents.ts b/web/i18n/sl-SI/dataset-documents.ts index 3953e9a574..78d63c9e29 100644 --- a/web/i18n/sl-SI/dataset-documents.ts +++ b/web/i18n/sl-SI/dataset-documents.ts @@ -133,7 +133,7 @@ const translation = { language: 'Jezik', authorPublisher: 'Avtor/Založnik', publishDate: 'Datum objave', - topicsKeywords: 'Teme/Ključne besede', + topicKeywords: 'Teme/Ključne besede', description: 'Opis', }, paper: { diff --git a/web/i18n/th-TH/dataset-documents.ts b/web/i18n/th-TH/dataset-documents.ts index a7ea67c11b..2f4c6d5c9c 100644 --- a/web/i18n/th-TH/dataset-documents.ts +++ b/web/i18n/th-TH/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: 'ภาษา', authorPublisher: 'ผู้เขียน/สํานักพิมพ์', publishDate: 'วันที่เผยแพร่', - topicsKeywords: 'หัวข้อ/คําสําคัญ', + topicKeywords: 'หัวข้อ/คําสําคัญ', description: 'คำอธิบาย', }, paper: { diff --git a/web/i18n/tr-TR/dataset-documents.ts b/web/i18n/tr-TR/dataset-documents.ts index 7a297d9093..f643375334 100644 --- a/web/i18n/tr-TR/dataset-documents.ts +++ b/web/i18n/tr-TR/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: 'Dil', authorPublisher: 'Yazar/Yayıncı', publishDate: 'Yayın Tarihi', - topicsKeywords: 'Konular/Anahtar Kelimeler', + topicKeywords: 'Konular/Anahtar Kelimeler', description: 'Açıklama', }, paper: { diff --git a/web/i18n/uk-UA/dataset-documents.ts b/web/i18n/uk-UA/dataset-documents.ts index 192253b264..da012cbb57 100644 --- a/web/i18n/uk-UA/dataset-documents.ts +++ b/web/i18n/uk-UA/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: 'Мова', authorPublisher: 'Автор/видавець', publishDate: 'Дата публікації', - topicsKeywords: 'Теми/ключові слова', + topicKeywords: 'Теми/ключові слова', description: 'Опис', }, paper: { diff --git a/web/i18n/vi-VN/dataset-documents.ts b/web/i18n/vi-VN/dataset-documents.ts index 07e5c5c6e3..6e13c1185f 100644 --- a/web/i18n/vi-VN/dataset-documents.ts +++ b/web/i18n/vi-VN/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: 'Ngôn ngữ', authorPublisher: 'Tác giả/Nhà xuất bản', publishDate: 'Ngày xuất bản', - topicsKeywords: 'Chủ đề/Từ khóa', + topicKeywords: 'Chủ đề/Từ khóa', description: 'Mô tả', }, paper: { diff --git a/web/i18n/zh-Hans/dataset-documents.ts b/web/i18n/zh-Hans/dataset-documents.ts index 9949f33d87..5ff1b50f85 100644 --- a/web/i18n/zh-Hans/dataset-documents.ts +++ b/web/i18n/zh-Hans/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: '语言', authorPublisher: '作者/出版商', publishDate: '发布日期', - topicsKeywords: '主题/关键词', + topicKeywords: '主题/关键词', description: '描述', }, paper: { diff --git a/web/i18n/zh-Hant/dataset-documents.ts b/web/i18n/zh-Hant/dataset-documents.ts index 8a6c1f7924..5ad2c8f61f 100644 --- a/web/i18n/zh-Hant/dataset-documents.ts +++ b/web/i18n/zh-Hant/dataset-documents.ts @@ -132,7 +132,7 @@ const translation = { language: '語言', authorPublisher: '作者/出版商', publishDate: '釋出日期', - topicsKeywords: '主題/關鍵詞', + topicKeywords: '主題/關鍵詞', description: '描述', }, paper: {