Skip to content

Commit

Permalink
Make translations optional for all languages
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmeuli committed May 13, 2020
1 parent 915c79b commit 95873b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/i18n/translations/de.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Translations } from "../../../shared/types";

const translationsDe: Translations = {
const translationsDe: Partial<Translations> = {
// Menu (defined by macOS)
"about-app": "Über {appName}",
"bring-all-to-front": "Alle nach vorne bringen",
Expand Down
2 changes: 1 addition & 1 deletion src/main/i18n/translations/it.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Translations } from "../../../shared/types";

const translationsIt: Translations = {
const translationsIt: Partial<Translations> = {
// Menu (defined by macOS)
"about-app": "Informazioni su {appName}",
"bring-all-to-front": "Porta tutto in primo piano",
Expand Down
2 changes: 1 addition & 1 deletion src/main/i18n/translations/no.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Translations } from "../../../shared/types";

const translationsNo: Translations = {
const translationsNo: Partial<Translations> = {
// Menu (defined by macOS)
"about-app": "Om {appName}",
"bring-all-to-front": "Vis Alle Foran",
Expand Down

0 comments on commit 95873b1

Please sign in to comment.