mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
feat: add Português to settings
This commit is contained in:
parent
e36237facd
commit
03450e8a12
@ -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",
|
||||
|
@ -23,5 +23,6 @@ export const IS_IN_TAURI =
|
||||
export const LanguageMap = {
|
||||
en: "English",
|
||||
zh: "中文",
|
||||
ru: "Русский"
|
||||
ru: "Русский",
|
||||
pt: "Português"
|
||||
}
|
||||
|
@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user