Update CM trads

Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
soupette 2020-09-03 15:38:33 +02:00 committed by Pierre Noël
parent 3a21b38c50
commit 296d26c46b
27 changed files with 13 additions and 94 deletions

View File

@ -39,10 +39,7 @@ const PopupForm = ({
<HeaderModal> <HeaderModal>
<section> <section>
<HeaderModalTitle style={{ textTransform: 'none' }}> <HeaderModalTitle style={{ textTransform: 'none' }}>
<AttributeIcon <AttributeIcon type={getAttrType()} style={{ margin: 'auto 20px auto 0' }} />
type={getAttrType()}
style={{ margin: 'auto 20px auto 0' }}
/>
<FormattedMessage id={headerId} /> <FormattedMessage id={headerId} />
</HeaderModalTitle> </HeaderModalTitle>
</section> </section>
@ -60,7 +57,7 @@ const PopupForm = ({
<ModalFooter> <ModalFooter>
<section> <section>
<Button onClick={onToggle} color="cancel"> <Button onClick={onToggle} color="cancel">
<FormattedMessage id="components.popUpWarning.button.cancel" /> <FormattedMessage id="app.components.Button.cancel" />
</Button> </Button>
<Button type="submit" color="success"> <Button type="submit" color="success">
<FormattedMessage id="form.button.done" /> <FormattedMessage id="form.button.done" />

View File

@ -48,7 +48,7 @@ const SettingsViewWrapper = ({
color: 'cancel', color: 'cancel',
onClick: toggleWarningCancel, onClick: toggleWarningCancel,
label: formatMessage({ label: formatMessage({
id: `${pluginId}.popUpWarning.button.cancel`, id: 'app.components.Button.reset',
}), }),
type: 'button', type: 'button',
disabled: isEqual(modifiedData, initialData), disabled: isEqual(modifiedData, initialData),
@ -194,10 +194,7 @@ const SettingsViewWrapper = ({
isOpen={showWarningCancel} isOpen={showWarningCancel}
toggleModal={toggleWarningCancel} toggleModal={toggleWarningCancel}
content={{ content={{
title: `${pluginId}.popUpWarning.title`,
message: `${pluginId}.popUpWarning.warning.cancelAllSettings`, message: `${pluginId}.popUpWarning.warning.cancelAllSettings`,
cancel: `${pluginId}.popUpWarning.button.cancel`,
confirm: `${pluginId}.popUpWarning.button.confirm`,
}} }}
popUpWarningType="danger" popUpWarningType="danger"
onConfirm={() => { onConfirm={() => {
@ -209,10 +206,7 @@ const SettingsViewWrapper = ({
isOpen={showWarningSubmit} isOpen={showWarningSubmit}
toggleModal={toggleWarningSubmit} toggleModal={toggleWarningSubmit}
content={{ content={{
title: `${pluginId}.popUpWarning.title`,
message: `${pluginId}.popUpWarning.warning.updateAllSettings`, message: `${pluginId}.popUpWarning.warning.updateAllSettings`,
cancel: `${pluginId}.popUpWarning.button.cancel`,
confirm: `${pluginId}.popUpWarning.button.confirm`,
}} }}
popUpWarningType="danger" popUpWarningType="danger"
onConfirm={async () => { onConfirm={async () => {

View File

@ -93,8 +93,7 @@ const DeleteLink = ({ canDelete, clearData, dataId, isCreatingEntry, isSingleTyp
isOpen={showWarningDelete} isOpen={showWarningDelete}
toggleModal={toggleWarningDelete} toggleModal={toggleWarningDelete}
content={{ content={{
title: `${pluginId}.popUpWarning.title`, message: getTrad('popUpWarning.bodyMessage.contentType.delete'),
message: `${pluginId}.popUpWarning.bodyMessage.contentType.delete`,
}} }}
popUpWarningType="danger" popUpWarningType="danger"
onConfirm={handleConfirmDelete} onConfirm={handleConfirmDelete}

View File

@ -206,7 +206,7 @@ const Header = ({
const buttonCancelLabel = useMemo( const buttonCancelLabel = useMemo(
() => () =>
formatMessage({ formatMessage({
id: getTrad('popUpwarning.warning.has-draft-relations.button-cancel'), id: 'components.popUpWarning.button.cancel',
}), }),
[formatMessage] [formatMessage]
); );
@ -225,11 +225,8 @@ const Header = ({
isOpen={showWarningUnpublish} isOpen={showWarningUnpublish}
toggleModal={toggleWarningPublish} toggleModal={toggleWarningPublish}
content={{ content={{
title: getTrad('popUpWarning.title'),
message: getTrad('popUpWarning.warning.unpublish'), message: getTrad('popUpWarning.warning.unpublish'),
secondMessage: getTrad('popUpWarning.warning.unpublish-question'), secondMessage: getTrad('popUpWarning.warning.unpublish-question'),
cancel: getTrad('popUpWarning.button.cancel'),
confirm: getTrad('popUpWarning.button.confirm'),
}} }}
popUpWarningType="danger" popUpWarningType="danger"
onConfirm={handleConfirmUnpublish} onConfirm={handleConfirmUnpublish}
@ -242,7 +239,7 @@ const Header = ({
> >
<PopUpWarningHeader <PopUpWarningHeader
onClick={toggleWarningDraftRelation} onClick={toggleWarningDraftRelation}
title={getTrad('popUpWarning.title')} title="components.popUpWarning.title"
/> />
<PopUpWarningBody> <PopUpWarningBody>
<PopUpWarningIcon type="danger" /> <PopUpWarningIcon type="danger" />

View File

@ -608,10 +608,7 @@ function ListView({
isOpen={showWarningDelete} isOpen={showWarningDelete}
toggleModal={toggleModalDelete} toggleModal={toggleModalDelete}
content={{ content={{
title: `${pluginId}.popUpWarning.title`, message: getTrad('popUpWarning.bodyMessage.contentType.delete'),
message: `${pluginId}.popUpWarning.bodyMessage.contentType.delete`,
cancel: `${pluginId}.popUpWarning.button.cancel`,
confirm: `${pluginId}.popUpWarning.button.confirm`,
}} }}
onConfirm={handleConfirmDeleteData} onConfirm={handleConfirmDeleteData}
popUpWarningType="danger" popUpWarningType="danger"
@ -622,12 +619,11 @@ function ListView({
isOpen={showWarningDeleteAll} isOpen={showWarningDeleteAll}
toggleModal={toggleModalDeleteAll} toggleModal={toggleModalDeleteAll}
content={{ content={{
title: `${pluginId}.popUpWarning.title`, message: getTrad(
message: `${pluginId}.popUpWarning.bodyMessage.contentType.delete${ `popUpWarning.bodyMessage.contentType.delete${
entriesToDelete.length > 1 ? '.all' : '' entriesToDelete.length > 1 ? '.all' : ''
}`, }`
cancel: `${pluginId}.popUpWarning.button.cancel`, ),
confirm: `${pluginId}.popUpWarning.button.confirm`,
}} }}
popUpWarningType="danger" popUpWarningType="danger"
onConfirm={handleConfirmDeleteAllData} onConfirm={handleConfirmDeleteAllData}

View File

@ -87,9 +87,6 @@
"plugin.description.short": "طريقة سريعة لمشاهدة وتحرير وحذف البيانات في قاعدة البيانات الخاصة بك.", "plugin.description.short": "طريقة سريعة لمشاهدة وتحرير وحذف البيانات في قاعدة البيانات الخاصة بك.",
"popUpWarning.bodyMessage.contentType.delete": "هل انت متأكد من حذف هذا المدخل؟", "popUpWarning.bodyMessage.contentType.delete": "هل انت متأكد من حذف هذا المدخل؟",
"popUpWarning.bodyMessage.contentType.delete.all": "هل أنت متأكد من أنك تريد حذف هذه الأدخالات؟", "popUpWarning.bodyMessage.contentType.delete.all": "هل أنت متأكد من أنك تريد حذف هذه الأدخالات؟",
"popUpWarning.button.cancel": "الغاء",
"popUpWarning.button.confirm": "تأكيد",
"popUpWarning.title": "الرجاء التأكيد",
"popUpWarning.warning.cancelAllSettings": "هل أنت متأكد من أنك تريد إلغاء التعديلاتك؟", "popUpWarning.warning.cancelAllSettings": "هل أنت متأكد من أنك تريد إلغاء التعديلاتك؟",
"popUpWarning.warning.updateAllSettings": "سيؤدي ذلك إلى تعديل جميع إعداداتك", "popUpWarning.warning.updateAllSettings": "سيؤدي ذلك إلى تعديل جميع إعداداتك",
"success.record.delete": "حُذف", "success.record.delete": "حُذف",

View File

@ -123,9 +123,6 @@
"plugin.description.short": "Zásuvný modul pro zobrazení, úpravu a mazání dat ve vaší databázi.", "plugin.description.short": "Zásuvný modul pro zobrazení, úpravu a mazání dat ve vaší databázi.",
"popUpWarning.bodyMessage.contentType.delete": "Jste si jisti že chcete odstranit tento záznam?", "popUpWarning.bodyMessage.contentType.delete": "Jste si jisti že chcete odstranit tento záznam?",
"popUpWarning.bodyMessage.contentType.delete.all": "Jste si jisti, že chcete odstranit tyto záznamy?", "popUpWarning.bodyMessage.contentType.delete.all": "Jste si jisti, že chcete odstranit tyto záznamy?",
"popUpWarning.button.cancel": "Zrušit",
"popUpWarning.button.confirm": "Potvrdit",
"popUpWarning.title": "Prosím potvrďte",
"popUpWarning.warning.cancelAllSettings": "Jste si jisti, že chcete zrušit všechny vaše úpravy?", "popUpWarning.warning.cancelAllSettings": "Jste si jisti, že chcete zrušit všechny vaše úpravy?",
"popUpWarning.warning.updateAllSettings": "Toto změní všechna vaše nastavení", "popUpWarning.warning.updateAllSettings": "Toto změní všechna vaše nastavení",
"success.record.delete": "Odstraněno", "success.record.delete": "Odstraněno",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Greife blitzschnell auf alle Daten in der Datenbank zu und änder sie.", "plugin.description.short": "Greife blitzschnell auf alle Daten in der Datenbank zu und änder sie.",
"popUpWarning.bodyMessage.contentType.delete": "Bist du sicher, dass du diesen Inhaltstyp löschen willst?", "popUpWarning.bodyMessage.contentType.delete": "Bist du sicher, dass du diesen Inhaltstyp löschen willst?",
"popUpWarning.bodyMessage.contentType.delete.all": "Bist du sicher, dass du diese Einträge löschen willst?", "popUpWarning.bodyMessage.contentType.delete.all": "Bist du sicher, dass du diese Einträge löschen willst?",
"popUpWarning.button.cancel": "Abbrechen",
"popUpWarning.button.confirm": "Bestätigen",
"popUpWarning.title": "Bitte bestätigen",
"popUpWarning.warning.cancelAllSettings": "Bist du sicher, dass du deine Änderungen rückgängig machen willst?", "popUpWarning.warning.cancelAllSettings": "Bist du sicher, dass du deine Änderungen rückgängig machen willst?",
"popUpWarning.warning.updateAllSettings": "Dadurch werden alle deine Einstellungen geändert.", "popUpWarning.warning.updateAllSettings": "Dadurch werden alle deine Einstellungen geändert.",
"success.record.delete": "Gelöscht", "success.record.delete": "Gelöscht",

View File

@ -157,15 +157,11 @@
"plugin.description.short": "Quick way to see, edit and delete the data in your database.", "plugin.description.short": "Quick way to see, edit and delete the data in your database.",
"popUpWarning.bodyMessage.contentType.delete": "Are you sure you want to delete this entry?", "popUpWarning.bodyMessage.contentType.delete": "Are you sure you want to delete this entry?",
"popUpWarning.bodyMessage.contentType.delete.all": "Are you sure you want to delete theses entries?", "popUpWarning.bodyMessage.contentType.delete.all": "Are you sure you want to delete theses entries?",
"popUpWarning.button.cancel": "Cancel",
"popUpWarning.button.confirm": "Confirm",
"popUpWarning.title": "Please confirm",
"popUpWarning.warning.cancelAllSettings": "Are you sure you want to cancel your modifications?", "popUpWarning.warning.cancelAllSettings": "Are you sure you want to cancel your modifications?",
"popUpWarning.warning.publish-question": "Do you still want to publish it?", "popUpWarning.warning.publish-question": "Do you still want to publish it?",
"popUpWarning.warning.unpublish": "Unpublish this content will automatically change it to a draft.", "popUpWarning.warning.unpublish": "Unpublish this content will automatically change it to a draft.",
"popUpWarning.warning.unpublish-question": "Are you sure you want to unpublish it?", "popUpWarning.warning.unpublish-question": "Are you sure you want to unpublish it?",
"popUpWarning.warning.updateAllSettings": "This will modify all your settings", "popUpWarning.warning.updateAllSettings": "This will modify all your settings",
"popUpwarning.warning.has-draft-relations.button-cancel": "No, cancel",
"popUpwarning.warning.has-draft-relations.button-confirm": "Yes, publish", "popUpwarning.warning.has-draft-relations.button-confirm": "Yes, publish",
"popUpwarning.warning.has-draft-relations.first-message": "not published yet.", "popUpwarning.warning.has-draft-relations.first-message": "not published yet.",
"popUpwarning.warning.has-draft-relations.message.bold-text.plural": "{count} of your content relations are", "popUpwarning.warning.has-draft-relations.message.bold-text.plural": "{count} of your content relations are",

View File

@ -95,9 +95,6 @@
"plugin.description.short": "Ver, editar y eliminar información de su base de datos de manera rápida.", "plugin.description.short": "Ver, editar y eliminar información de su base de datos de manera rápida.",
"popUpWarning.bodyMessage.contentType.delete": "¿Está seguro de querer eliminar este registro?", "popUpWarning.bodyMessage.contentType.delete": "¿Está seguro de querer eliminar este registro?",
"popUpWarning.bodyMessage.contentType.delete.all": "¿Está seguro de querer eliminar estos registros?", "popUpWarning.bodyMessage.contentType.delete.all": "¿Está seguro de querer eliminar estos registros?",
"popUpWarning.button.cancel": "Cancelar",
"popUpWarning.button.confirm": "Confirmar",
"popUpWarning.title": "Favor de confirmar",
"popUpWarning.warning.cancelAllSettings": "¿Está seguro de querer cancelar sus cambios?", "popUpWarning.warning.cancelAllSettings": "¿Está seguro de querer cancelar sus cambios?",
"popUpWarning.warning.updateAllSettings": "Esto modificará todas sus configuraciones", "popUpWarning.warning.updateAllSettings": "Esto modificará todas sus configuraciones",
"success.record.delete": "Eliminado", "success.record.delete": "Eliminado",

View File

@ -137,9 +137,6 @@
"plugin.description.short": "Visualisez, modifiez et supprimez les données de votre base de données.", "plugin.description.short": "Visualisez, modifiez et supprimez les données de votre base de données.",
"popUpWarning.bodyMessage.contentType.delete": "Êtes-vous sûr de vouloir supprimer cette entrée ?", "popUpWarning.bodyMessage.contentType.delete": "Êtes-vous sûr de vouloir supprimer cette entrée ?",
"popUpWarning.bodyMessage.contentType.delete.all": "Êtes-vous sûr de vouloir supprimer ces entrées ?", "popUpWarning.bodyMessage.contentType.delete.all": "Êtes-vous sûr de vouloir supprimer ces entrées ?",
"popUpWarning.button.cancel": "Annuler",
"popUpWarning.button.confirm": "Confirmer",
"popUpWarning.title": "Confirmation requise",
"popUpWarning.warning.cancelAllSettings": "Êtes-vous sûr de vouloir abandonner vos modifications ?", "popUpWarning.warning.cancelAllSettings": "Êtes-vous sûr de vouloir abandonner vos modifications ?",
"popUpWarning.warning.updateAllSettings": "Cela modifiera tous vos précédents paramètres.", "popUpWarning.warning.updateAllSettings": "Cela modifiera tous vos précédents paramètres.",
"success.record.delete": "Supprimé", "success.record.delete": "Supprimé",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Veloce modo di vedere, modificare e cancellare i dati presenti nel database.", "plugin.description.short": "Veloce modo di vedere, modificare e cancellare i dati presenti nel database.",
"popUpWarning.bodyMessage.contentType.delete": "Sei sicuro di voler cancellare questa voce?", "popUpWarning.bodyMessage.contentType.delete": "Sei sicuro di voler cancellare questa voce?",
"popUpWarning.bodyMessage.contentType.delete.all": "Sei sicuro di voler eliminare queste voci?", "popUpWarning.bodyMessage.contentType.delete.all": "Sei sicuro di voler eliminare queste voci?",
"popUpWarning.button.cancel": "Annulla",
"popUpWarning.button.confirm": "Conferma",
"popUpWarning.title": "Si prega di confermare",
"popUpWarning.warning.cancelAllSettings": "Sei sicuro di voler cancellare le tue modifiche?", "popUpWarning.warning.cancelAllSettings": "Sei sicuro di voler cancellare le tue modifiche?",
"popUpWarning.warning.updateAllSettings": "Questa operazione modificherà tutte le tue impostazioni", "popUpWarning.warning.updateAllSettings": "Questa operazione modificherà tutte le tue impostazioni",
"success.record.delete": "Eliminato", "success.record.delete": "Eliminato",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "データベース内のデータを表示、編集、削除するための方法。", "plugin.description.short": "データベース内のデータを表示、編集、削除するための方法。",
"popUpWarning.bodyMessage.contentType.delete": "このエントリを削除してもよろしいですか?", "popUpWarning.bodyMessage.contentType.delete": "このエントリを削除してもよろしいですか?",
"popUpWarning.bodyMessage.contentType.delete.all": "これらのエントリを削除してもよろしいですか?", "popUpWarning.bodyMessage.contentType.delete.all": "これらのエントリを削除してもよろしいですか?",
"popUpWarning.button.cancel": "キャンセル",
"popUpWarning.button.confirm": "確認",
"popUpWarning.title": "確認してください",
"popUpWarning.warning.cancelAllSettings": "変更をキャンセルしてもよろしいですか?", "popUpWarning.warning.cancelAllSettings": "変更をキャンセルしてもよろしいですか?",
"popUpWarning.warning.updateAllSettings": "これにより、すべての設定が変更されます", "popUpWarning.warning.updateAllSettings": "これにより、すべての設定が変更されます",
"success.record.delete": "削除", "success.record.delete": "削除",

View File

@ -103,9 +103,6 @@
"plugin.description.short": "데이터를 쉽게 확인 하고 수정, 삭제 할 수 있습니다.", "plugin.description.short": "데이터를 쉽게 확인 하고 수정, 삭제 할 수 있습니다.",
"popUpWarning.bodyMessage.contentType.delete": "삭제하시겠습니까?", "popUpWarning.bodyMessage.contentType.delete": "삭제하시겠습니까?",
"popUpWarning.bodyMessage.contentType.delete.all": "모두 삭제하시겠습니까?", "popUpWarning.bodyMessage.contentType.delete.all": "모두 삭제하시겠습니까?",
"popUpWarning.button.cancel": "취소",
"popUpWarning.button.confirm": "확인",
"popUpWarning.title": "확인",
"popUpWarning.warning.cancelAllSettings": "수정 사항을 취소하시겠습니까?", "popUpWarning.warning.cancelAllSettings": "수정 사항을 취소하시겠습니까?",
"popUpWarning.warning.updateAllSettings": "모든 설정에 적용됩니다.", "popUpWarning.warning.updateAllSettings": "모든 설정에 적용됩니다.",
"success.record.delete": "삭제", "success.record.delete": "삭제",

View File

@ -141,9 +141,6 @@
"plugin.description.short": "Cara cepat untuk melihat, mengedit dan menghapus data dalam pangkalan data anda.", "plugin.description.short": "Cara cepat untuk melihat, mengedit dan menghapus data dalam pangkalan data anda.",
"popUpWarning.bodyMessage.contentType.delete": "Adakah anda pasti mahu memadam entri ini?", "popUpWarning.bodyMessage.contentType.delete": "Adakah anda pasti mahu memadam entri ini?",
"popUpWarning.bodyMessage.contentType.delete.all": "Adakah anda pasti mahu memadam entri ini?", "popUpWarning.bodyMessage.contentType.delete.all": "Adakah anda pasti mahu memadam entri ini?",
"popUpWarning.button.cancel": "Batal",
"popUpWarning.button.confirm": "Sahkan",
"popUpWarning.title": "Sila sahkan",
"popUpWarning.warning.cancelAllSettings": "Adakah anda pasti mahu membatalkan pengubahsuaian anda?", "popUpWarning.warning.cancelAllSettings": "Adakah anda pasti mahu membatalkan pengubahsuaian anda?",
"popUpWarning.warning.updateAllSettings": "Ini akan mengubah semua tetapan anda", "popUpWarning.warning.updateAllSettings": "Ini akan mengubah semua tetapan anda",
"success.record.delete": "Telah Dipadam", "success.record.delete": "Telah Dipadam",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Snelle manier om data te zien, aan te passen en verwijderen in je database.", "plugin.description.short": "Snelle manier om data te zien, aan te passen en verwijderen in je database.",
"popUpWarning.bodyMessage.contentType.delete": "Weet je zeker dat je dit item wilt verwijderen?", "popUpWarning.bodyMessage.contentType.delete": "Weet je zeker dat je dit item wilt verwijderen?",
"popUpWarning.bodyMessage.contentType.delete.all": "Weet je zeker dat je deze items wilt verwijderen?", "popUpWarning.bodyMessage.contentType.delete.all": "Weet je zeker dat je deze items wilt verwijderen?",
"popUpWarning.button.cancel": "Annuleren",
"popUpWarning.button.confirm": "Akkoord",
"popUpWarning.title": "Ga a.u.b. akkoord",
"popUpWarning.warning.cancelAllSettings": "Weet je zeker dat je je wijzigingen wilt annuleren?", "popUpWarning.warning.cancelAllSettings": "Weet je zeker dat je je wijzigingen wilt annuleren?",
"popUpWarning.warning.updateAllSettings": "Dit zal al je instellingen aanpassen", "popUpWarning.warning.updateAllSettings": "Dit zal al je instellingen aanpassen",
"success.record.delete": "Verwijderd", "success.record.delete": "Verwijderd",

View File

@ -135,9 +135,6 @@
"plugin.description.short": "Szybki sposób na przeglądanie, zmianę i usuwanie elementów z twojej bazy danych.", "plugin.description.short": "Szybki sposób na przeglądanie, zmianę i usuwanie elementów z twojej bazy danych.",
"popUpWarning.bodyMessage.contentType.delete": "Czy na pewno chcesz usunąć ten wpis?", "popUpWarning.bodyMessage.contentType.delete": "Czy na pewno chcesz usunąć ten wpis?",
"popUpWarning.bodyMessage.contentType.delete.all": "Czy na pewno chcesz usunąć te wpisy?", "popUpWarning.bodyMessage.contentType.delete.all": "Czy na pewno chcesz usunąć te wpisy?",
"popUpWarning.button.cancel": "Nie",
"popUpWarning.button.confirm": "Tak",
"popUpWarning.title": "Potwierdzenie",
"popUpWarning.warning.cancelAllSettings": "Jesteś pewnien że chcesz skasować wszystkie swoje zmiany?", "popUpWarning.warning.cancelAllSettings": "Jesteś pewnien że chcesz skasować wszystkie swoje zmiany?",
"popUpWarning.warning.updateAllSettings": "Ta operacja zmieni twoje ustawienia", "popUpWarning.warning.updateAllSettings": "Ta operacja zmieni twoje ustawienia",
"success.record.delete": "Usunięto", "success.record.delete": "Usunięto",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Maneira rápida de ver, editar e excluir os dados em seu banco de dados.", "plugin.description.short": "Maneira rápida de ver, editar e excluir os dados em seu banco de dados.",
"popUpWarning.bodyMessage.contentType.delete": "Tem a certeza de que deseja remover este registro?", "popUpWarning.bodyMessage.contentType.delete": "Tem a certeza de que deseja remover este registro?",
"popUpWarning.bodyMessage.contentType.delete.all": "Tem a certeza de que deseja remover estes registros?", "popUpWarning.bodyMessage.contentType.delete.all": "Tem a certeza de que deseja remover estes registros?",
"popUpWarning.button.cancel": "Cancelar",
"popUpWarning.button.confirm": "Confirmar",
"popUpWarning.title": "Por favor, confirme",
"popUpWarning.warning.cancelAllSettings": "Você tem certeza de que deseja cancelar suas modificações?", "popUpWarning.warning.cancelAllSettings": "Você tem certeza de que deseja cancelar suas modificações?",
"popUpWarning.warning.updateAllSettings": "Isto irá modificar todas as suas configurações", "popUpWarning.warning.updateAllSettings": "Isto irá modificar todas as suas configurações",
"success.record.delete": "Removido", "success.record.delete": "Removido",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Maneira rápida de ver, editar e excluir os dados em sua base de dados.", "plugin.description.short": "Maneira rápida de ver, editar e excluir os dados em sua base de dados.",
"popUpWarning.bodyMessage.contentType.delete": "Tem a certeza de que pretende apagar esta entrada?", "popUpWarning.bodyMessage.contentType.delete": "Tem a certeza de que pretende apagar esta entrada?",
"popUpWarning.bodyMessage.contentType.delete.all": "Tem a certeza de que pretende apagar estas entradas?", "popUpWarning.bodyMessage.contentType.delete.all": "Tem a certeza de que pretende apagar estas entradas?",
"popUpWarning.button.cancel": "Cancelar",
"popUpWarning.button.confirm": "Confirmar",
"popUpWarning.title": "Por favor, confirme",
"popUpWarning.warning.cancelAllSettings": "Tem a certeza de que quer cancelar as alterações?", "popUpWarning.warning.cancelAllSettings": "Tem a certeza de que quer cancelar as alterações?",
"popUpWarning.warning.updateAllSettings": "Isto vai alterar todas as suas configurações", "popUpWarning.warning.updateAllSettings": "Isto vai alterar todas as suas configurações",
"success.record.delete": "Apagado", "success.record.delete": "Apagado",

View File

@ -90,9 +90,6 @@
"plugin.description.short": "Быстрый способ увидеть, отредактировать и удалить данные в вашей базе данных.", "plugin.description.short": "Быстрый способ увидеть, отредактировать и удалить данные в вашей базе данных.",
"popUpWarning.bodyMessage.contentType.delete": "Вы уверены, что хотите удалить эту запись?", "popUpWarning.bodyMessage.contentType.delete": "Вы уверены, что хотите удалить эту запись?",
"popUpWarning.bodyMessage.contentType.delete.all": "Вы уверенны, что хотите удалить эти записи?", "popUpWarning.bodyMessage.contentType.delete.all": "Вы уверенны, что хотите удалить эти записи?",
"popUpWarning.button.cancel": "Отменить",
"popUpWarning.button.confirm": "Подтвердить",
"popUpWarning.title": "Пожалуйста, подтвердите",
"popUpWarning.warning.cancelAllSettings": "Вы уверенны, что хотите отменить ваши изменения?", "popUpWarning.warning.cancelAllSettings": "Вы уверенны, что хотите отменить ваши изменения?",
"popUpWarning.warning.updateAllSettings": "Это изменит все ваши настройки", "popUpWarning.warning.updateAllSettings": "Это изменит все ваши настройки",
"success.record.delete": "Удалено", "success.record.delete": "Удалено",

View File

@ -144,9 +144,6 @@
"plugin.description.short": "Jednoduchý spôsob zobrazenia a úpravy dát v databáze.", "plugin.description.short": "Jednoduchý spôsob zobrazenia a úpravy dát v databáze.",
"popUpWarning.bodyMessage.contentType.delete": "Ste si istý, že chcete vymazať tento záznam?", "popUpWarning.bodyMessage.contentType.delete": "Ste si istý, že chcete vymazať tento záznam?",
"popUpWarning.bodyMessage.contentType.delete.all": "Ste si istý, že chcete vymazať tieto záznamy?", "popUpWarning.bodyMessage.contentType.delete.all": "Ste si istý, že chcete vymazať tieto záznamy?",
"popUpWarning.button.cancel": "Zrušit",
"popUpWarning.button.confirm": "Potvrdiť",
"popUpWarning.title": "Prosím potvrďte",
"popUpWarning.warning.cancelAllSettings": "Ste si istý, že chcete zrušiť vaše úpravy?", "popUpWarning.warning.cancelAllSettings": "Ste si istý, že chcete zrušiť vaše úpravy?",
"popUpWarning.warning.updateAllSettings": "Toto upraví všetky vaše nastavenia", "popUpWarning.warning.updateAllSettings": "Toto upraví všetky vaše nastavenia",
"success.record.delete": "Zmazané", "success.record.delete": "Zmazané",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "Veritabanındaki verileri görmek, düzenlemek ve silmek için hızlı bir yol.", "plugin.description.short": "Veritabanındaki verileri görmek, düzenlemek ve silmek için hızlı bir yol.",
"popUpWarning.bodyMessage.contentType.delete": "Bu kaydı silmek istediğinizden emin misiniz?", "popUpWarning.bodyMessage.contentType.delete": "Bu kaydı silmek istediğinizden emin misiniz?",
"popUpWarning.bodyMessage.contentType.delete.all": "Bu kayıtları silmek istediğinizden emin misiniz?", "popUpWarning.bodyMessage.contentType.delete.all": "Bu kayıtları silmek istediğinizden emin misiniz?",
"popUpWarning.button.cancel": "İptal",
"popUpWarning.button.confirm": "Onayla",
"popUpWarning.title": "Lütfen onaylayın",
"popUpWarning.warning.cancelAllSettings": "Değişikliklerinizi iptal etmek istediğinizden emin misiniz?", "popUpWarning.warning.cancelAllSettings": "Değişikliklerinizi iptal etmek istediğinizden emin misiniz?",
"popUpWarning.warning.updateAllSettings": "Bu bütün ayarlarınızı değiştirecektir", "popUpWarning.warning.updateAllSettings": "Bu bütün ayarlarınızı değiştirecektir",
"success.record.delete": "Silindi", "success.record.delete": "Silindi",

View File

@ -141,9 +141,6 @@
"plugin.description.short": "Швидкий спосіб перегляду, редагування та видалення даних у вашій базі даних.", "plugin.description.short": "Швидкий спосіб перегляду, редагування та видалення даних у вашій базі даних.",
"popUpWarning.bodyMessage.contentType.delete": "Ви впевнені що хочете видалити цей запис?", "popUpWarning.bodyMessage.contentType.delete": "Ви впевнені що хочете видалити цей запис?",
"popUpWarning.bodyMessage.contentType.delete.all": "Ви впевнені, що хочете видалити ці записи?", "popUpWarning.bodyMessage.contentType.delete.all": "Ви впевнені, що хочете видалити ці записи?",
"popUpWarning.button.cancel": "Скасувати",
"popUpWarning.button.confirm": "Підтвердити",
"popUpWarning.title": "Будь ласка, підтвердіть",
"popUpWarning.warning.cancelAllSettings": "Ви впевнені, що хочете скасувати свої зміни?", "popUpWarning.warning.cancelAllSettings": "Ви впевнені, що хочете скасувати свої зміни?",
"popUpWarning.warning.updateAllSettings": "Це змінить всі ваші налаштування", "popUpWarning.warning.updateAllSettings": "Це змінить всі ваші налаштування",
"success.record.delete": "Видалено", "success.record.delete": "Видалено",

View File

@ -103,9 +103,6 @@
"plugin.description.short": "Cách nhanh để xem, sửa và xoá dữ liệu trong cơ sở dữ liệu của bạn.", "plugin.description.short": "Cách nhanh để xem, sửa và xoá dữ liệu trong cơ sở dữ liệu của bạn.",
"popUpWarning.bodyMessage.contentType.delete": "Bạn có chắc là muốn xoá bản ghi này không?", "popUpWarning.bodyMessage.contentType.delete": "Bạn có chắc là muốn xoá bản ghi này không?",
"popUpWarning.bodyMessage.contentType.delete.all": "Bạn có chắc là muốn xoá các bản ghi này không?", "popUpWarning.bodyMessage.contentType.delete.all": "Bạn có chắc là muốn xoá các bản ghi này không?",
"popUpWarning.button.cancel": "Hủy bỏ",
"popUpWarning.button.confirm": "Xác nhận",
"popUpWarning.title": "Vui lòng xác nhận",
"popUpWarning.warning.cancelAllSettings": "Bạn có chắc là muốn hủy bỏ các thay đổi của bạn?", "popUpWarning.warning.cancelAllSettings": "Bạn có chắc là muốn hủy bỏ các thay đổi của bạn?",
"popUpWarning.warning.updateAllSettings": "Nó sẽ thay đổi tất cả cài đặt của bạn", "popUpWarning.warning.updateAllSettings": "Nó sẽ thay đổi tất cả cài đặt của bạn",
"success.record.delete": "Đã xoá", "success.record.delete": "Đã xoá",

View File

@ -126,9 +126,6 @@
"plugin.description.short": "快速查看、编辑和删除数据库中的数据。", "plugin.description.short": "快速查看、编辑和删除数据库中的数据。",
"popUpWarning.bodyMessage.contentType.delete": "确实要删除此条目吗?", "popUpWarning.bodyMessage.contentType.delete": "确实要删除此条目吗?",
"popUpWarning.bodyMessage.contentType.delete.all": "您确定要删除这些内容吗?", "popUpWarning.bodyMessage.contentType.delete.all": "您确定要删除这些内容吗?",
"popUpWarning.button.cancel": "取消",
"popUpWarning.button.confirm": "确认",
"popUpWarning.title": "请确认",
"popUpWarning.warning.cancelAllSettings": "您确定要放弃修改?", "popUpWarning.warning.cancelAllSettings": "您确定要放弃修改?",
"popUpWarning.warning.updateAllSettings": "这会修改您的设置", "popUpWarning.warning.updateAllSettings": "这会修改您的设置",
"success.record.delete": "已删除", "success.record.delete": "已删除",

View File

@ -87,9 +87,6 @@
"plugin.description.short": "快速瀏覽、編輯、刪除資料庫的資料", "plugin.description.short": "快速瀏覽、編輯、刪除資料庫的資料",
"popUpWarning.bodyMessage.contentType.delete": "您確定要刪除這筆資料嗎?", "popUpWarning.bodyMessage.contentType.delete": "您確定要刪除這筆資料嗎?",
"popUpWarning.bodyMessage.contentType.delete.all": "您確定要刪除這些資料嗎?", "popUpWarning.bodyMessage.contentType.delete.all": "您確定要刪除這些資料嗎?",
"popUpWarning.button.cancel": "取消",
"popUpWarning.button.confirm": "確認",
"popUpWarning.title": "請確認",
"popUpWarning.warning.cancelAllSettings": "您確定要放棄變更?", "popUpWarning.warning.cancelAllSettings": "您確定要放棄變更?",
"popUpWarning.warning.updateAllSettings": "這會更動您的設定", "popUpWarning.warning.updateAllSettings": "這會更動您的設定",
"success.record.delete": "已刪除", "success.record.delete": "已刪除",

View File

@ -1359,7 +1359,7 @@ const FormModal = () => {
<section style={{ alignItems: 'center' }}> <section style={{ alignItems: 'center' }}>
<Button type="button" color="cancel" onClick={handleToggle}> <Button type="button" color="cancel" onClick={handleToggle}>
{formatMessage({ {formatMessage({
id: 'components.popUpWarning.button.cancel', id: 'app.components.Button.cancel',
})} })}
</Button> </Button>
<div> <div>