Skip to content

Commit

Permalink
fix: remove typo from translation keys (#noissue)
Browse files Browse the repository at this point in the history
  • Loading branch information
dziudek committed Jun 28, 2022
1 parent f218285 commit acd0d0d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/back-end/events/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class DeployEvents {

if (data.result && data.result[0] && data.result[0].message) {
errorTitle = {
translation: 'core.rendering.renderingProcessFiled'
translation: 'core.rendering.renderingProcessFailed'
};
errorDesc = data.result[0].message + "\n\n" + data.result[0].desc;
}
Expand Down
4 changes: 2 additions & 2 deletions app/back-end/events/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class PreviewEvents {

if (data && data.result && data.result[0] && data.result[0].message) {
errorTitle = {
translation: 'core.rendering.renderingProcessFiled'
translation: 'core.rendering.renderingProcessFailed'
};
errorDesc = data.result[0].message + "\n\n" + data.result[0].desc;
}
Expand Down Expand Up @@ -127,7 +127,7 @@ class PreviewEvents {

if (data.result && data.result[0] && data.result[0].message) {
errorTitle = {
translation: 'core.rendering.renderingProcessFiled'
translation: 'core.rendering.renderingProcessFailed'
};
errorDesc = data.result[0].message + "\n\n" + data.result[0].desc;
}
Expand Down
10 changes: 5 additions & 5 deletions app/default-files/default-languages/en-gb/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"rendering": {
"renderingProcessCrashed": "Rendering process crashed",
"renderingProcessCrashedMsg": "For more information, check the rendering-errors.log and rendering-process.log files under Tools -> Log viewer.",
"renderingProcessFiled": "Rendering process failed"
"renderingProcessFailed": "Rendering process failed"
},
"server": {
"branchDoesNotExist": "Selected branch does not exist.",
Expand Down Expand Up @@ -275,16 +275,16 @@
"removeFilesConfirmMsg": "Do you really want to remove the selected files? This action cannot be undone.",
"removeFilesSuccessMsg": "Selected files have been removed",
"rename": "Rename",
"renameBackupConfrimLabel": "Rename file",
"renameBackupConfrimMsg": "Please specify a new backup filename:",
"renameBackupConfirmLabel": "Rename file",
"renameBackupConfirmMsg": "Please specify a new backup filename:",
"renameBackupErrorMsg": "An error occurred while renaming the selected backup file. Please try again.",
"renameBackupNameEmptyMsg": "The backup filename cannot be empty. Please try again.",
"renameBackupNameInUseMsg": "The specified name is in use by another backup file. Please try again.",
"renameBackupSameNameMsg": "The specified name is the same as the old name. Please try again.",
"renameBackupSuccessMsg": "The backup has been successfully renamed.",
"restore": "Restore",
"restoreBackupConfrimLabel": "Restore backup",
"restoreBackupConfrimMsg": "Do you really want to restore the selected backup? Existing files will be overwritten.",
"restoreBackupConfirmLabel": "Restore backup",
"restoreBackupConfirmMsg": "Do you really want to restore the selected backup? Existing files will be overwritten.",
"restoreBackupErrorMsg": "An error occurred while restoring the selected backup file: ",
"restoreBackupSuccessMsg": "The website has been successfully restored.",
"rootDirectory": "root directory",
Expand Down
10 changes: 5 additions & 5 deletions app/default-files/default-languages/pl/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"rendering": {
"renderingProcessCrashed": "Proces renderowania uległ awarii",
"renderingProcessCrashedMsg": "Sprawdż pliki rendering-errors.log i rendering-process.log pod Narzędzia -> Przeglądarka logów.",
"renderingProcessFiled": "Proces renderowania nie powiódł się"
"renderingProcessFailed": "Proces renderowania nie powiódł się"
},
"server": {
"branchDoesNotExist": "Wybrana gałąź nie istnieje.",
Expand Down Expand Up @@ -275,16 +275,16 @@
"removeFilesConfirmMsg": "Czy na pewno chcesz usunąć wybrane pliki? Nie można tego cofnąć.",
"removeFilesSuccessMsg": "Wybrane pliki zostały usunięte",
"rename": "Zmień nazwę",
"renameBackupConfrimLabel": "Zmień nazwę pliku",
"renameBackupConfrimMsg": "Proszę podać nową nazwę pliku kopii zapasowej:",
"renameBackupConfirmLabel": "Zmień nazwę pliku",
"renameBackupConfirmMsg": "Proszę podać nową nazwę pliku kopii zapasowej:",
"renameBackupErrorMsg": "Wystąpił błąd podczas zmiany nazwy wybranego pliku kopii zapasowej. Proszę spóbować ponownie.",
"renameBackupNameEmptyMsg": "Nazwa pliku kopii zapasowej nie może być pusta. Proszę spóbować ponownie.",
"renameBackupNameInUseMsg": "Podana nazwa jest używana przez inny plik kopii zapasowej. Proszę spóbować ponownie.",
"renameBackupSameNameMsg": "Podana nazwa jest taka sama jak stara nazwa. Proszę spóbować ponownie.",
"renameBackupSuccessMsg": "Nazwa kopii zapasowej została pomyślnie zmieniona.",
"restore": "Przywróć",
"restoreBackupConfrimLabel": "Przywróć kopię zapasową",
"restoreBackupConfrimMsg": "Czy na pewno chcesz przywrócić wybraną kopię zapasową? Istniejące pliki zostaną nadpisane.",
"restoreBackupConfirmLabel": "Przywróć kopię zapasową",
"restoreBackupConfirmMsg": "Czy na pewno chcesz przywrócić wybraną kopię zapasową? Istniejące pliki zostaną nadpisane.",
"restoreBackupErrorMsg": "Wystąpił błąd podczas przywracania wybranego pliku kopii zapasowej: ",
"restoreBackupSuccessMsg": "Strona została pomyślnie przywrócona.",
"rootDirectory": "katalog główny",
Expand Down
8 changes: 4 additions & 4 deletions app/src/components/Backups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ export default {
this.$bus.$emit('confirm-display', {
hasInput: true,
message: this.$t('file.renameBackupConfrimMsg'),
message: this.$t('file.renameBackupConfirmMsg'),
okClick: this.rename,
okLabel: this.$t('file.renameBackupConfrimLabel'),
okLabel: this.$t('file.renameBackupConfirmLabel'),
cancelLabel: this.$t('ui.cancel'),
defaultText: oldFilename
});
Expand Down Expand Up @@ -360,9 +360,9 @@ export default {
this.fileToRestore = fileName;
this.$bus.$emit('confirm-display', {
message: this.$t('file.restoreBackupConfrimMsg'),
message: this.$t('file.restoreBackupConfirmMsg'),
okClick: this.restore,
okLabel: this.$t('file.restoreBackupConfrimLabel'),
okLabel: this.$t('file.restoreBackupConfirmLabel'),
cancelLabel: this.$t('ui.cancel'),
});
},
Expand Down

0 comments on commit acd0d0d

Please sign in to comment.