diff --git a/dist/styles/global.css b/dist/styles/global.css index 07bb233..fa934eb 100644 --- a/dist/styles/global.css +++ b/dist/styles/global.css @@ -138,6 +138,10 @@ i.ms-Nav-chevron { color: var(--neutralPrimary); } +.ms-Callout-main { + border-radius: 5px; +} + #root > nav { height: var(--navHeight); -webkit-app-region: drag; diff --git a/electron-builder-mas.yml b/electron-builder-mas.yml index a8ca139..48018d0 100644 --- a/electron-builder-mas.yml +++ b/electron-builder-mas.yml @@ -28,6 +28,7 @@ mac: - uk - it - nl + - ko minimumSystemVersion: 10.14.0 mas: entitlements: build/entitlements.mas.plist diff --git a/electron-builder.yml b/electron-builder.yml index c4a389f..047ed1d 100644 --- a/electron-builder.yml +++ b/electron-builder.yml @@ -25,6 +25,7 @@ mac: - uk - it - nl + - ko win: target: - nsis @@ -47,6 +48,7 @@ appx: - uk - it - nl + - ko showNameOnTiles: true setBuildNumber: true nsis: diff --git a/src/components/settings/app.tsx b/src/components/settings/app.tsx index 1d0cf95..4279698 100644 --- a/src/components/settings/app.tsx +++ b/src/components/settings/app.tsx @@ -140,6 +140,7 @@ class AppTab extends React.Component { { key: "sv", text: "Svenska" }, { key: "tr", text: "Türkçe" }, { key: "uk", text: "Українська" }, + { key: "ko", text: "한글" }, { key: "ja", text: "日本語" }, { key: "zh-CN", text: "中文(简体)" }, { key: "zh-TW", text: "中文(繁體)" }, diff --git a/src/scripts/i18n/_locales.ts b/src/scripts/i18n/_locales.ts index 9aa9de0..187ca82 100644 --- a/src/scripts/i18n/_locales.ts +++ b/src/scripts/i18n/_locales.ts @@ -12,6 +12,7 @@ import it from "./it.json" import uk from "./uk.json" import pt_BR from "./pt-BR.json" import fi_FI from "./fi-FI.json" +import ko from "./ko.json" const locales = { "en-US": en_US, @@ -28,6 +29,7 @@ const locales = { "uk": uk, "pt-BR": pt_BR, "fi-FI": fi_FI, + "ko": ko, } export default locales diff --git a/src/scripts/i18n/ko-KR.json b/src/scripts/i18n/ko.json similarity index 100% rename from src/scripts/i18n/ko-KR.json rename to src/scripts/i18n/ko.json diff --git a/src/scripts/i18n/sv.json b/src/scripts/i18n/sv.json index 1887d74..b3e8e0e 100644 --- a/src/scripts/i18n/sv.json +++ b/src/scripts/i18n/sv.json @@ -211,7 +211,7 @@ "cacheSize": "Cache-lagra {size} data", "deleteChoices": "Ta bort artiklar från ... dagar sedan", "confirmDelete": "Ta bort", - "daysAgo": "{day, plural, =1 {# dag} other {# dagar}} sedan", + "daysAgo": "{days, plural, =1 {# dag} other {# dagar}} sedan", "deleteAll": "Ta bort alla artiklar", "calculatingSize": "Beräknar storlek...", "itemSize": "Omkring {size} lokal datalagring upptas av artiklar",