Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO] Fix spelling and language #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/assets/locales/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"reset-config-msg-l1": "Dette vil fjerne alle brugerindstillinger fra local storage, men vil ikke påvirke din 'conf.yml'-fil.",
"reset-config-msg-l2": "Du bør først sikkerhedskopiere eventuelle ændringer, du har foretaget lokalt, hvis du vil bruge dem i fremtiden.",
"reset-config-msg-l3": "Er du sikker på at du vil fortsætte?",
"data-cleared-msg": "Data blev succesfuldt ryddet",
"data-cleared-msg": "Data blev successfuldt ryddet",
"actions-label": "Handlinger",
"copy-config-label": "Kopiera Config",
"data-copied-msg": "Konfigurationen er blevet kopieret til clipboard",
Expand Down
4 changes: 2 additions & 2 deletions src/assets/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"remember-me-long-time": "Un long moment",
"error-missing-username": "Nom d'utilisateur manquant",
"error-missing-password": "Mot de passe manquant",
"error-incorrect-username": "Utilisateur inexistant",
"error-incorrect-username": "Utilisateur inexistent",
"error-incorrect-password": "Mot de passe incorrect",
"success-message": "Connexion ...",
"logout-message": "Déconnexion",
Expand Down Expand Up @@ -208,7 +208,7 @@
"save-locally-btn": "Enregistrer localement",
"save-locally-tooltip": "Enregistrez la configuration localement, dans le stockage du navigateur. Cela n'affectera pas votre fichier de configuration, mais les modifications ne seront présentes que sur cet appareil",
"save-disk-btn": "Enregistrer sur le disque",
"save-disk-tooltip": "Enregistrez la configuration dans le fichier conf.yml sur le disque. Cela sauvegardera, puis écrasera votre configuration existante",
"save-disk-tooltip": "Enregistrez la configuration dans le fichier conf.yml sur le disque. Cela sauvegardera, puis écrasera votre configuration existente",
"export-config-btn": "Exporter la configuration",
"export-config-tooltip": "Afficher et exporter la nouvelle configuration, soit dans un fichier, soit dans le presse-papier",
"cancel-changes-btn": "Annuler",
Expand Down
12 changes: 6 additions & 6 deletions src/assets/locales/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"change-fonts-button": "Trocar fonte",
"save-button": "Salvar",
"cancel-button": "Cancelar",
"saved-toast": "{theme} atualizado com sucesso",
"saved-toast": "{theme} atualizado com successo",
"copied-toast": "Dados do {theme} copiados para área de transferência",
"reset-toast": "Cores customizadas do {theme} removidas"
},
Expand All @@ -119,8 +119,8 @@
"valid-label": "Configuração é válida",
"status-success-msg": "Tarefa concluída",
"status-fail-msg": "Falha na tarefa",
"success-msg-disk": "Arquivo de configuração gravado no disco com sucesso",
"success-msg-local": "Mudanças locais salvas com sucesso",
"success-msg-disk": "Arquivo de configuração gravado no disco com successo",
"success-msg-local": "Mudanças locais salvas com successo",
"success-note-l1": "O app deve atualizar automaticamente.",
"success-note-l2": "Isso pode levar até um minuto.",
"success-note-l3": "Você precisará atualizar a página para aplicar as mudanças.",
Expand All @@ -139,7 +139,7 @@
"rebuilding-status-1": "Construindo...",
"rebuilding-status-2": "Isso pode levar alguns minutos",
"error-permission": "Você não tem permissão para acionar esta ação",
"success-msg": "Construção concluída com sucesso!",
"success-msg": "Construção concluída com successo!",
"fail-msg": "Operação de construção falhou",
"reload-note": "Uma atualização da página é necessária para aplicar as alterações.",
"reload-button": "Atualizar página"
Expand All @@ -164,8 +164,8 @@
"backup-missing-password": "Senha ausente",
"backup-error-unknown": "Incapaz de processar o pedido",
"backup-error-password": "Senha incorreta. Por favor, digite sua senha atual.",
"backup-success-msg": "Completado com sucesso",
"restore-success-msg": "Configuração restaurada com sucesso"
"backup-success-msg": "Completado com successo",
"restore-success-msg": "Configuração restaurada com successo"
},
"menu": {
"open-section-title": "Abrir em",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Settings/SearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
window.removeEventListener('keydown', this.handleKeyPress);
},
methods: {
/* Call correct function dependending on which key is pressed */
/* Call correct function dependenting on which key is pressed */
handleKeyPress(event) {
const currentElem = document.activeElement.id;
const { key, keyCode } = event;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Widgets/CveVulnerabilities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default {
opacity: var(--dimming-factor);
border-left: 1px solid var(--widget-text-color);
}
.seperator {
.separator {
font-size: 0.8rem;
margin: 0;
opacity: var(--dimming-factor);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Widgets/PiHoleTraffic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
this.error('Expected data was not returned from Pi-Hole');
return false;
} else if (response.ads_over_time.length < 1) {
this.error('Request completed succesfully, but no data in Pi-Hole yet');
this.error('Request completed successfully, but no data in Pi-Hole yet');
return false;
}
return true;
Expand Down
2 changes: 1 addition & 1 deletion src/mixins/ConfigSaving.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
if (config.appConfig.theme) {
localStorage.setItem(localStorageKeys.THEME, config.appConfig.theme);
}
InfoHandler('Config has succesfully been saved in browser storage', 'Config Update');
InfoHandler('Config has successfully been saved in browser storage', 'Config Update');
this.showToast(this.$t('config-editor.success-msg-local'), true);
this.$store.commit(StoreKeys.SET_EDIT_MODE, false);
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default {
if (response.correct) { // Yay, credentials were correct :)
login(this.username, this.password, timeout); // Login, to set the cookie
this.goHome();
InfoHandler(`Succesfully signed in as ${this.username}`, InfoKeys.AUTH);
InfoHandler(`Successfully signed in as ${this.username}`, InfoKeys.AUTH);
} else {
WarningInfoHandler('Unable to Sign In', InfoKeys.AUTH, this.message);
}
Expand Down