Skip to content

Commit

Permalink
Merge branch 'master' into feat/upgrade-sdk-7.4.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala committed Apr 16, 2024
2 parents c07cc13 + d5a5a37 commit 3d7aa73
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/components/ItemEditorPage/RightPanel/RightPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default class RightPanel extends React.PureComponent<Props, State> {
handleAllowVrmExport = (_event: React.FormEvent, { checked }: CheckboxProps) => {
const data = {
...this.state.data,
blockVrmExport: checked
blockVrmExport: !checked
} as WearableData
this.setState({ data, isDirty: this.isDirty({ data }) })
}
Expand Down Expand Up @@ -650,10 +650,10 @@ export default class RightPanel extends React.PureComponent<Props, State> {
toggle
label={
(data as WearableData)?.blockVrmExport
? t('item_editor.right_panel.copyright.enabled')
: t('item_editor.right_panel.copyright.disabled')
? t('item_editor.right_panel.copyright.disabled')
: t('item_editor.right_panel.copyright.enabled')
}
checked={(data as WearableData)?.blockVrmExport}
checked={!(data as WearableData)?.blockVrmExport}
onChange={this.handleAllowVrmExport}
aria-label={t('item_editor.right_panel.copyright.vrm_export')}
/>
Expand Down
6 changes: 3 additions & 3 deletions src/modules/translation/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1930,11 +1930,11 @@
"request_for_changes_explanation": "If you want to make changes to {name} please ask a committee member for authorization in the forum",
"required_permissions": "Permissions",
"copyright": {
"title": "Copyright",
"vrm_export": "VRM Exportation Protection",
"title": "VRM Export Permission",
"vrm_export": "Allow VRM Export",
"enabled": "Enabled",
"disabled": "Disabled",
"info": "VRM Exportation Protection"
"info": "Nice Wearable! Allow owners of your item to include it in VRM Avatar Exports so they can show it off outside of Decentraland."
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/modules/translation/languages/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -1950,11 +1950,11 @@
"request_for_changes_explanation": "Si desea realizar cambios en {name}, solicite autorización a un miembro del comité en el foro",
"required_permissions": "Permisos",
"copyright": {
"title": "Derechos de autor",
"vrm_export": "Protección de exportación de VRM",
"title": "Permiso de exportación de VRM",
"vrm_export": "Permitir la exportación de VRM",
"enabled": "Activada",
"disabled": "Desactivada",
"info": "Protección de exportación de VRM"
"info": "¡Bonito wearable! Permitir que los propietarios de su artículo lo incluyan en las exportaciones de avatar de VRM para que puedan mostrarlo fuera de Decentraland."
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/modules/translation/languages/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -1933,11 +1933,11 @@
"request_for_changes_explanation": "如果您想更改{name},请在论坛中请求委员会成员的授权",
"required_permissions": "权限",
"copyright": {
"title": "版权",
"vrm_export": "VRM出口保护",
"title": "VRM出口许可",
"vrm_export": "允许VRM导出",
"enabled": "启用",
"disabled": "禁用",
"info": "VRM出口保护"
"info": "漂亮的可穿戴!允许您的物品的所有者将其包含在VRM Avatar出口中,以便他们可以在分散的外部出现。"
}
}
},
Expand Down

0 comments on commit 3d7aa73

Please sign in to comment.