feat: add Português to settings

This commit is contained in:
Huakun Shen 2025-02-14 00:28:38 -05:00
parent e36237facd
commit 03450e8a12
3 changed files with 11 additions and 7 deletions

View File

@ -1,7 +1,7 @@
{
"$schema": "https://inlang.com/schema/project-settings",
"sourceLanguageTag": "en",
"languageTags": ["en", "zh", "ru"],
"languageTags": ["en", "zh", "ru", "pt"],
"modules": [
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@latest/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@latest/dist/index.js",

View File

@ -23,5 +23,6 @@ export const IS_IN_TAURI =
export const LanguageMap = {
en: "English",
zh: "中文",
ru: "Русский"
ru: "Русский",
pt: "Português"
}

View File

@ -2,6 +2,7 @@ import { getAllApps, refreshApplicationsList } from "@kksh/api/commands"
import { AppInfo } from "@kksh/api/models"
import { commandScore } from "@kksh/ui/utils"
import * as fs from "@tauri-apps/plugin-fs"
import { platform } from "@tauri-apps/plugin-os"
import { derived, get, writable } from "svelte/store"
import { appState } from "./appState"
@ -13,10 +14,9 @@ export function createAppsLoaderStore() {
get: () => get(store),
init: async () => {
await refreshApplicationsList()
const apps = await getAllApps()
// fs.writeTextFile("/Users/hk/Desktop/apps.json", JSON.stringify(apps))
store.set(
apps.filter((app) => {
let apps = await getAllApps()
if (platform() === "macos") {
apps = apps.filter((app) => {
return (
!app.app_desktop_path.includes("Parallels") &&
!app.app_desktop_path.startsWith("/Library/Application Support") &&
@ -24,7 +24,10 @@ export function createAppsLoaderStore() {
!app.app_desktop_path.startsWith("/System/Library/PrivateFrameworks")
)
})
)
}
// console.log("filteredApps", apps)
// fs.writeTextFile("/Users/hk/Desktop/apps.json", JSON.stringify(apps))
store.set(apps)
}
}
}