[WEB-3401] fix: platform translations (#6727)

* fix: platform translations

* chore: common translation updated
This commit is contained in:
Anmol Singh Bhatia 2025-03-10 14:28:38 +05:30 committed by GitHub
parent 099c5d50ee
commit b75c9a8d8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 12 additions and 4 deletions

View file

@ -529,6 +529,7 @@
"property": "Vlastnost",
"properties": "Vlastnosti",
"parent": "Nadřazený",
"page": "Stránka",
"remove": "Odebrat",
"archiving": "Archivace",
"archive": "Archivovat",
@ -2196,4 +2197,4 @@
"label": "{count, plural, one {Modul} few {Moduly} other {Modulů}}",
"no_module": "Žádný modul"
}
}
}

View file

@ -529,6 +529,7 @@
"property": "Property",
"properties": "Properties",
"parent": "Parent",
"page": "Page",
"remove": "Remove",
"archiving": "Archiving",
"archive": "Archive",

View file

@ -701,6 +701,7 @@
"property": "Propiedad",
"properties": "Propiedades",
"parent": "Padre",
"page": "página",
"remove": "Eliminar",
"archiving": "Archivando",
"archive": "Archivar",

View file

@ -699,6 +699,7 @@
"property": "Propriété",
"properties": "Propriétés",
"parent": "Parent",
"page": "Pâge",
"remove": "Supprimer",
"archiving": "Archivage",
"archive": "Archiver",

View file

@ -693,6 +693,7 @@
"property": "Proprietà",
"properties": "Proprietà",
"parent": "Principale",
"page": "Pagina",
"remove": "Rimuovi",
"archiving": "Archiviazione in corso",
"archive": "Archivia",

View file

@ -699,6 +699,7 @@
"property": "プロパティ",
"properties": "プロパティ",
"parent": "親",
"page": "ページ",
"remove": "削除",
"archiving": "アーカイブ中",
"archive": "アーカイブ",

View file

@ -697,6 +697,7 @@
"property": "Свойство",
"properties": "Свойства",
"parent": "Родительский",
"page": "Пейдж",
"remove": "Удалить",
"archiving": "Архивация",
"archive": "Архивировать",

View file

@ -699,6 +699,7 @@
"property": "属性",
"properties": "属性",
"parent": "父项",
"page": "页面",
"remove": "移除",
"archiving": "归档中",
"archive": "归档",

View file

@ -37,7 +37,7 @@ const PEEK_OPTIONS: { key: TPeekModes; icon: any; i18n_title: string }[] = [
{
key: "side-peek",
icon: SidePanelIcon,
i18n_title: "common.side_peek ",
i18n_title: "common.side_peek",
},
{
key: "modal",

View file

@ -323,7 +323,7 @@ export const ModuleAnalyticsSidebar: React.FC<Props> = observer((props) => {
{isInArchivableGroup ? (
<div className="flex items-center gap-2">
<ArchiveIcon className="h-3 w-3" />
{t("archive_module")}
{t("project_module.archive_module")}
</div>
) : (
<div className="flex items-start gap-2">
@ -342,7 +342,7 @@ export const ModuleAnalyticsSidebar: React.FC<Props> = observer((props) => {
<CustomMenu.MenuItem onClick={handleRestoreModule}>
<span className="flex items-center justify-start gap-2">
<ArchiveRestoreIcon className="h-3 w-3" />
<span>{t("restore_module")}</span>
<span>{t("project_module.restore_module")}</span>
</span>
</CustomMenu.MenuItem>
)}