mirror of
https://github.com/penxio/penx.git
synced 2026-05-12 03:03:12 -04:00
feat: can publish struct
This commit is contained in:
@@ -2,6 +2,7 @@ import { PropsWithChildren, ReactNode, useEffect, useMemo } from 'react'
|
||||
import { tinykeys } from 'tinykeys'
|
||||
import { Kbd } from '@penx/components/Kbd'
|
||||
import { cn } from '@penx/utils'
|
||||
import { useCurrentCommand } from '~/hooks/useCurrentCommand'
|
||||
import { ICommandItem } from '~/lib/types'
|
||||
import { ListItemIcon } from '../Panel/ListItemIcon'
|
||||
import { SearchInput } from '../Panel/SearchBar/SearchInput'
|
||||
@@ -24,13 +25,13 @@ interface IConfirm {
|
||||
interface Props {
|
||||
className?: string
|
||||
bodyClassName?: string
|
||||
command: ICommandItem
|
||||
actions?: ReactNode
|
||||
confirm?: IConfirm
|
||||
hideHeader?: boolean
|
||||
hideFooter?: boolean
|
||||
headerBordered?: boolean
|
||||
title?: ReactNode
|
||||
footerPostfix?: ReactNode
|
||||
showSearch?: boolean
|
||||
}
|
||||
|
||||
@@ -38,20 +39,23 @@ export function DetailApp({
|
||||
className,
|
||||
bodyClassName,
|
||||
children,
|
||||
command,
|
||||
actions,
|
||||
confirm,
|
||||
hideHeader = false,
|
||||
hideFooter = false,
|
||||
headerBordered = true,
|
||||
showSearch = false,
|
||||
footerPostfix,
|
||||
title,
|
||||
}: PropsWithChildren<Props>) {
|
||||
const { currentCommand: command } = useCurrentCommand()
|
||||
const itemIcon = useMemo(() => {
|
||||
const assets = command?.data?.assets || {}
|
||||
return assets[command.icon as string] || command.icon
|
||||
return assets[command?.icon as string] || command?.icon
|
||||
}, [command])
|
||||
|
||||
if (!command) return <div>Henel</div>
|
||||
|
||||
return (
|
||||
<div className={cn('flex h-full w-full flex-col', className)}>
|
||||
{!hideHeader && (
|
||||
@@ -95,6 +99,7 @@ export function DetailApp({
|
||||
</div>
|
||||
{actions}
|
||||
{confirm && <Confirm confirm={confirm} />}
|
||||
{footerPostfix}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -10,6 +10,7 @@ import { tinykeys } from 'tinykeys'
|
||||
import { Kbd } from '@penx/components/Kbd'
|
||||
import { Separator } from '@penx/uikit/ui/separator'
|
||||
import { cn } from '@penx/utils'
|
||||
import { useCurrentCommand } from '~/hooks/useCurrentCommand'
|
||||
import { useValue } from '~/hooks/useValue'
|
||||
import { ICommandItem } from '~/lib/types'
|
||||
import { ListItemIcon } from '../Panel/ListItemIcon'
|
||||
@@ -35,7 +36,6 @@ interface IConfirm {
|
||||
interface Props {
|
||||
className?: string
|
||||
bodyClassName?: string
|
||||
command: ICommandItem
|
||||
confirm?: IConfirm
|
||||
hideFooter?: boolean
|
||||
headerBordered?: boolean
|
||||
@@ -48,12 +48,13 @@ export function ListApp({
|
||||
isLoading,
|
||||
bodyClassName,
|
||||
children,
|
||||
command,
|
||||
confirm,
|
||||
hideFooter = false,
|
||||
headerBordered = true,
|
||||
isDetailVisible,
|
||||
}: PropsWithChildren<Props>) {
|
||||
const { currentCommand: command } = useCurrentCommand()
|
||||
|
||||
const itemIcon = useMemo(() => {
|
||||
const assets = command?.data?.assets || {}
|
||||
return assets[command.icon as string] || command.icon
|
||||
|
||||
@@ -157,8 +157,7 @@ export const ColumnList = ({ struct }: Props) => {
|
||||
/>
|
||||
)}
|
||||
</DragOverlay>,
|
||||
// document.body,
|
||||
document.querySelector('#command-palette')!,
|
||||
document.body,
|
||||
)}
|
||||
</DndContext>
|
||||
</div>
|
||||
|
||||
@@ -82,10 +82,6 @@ export const CommandPalette = () => {
|
||||
return <PageRoot />
|
||||
}
|
||||
|
||||
if (current.path === '/edit-struct') {
|
||||
return <PageEditStruct />
|
||||
}
|
||||
|
||||
if (current.path === '/configure-shortcut') {
|
||||
return <PageConfigureShortcut />
|
||||
}
|
||||
@@ -120,6 +116,10 @@ export const CommandPalette = () => {
|
||||
return <PageAICommand />
|
||||
}
|
||||
|
||||
if (current.path === '/edit-struct') {
|
||||
return <PageEditStruct />
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
{header}
|
||||
@@ -148,7 +148,7 @@ export const CommandPalette = () => {
|
||||
<Command
|
||||
id="command-palette"
|
||||
label="Command Menu"
|
||||
className="command-panel text-foreground/80 absolute bottom-0 left-0 right-0 top-0 z-10 flex w-full flex-col bg-white/65 dark:bg-neutral-900/80"
|
||||
className="command-panel text-foreground/80 absolute bottom-0 left-0 right-0 top-0 z-10 flex w-full flex-col bg-white/70 dark:bg-neutral-900/80"
|
||||
// loop={false}
|
||||
value={value}
|
||||
onValueChange={(v) => {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { setConfig } from '@fower/react'
|
||||
import { DashboardProviders } from '@penx/components/DashboardProviders'
|
||||
import { PublishStructDialog } from '@penx/components/PublishStructDialog/PublishStructDialog'
|
||||
import { ThemeProvider } from '@penx/components/ThemeProvider'
|
||||
import { LocaleProvider } from '@penx/locales'
|
||||
import { WatchEvent } from '../WatchEvent'
|
||||
@@ -25,6 +26,7 @@ export function Panel() {
|
||||
disableTransitionOnChange
|
||||
>
|
||||
<DashboardProviders>
|
||||
<PublishStructDialog />
|
||||
<CommandPalette />
|
||||
<WatchEvent />
|
||||
</DashboardProviders>
|
||||
|
||||
@@ -105,6 +105,7 @@ export function RootActions({ command, close }: RootActionsProps) {
|
||||
shortcut=""
|
||||
onSelect={() => {
|
||||
push({ path: '/edit-struct' })
|
||||
setCurrentCommand(currentItem!)
|
||||
setStruct(struct.raw)
|
||||
close()
|
||||
}}
|
||||
|
||||
@@ -23,7 +23,6 @@ export function PageAIChat() {
|
||||
hideHeader
|
||||
hideFooter
|
||||
headerBordered={false}
|
||||
command={currentCommand}
|
||||
>
|
||||
<div className="flex h-full w-full flex-col">
|
||||
<div className="drag z-[10] flex w-full shrink-0 cursor-move items-center justify-between px-4 pt-4">
|
||||
|
||||
@@ -37,7 +37,6 @@ export function PageAICommand() {
|
||||
title={creation.title}
|
||||
hideFooter
|
||||
headerBordered={false}
|
||||
command={currentCommand}
|
||||
>
|
||||
<div className="flex h-full w-full flex-col">
|
||||
<Chat
|
||||
|
||||
@@ -16,7 +16,6 @@ export function PageConfigureShortcut() {
|
||||
// hideFooter
|
||||
headerBordered={false}
|
||||
title={<Trans>Configure shortcut</Trans>}
|
||||
command={currentCommand}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
// <Action.Item title={<Trans>Create</Trans>} />
|
||||
|
||||
@@ -12,7 +12,6 @@ export function PageQuickInput() {
|
||||
const { currentCommand } = useCurrentCommand()
|
||||
return (
|
||||
<DetailApp
|
||||
command={currentCommand}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
// <Action.Item title={<Trans>Create</Trans>} />
|
||||
|
||||
@@ -10,7 +10,6 @@ export function PageCreateStruct() {
|
||||
const { currentCommand } = useCurrentCommand()
|
||||
return (
|
||||
<DetailApp
|
||||
command={currentCommand}
|
||||
bodyClassName="flex items-center justify-center"
|
||||
headerBordered={false}
|
||||
title={currentCommand.title}
|
||||
@@ -38,7 +37,7 @@ export function PageCreateStruct() {
|
||||
<div className="-mt-10 w-[360px]">
|
||||
<CreateStructForm
|
||||
onSubmitSuccess={(struct) => {
|
||||
navigation.replace({ path: '/edit-struct' })
|
||||
navigation.replace({ path: '/edit-struct' })
|
||||
setStruct(struct)
|
||||
appEmitter.emit('REFRESH_COMMANDS')
|
||||
}}
|
||||
|
||||
@@ -10,14 +10,9 @@ export function PageEditCreation() {
|
||||
const { creation } = useCurrentCreation()
|
||||
const { currentCommand } = useCurrentCommand()
|
||||
const creationId = useMemo(() => {
|
||||
console.log('111111111111creation:', creation)
|
||||
|
||||
if (creation) return creation.id
|
||||
console.log('222222222222222')
|
||||
|
||||
if (currentCommand?.data?.creation) {
|
||||
console.log('33333333333333333333')
|
||||
|
||||
return currentCommand.data.creation.id
|
||||
}
|
||||
}, [creation, currentCommand])
|
||||
@@ -34,7 +29,6 @@ export function PageEditCreation() {
|
||||
return (
|
||||
<DetailApp
|
||||
className=" bg-white/65 dark:bg-neutral-900/80"
|
||||
command={currentCommand}
|
||||
headerBordered={false}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
|
||||
@@ -1,7 +1,16 @@
|
||||
import { Trans } from '@lingui/react/macro'
|
||||
import { DatabaseProvider } from '@penx/components/DatabaseProvider'
|
||||
import { usePublishStructDialog } from '@penx/components/PublishStructDialog/usePublishStructDialog'
|
||||
import { EditStructForm } from '@penx/components/StructDialog/EditStructForm'
|
||||
import { useStructs } from '@penx/hooks/useStructs'
|
||||
import { useStructTemplates } from '@penx/hooks/useStructTemplates'
|
||||
import { isBuiltinStruct } from '@penx/libs/isBuiltinStruct'
|
||||
import { useSession } from '@penx/session'
|
||||
import { Button } from '@penx/uikit/ui/button'
|
||||
import { DetailApp } from '~/components/ExtensionApp/DetailApp'
|
||||
import { useCurrentStruct } from '~/hooks/useCurrentStruct'
|
||||
import { navigation } from '~/hooks/useNavigation'
|
||||
import { openCommand } from '~/lib/openCommand'
|
||||
import { StructInfo } from '../CommandApp/DatabaseApp/StructInfo'
|
||||
|
||||
export function PageEditStruct() {
|
||||
@@ -11,16 +20,43 @@ export function PageEditStruct() {
|
||||
const { structs } = useStructs()
|
||||
|
||||
const struct = structs.find((s) => s.id === id)!
|
||||
const { setState } = usePublishStructDialog()
|
||||
const { session } = useSession()
|
||||
useStructTemplates()
|
||||
|
||||
function publish() {
|
||||
if (!session) {
|
||||
openCommand({
|
||||
id: 'account',
|
||||
})
|
||||
return
|
||||
}
|
||||
setState({
|
||||
isOpen: true,
|
||||
struct,
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
<DatabaseProvider struct={struct}>
|
||||
<div className="divide-foreground/10 flex h-full justify-between divide-x">
|
||||
<div className="flex-1 overflow-auto p-3">
|
||||
<EditStructForm struct={struct} isPanel />
|
||||
<DetailApp
|
||||
footerPostfix={
|
||||
isBuiltinStruct(struct.type) ? null : (
|
||||
<Button size="sm" className="text-sm" onClick={publish}>
|
||||
<Trans>Publish Struct</Trans>
|
||||
</Button>
|
||||
)
|
||||
}
|
||||
>
|
||||
<DatabaseProvider struct={struct}>
|
||||
<div className="divide-foreground/10 flex h-full justify-between divide-x">
|
||||
<div className="flex-1 overflow-auto p-3">
|
||||
<EditStructForm struct={struct} isPanel />
|
||||
</div>
|
||||
<div className="flex-1 overflow-auto p-1">
|
||||
<StructInfo struct={struct} />
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex-1 overflow-auto p-1">
|
||||
<StructInfo struct={struct} />
|
||||
</div>
|
||||
</div>
|
||||
</DatabaseProvider>
|
||||
</DatabaseProvider>
|
||||
</DetailApp>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -14,7 +14,6 @@ export function PageLogin() {
|
||||
className=""
|
||||
hideFooter
|
||||
headerBordered={false}
|
||||
command={currentCommand}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
// <Action.Item title={<Trans>Create</Trans>} />
|
||||
|
||||
@@ -12,7 +12,6 @@ export function PageQuickInput() {
|
||||
const { currentCommand } = useCurrentCommand()
|
||||
return (
|
||||
<DetailApp
|
||||
command={currentCommand}
|
||||
headerBordered={false}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
|
||||
@@ -26,7 +26,6 @@ export function PageSettings() {
|
||||
hideHeader
|
||||
hideFooter
|
||||
headerBordered={false}
|
||||
command={currentCommand}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
// <Action.Item title={<Trans>Create</Trans>} />
|
||||
|
||||
@@ -13,13 +13,7 @@ export function PageStructMarketplace() {
|
||||
const { data = [], isLoading } = useStructTemplates()
|
||||
|
||||
return (
|
||||
<ListApp
|
||||
className=""
|
||||
hideFooter
|
||||
command={currentCommand}
|
||||
isLoading={isLoading}
|
||||
isDetailVisible
|
||||
>
|
||||
<ListApp className="" hideFooter isLoading={isLoading} isDetailVisible>
|
||||
{data.map((item, index) => (
|
||||
<ListItem
|
||||
key={index}
|
||||
|
||||
@@ -6,12 +6,7 @@ export function PageSync() {
|
||||
const { currentCommand } = useCurrentCommand()
|
||||
|
||||
return (
|
||||
<DetailApp
|
||||
className=""
|
||||
hideFooter
|
||||
headerBordered={false}
|
||||
command={currentCommand}
|
||||
>
|
||||
<DetailApp className="" hideFooter headerBordered={false}>
|
||||
<SyncContent />
|
||||
</DetailApp>
|
||||
)
|
||||
|
||||
@@ -91,7 +91,6 @@ export function PageTranslate() {
|
||||
return (
|
||||
<DetailApp
|
||||
className=""
|
||||
command={currentCommand}
|
||||
// actions={
|
||||
// <ActionPanel>
|
||||
// <Action.Item title={<Trans>Create</Trans>} />
|
||||
|
||||
@@ -114,6 +114,8 @@ export function useLoadCommands() {
|
||||
queryKey: ['commands'],
|
||||
queryFn: () => {
|
||||
const structs = store.structs.get()
|
||||
console.log('=========structs:', structs)
|
||||
|
||||
const creations = store.creations.get()
|
||||
|
||||
const structCommands = structs.map<ICommandItem>((item) => {
|
||||
|
||||
@@ -26,7 +26,7 @@ export default {
|
||||
'<rootDir>/apps/**/*.{ts,tsx}',
|
||||
'<rootDir>/packages/**/*.{ts,tsx}',
|
||||
],
|
||||
exclude: ['**/node_modules/**'],
|
||||
exclude: ['**/node_modules/**', '**/*.d.ts'],
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
@@ -191,52 +191,38 @@ export class AppService {
|
||||
} as IShortcutNode)
|
||||
}
|
||||
|
||||
const imageStruct = structs.find((s) => s.props.type === StructType.IMAGE)
|
||||
if (!imageStruct) {
|
||||
const newStruct = generateStructNode({
|
||||
type: StructType.IMAGE,
|
||||
name: t`Image`,
|
||||
spaceId: space.id,
|
||||
userId: space.userId,
|
||||
areaId: area.id,
|
||||
})
|
||||
await localDB.addStruct(newStruct)
|
||||
structs.push(newStruct)
|
||||
}
|
||||
// const imageStruct = structs.find((s) => s.props.type === StructType.IMAGE)
|
||||
// if (!imageStruct) {
|
||||
// const newStruct = generateStructNode({
|
||||
// type: StructType.IMAGE,
|
||||
// name: t`Image`,
|
||||
// spaceId: space.id,
|
||||
// userId: space.userId,
|
||||
// areaId: area.id,
|
||||
// })
|
||||
// await localDB.addStruct(newStruct)
|
||||
// structs.push(newStruct)
|
||||
// }
|
||||
|
||||
const snippetStruct = structs.find(
|
||||
(s) => s.props.type === StructType.SNIPPET,
|
||||
)
|
||||
|
||||
if (!snippetStruct) {
|
||||
const newStruct = generateStructNode({
|
||||
type: StructType.SNIPPET,
|
||||
name: t`Snippet`,
|
||||
spaceId: space.id,
|
||||
userId: space.userId,
|
||||
areaId: area.id,
|
||||
})
|
||||
await localDB.addStruct(newStruct)
|
||||
structs.push(newStruct)
|
||||
}
|
||||
|
||||
const promptStruct = structs.find((s) => s.props.type === StructType.PROMPT)
|
||||
if (!promptStruct) {
|
||||
const newStruct = generateStructNode({
|
||||
type: StructType.PROMPT,
|
||||
name: t`Prompt`,
|
||||
spaceId: space.id,
|
||||
userId: space.userId,
|
||||
areaId: area.id,
|
||||
})
|
||||
await localDB.addStruct(newStruct)
|
||||
structs.push(newStruct)
|
||||
}
|
||||
// const promptStruct = structs.find((s) => s.props.type === StructType.PROMPT)
|
||||
// if (!promptStruct) {
|
||||
// const newStruct = generateStructNode({
|
||||
// type: StructType.PROMPT,
|
||||
// name: t`Prompt`,
|
||||
// spaceId: space.id,
|
||||
// userId: space.userId,
|
||||
// areaId: area.id,
|
||||
// })
|
||||
// await localDB.addStruct(newStruct)
|
||||
// structs.push(newStruct)
|
||||
// }
|
||||
|
||||
{
|
||||
const aiCommandStruct = structs.find(
|
||||
(s) => s.props.type === StructType.AI_COMMAND,
|
||||
)
|
||||
console.log('========aiCommandStruct:', aiCommandStruct)
|
||||
|
||||
if (!aiCommandStruct) {
|
||||
const newStruct = generateStructNode({
|
||||
type: StructType.AI_COMMAND,
|
||||
@@ -245,25 +231,26 @@ export class AppService {
|
||||
userId: space.userId,
|
||||
areaId: area.id,
|
||||
})
|
||||
|
||||
await localDB.addStruct(newStruct)
|
||||
structs.push(newStruct)
|
||||
}
|
||||
}
|
||||
|
||||
const quicklinkStruct = structs.find(
|
||||
(s) => s.props.type === StructType.QUICK_LINK,
|
||||
)
|
||||
if (!quicklinkStruct) {
|
||||
const newStruct = generateStructNode({
|
||||
type: StructType.QUICK_LINK,
|
||||
name: t`Quicklink`,
|
||||
spaceId: space.id,
|
||||
userId: space.userId,
|
||||
areaId: area.id,
|
||||
})
|
||||
await localDB.addStruct(newStruct)
|
||||
structs.push(newStruct)
|
||||
}
|
||||
// const quicklinkStruct = structs.find(
|
||||
// (s) => s.props.type === StructType.QUICK_LINK,
|
||||
// )
|
||||
// if (!quicklinkStruct) {
|
||||
// const newStruct = generateStructNode({
|
||||
// type: StructType.QUICK_LINK,
|
||||
// name: t`Quicklink`,
|
||||
// spaceId: space.id,
|
||||
// userId: space.userId,
|
||||
// areaId: area.id,
|
||||
// })
|
||||
// await localDB.addStruct(newStruct)
|
||||
// structs.push(newStruct)
|
||||
// }
|
||||
|
||||
structs = await fixTaskStruct(area.id, structs)
|
||||
structs = await fixBookmarkStruct(area.id, structs)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
'use client'
|
||||
|
||||
import { useState } from 'react'
|
||||
import { t } from '@lingui/core/macro'
|
||||
import { useLingui } from '@lingui/react/macro'
|
||||
import { useMutation, useQuery } from '@tanstack/react-query'
|
||||
import { toast } from 'sonner'
|
||||
@@ -18,18 +19,27 @@ import { usePublishStructDialog } from './usePublishStructDialog'
|
||||
export function PublishStructContent() {
|
||||
const { isOpen, setIsOpen, struct } = usePublishStructDialog()
|
||||
const { isPending, mutateAsync } = useMutation({
|
||||
mutationKey: ['structTemplates'],
|
||||
mutationKey: ['publishStruct'],
|
||||
mutationFn: api.publishStruct,
|
||||
})
|
||||
const { i18n } = useLingui()
|
||||
const [type, setType] = useState(struct.type)
|
||||
const { refetch } = useStructTemplates()
|
||||
const { refetch, data: structTemplates, isLoading } = useStructTemplates()
|
||||
|
||||
if (!struct) return null
|
||||
const publishedStruct = structTemplates?.find(
|
||||
(item) => item.type === struct.type,
|
||||
)
|
||||
|
||||
if (!struct || isLoading)
|
||||
return (
|
||||
<div className="flex h-20 items-center justify-center">
|
||||
<LoadingDots className="bg-foreground" />
|
||||
</div>
|
||||
)
|
||||
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<div className="space-y-2">
|
||||
{/* <div className="space-y-2">
|
||||
{struct.columns.map((column, index) => (
|
||||
<div key={column.id} className="flex items-center justify-between">
|
||||
<div className="flex items-center gap-1">
|
||||
@@ -43,43 +53,47 @@ export function PublishStructContent() {
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div> */}
|
||||
|
||||
<div className="space-y-1">
|
||||
<div className="text-foreground text-sm">Unique code</div>
|
||||
<div className="text-foreground text-sm">Unique ID</div>
|
||||
<Input
|
||||
placeholder="Unique code"
|
||||
placeholder="Unique ID"
|
||||
value={type}
|
||||
disabled={!!publishedStruct}
|
||||
onChange={(e) =>
|
||||
setType(
|
||||
e.target.value
|
||||
.toUpperCase()
|
||||
.toLowerCase()
|
||||
.trim()
|
||||
.replace(/[^(A-Z|0-9)]/g, ''),
|
||||
.replace(/[^(a-z|0-9|\-)]/g, ''),
|
||||
)
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Button
|
||||
size="lg"
|
||||
className="w-full"
|
||||
disabled={isPending}
|
||||
onClick={async () => {
|
||||
if (!type) {
|
||||
return toast.error('Please struct unique code is required')
|
||||
return toast.error(t`Unique ID is required`)
|
||||
}
|
||||
try {
|
||||
await mutateAsync({
|
||||
id: struct.id,
|
||||
name: struct.name,
|
||||
pluralName: struct.pluralName,
|
||||
emoji: struct.emoji,
|
||||
locale: i18n.locale,
|
||||
type: struct.type,
|
||||
type: type,
|
||||
color: struct.color,
|
||||
about: '',
|
||||
columns: struct.columns,
|
||||
})
|
||||
toast.success('Struct published successfully!')
|
||||
toast.success(t`Struct published successfully!`)
|
||||
|
||||
console.log('========type:', type)
|
||||
|
||||
store.structs.updateStruct(struct.id, {
|
||||
...struct.raw,
|
||||
@@ -92,6 +106,7 @@ export function PublishStructContent() {
|
||||
await localDB.updateStructProps(struct.id, {
|
||||
type,
|
||||
})
|
||||
|
||||
refetch()
|
||||
setIsOpen(false)
|
||||
} catch (error) {
|
||||
|
||||
@@ -25,11 +25,15 @@ export function PublishStructDialog() {
|
||||
}}
|
||||
>
|
||||
<DialogHeader>
|
||||
<DialogTitle>Publish struct</DialogTitle>
|
||||
<DialogTitle>
|
||||
<Trans>Publish struct</Trans>
|
||||
</DialogTitle>
|
||||
<DialogDescription>
|
||||
Publish{' '}
|
||||
<span className="text-foreground font-bold">{struct?.name}</span> to
|
||||
marketplace
|
||||
<Trans>
|
||||
Publish{' '}
|
||||
<span className="text-foreground font-bold">{struct?.name}</span>{' '}
|
||||
to marketplace
|
||||
</Trans>
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
<PublishStructContent />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use client'
|
||||
|
||||
import { useCallback, useEffect, useMemo, useRef } from 'react'
|
||||
import { ReactNode, useCallback, useEffect, useMemo, useRef } from 'react'
|
||||
import isEqual from 'react-fast-compare'
|
||||
import { useForm, type UseFormReturn } from 'react-hook-form'
|
||||
import { zodResolver } from '@hookform/resolvers/zod'
|
||||
@@ -11,6 +11,7 @@ import { toast } from 'sonner'
|
||||
import { useDebouncedCallback } from 'use-debounce'
|
||||
import { z } from 'zod'
|
||||
import { type Struct } from '@penx/domain'
|
||||
import { appEmitter } from '@penx/emitter'
|
||||
import { localDB } from '@penx/local-db'
|
||||
import { store } from '@penx/store'
|
||||
import { Button } from '@penx/uikit/button'
|
||||
@@ -118,26 +119,10 @@ function useAutoSave(
|
||||
}, [currentValues, isPanel, struct, debouncedSave, initialValues])
|
||||
}
|
||||
|
||||
// Custom hook for type field formatting
|
||||
function useTypeFormatter(form: UseFormReturn<FormData>) {
|
||||
const type = form.watch('type')
|
||||
|
||||
useEffect(() => {
|
||||
if (type && !/^[A-Z0-9]*$/.test(type)) {
|
||||
const formattedType = type
|
||||
.toUpperCase()
|
||||
.trim()
|
||||
.replace(/[^A-Z0-9]/g, '')
|
||||
|
||||
form.setValue('type', formattedType, { shouldValidate: true })
|
||||
}
|
||||
}, [type, form])
|
||||
}
|
||||
|
||||
// Reusable form field component
|
||||
interface FormFieldWrapperProps {
|
||||
name: keyof FormData
|
||||
label: string
|
||||
label: ReactNode
|
||||
form: UseFormReturn<FormData>
|
||||
children: (field: any) => React.ReactElement
|
||||
className?: string
|
||||
@@ -174,9 +159,6 @@ export function EditStructForm({ struct: propStruct, isPanel }: Props) {
|
||||
|
||||
const { form, initialValues } = useStructForm(struct)
|
||||
|
||||
// Format type field automatically
|
||||
useTypeFormatter(form)
|
||||
|
||||
const handleSubmit = useCallback(
|
||||
async (data: FormData) => {
|
||||
if (!struct) return
|
||||
@@ -191,6 +173,8 @@ export function EditStructForm({ struct: propStruct, isPanel }: Props) {
|
||||
store.structs.updateStruct(struct.id, newStruct)
|
||||
await localDB.updateStructProps(struct.id, data)
|
||||
|
||||
appEmitter.emit('REFRESH_COMMANDS')
|
||||
|
||||
if (!isPanel) {
|
||||
toast.info(t`Update struct successfully`)
|
||||
setIsOpen(false)
|
||||
@@ -214,22 +198,30 @@ export function EditStructForm({ struct: propStruct, isPanel }: Props) {
|
||||
>
|
||||
<div className="flex-1 space-y-4">
|
||||
<FormFieldWrapper name="name" label="Name" form={form}>
|
||||
{(field) => (
|
||||
<Input placeholder="Enter name" {...field} className="w-full" />
|
||||
)}
|
||||
</FormFieldWrapper>
|
||||
|
||||
<FormFieldWrapper name="pluralName" label="Plural name" form={form}>
|
||||
{(field) => (
|
||||
<Input
|
||||
placeholder="Enter plural name"
|
||||
placeholder={t`Enter name`}
|
||||
{...field}
|
||||
className="w-full"
|
||||
/>
|
||||
)}
|
||||
</FormFieldWrapper>
|
||||
|
||||
<FormFieldWrapper name="name" label="Color" form={form}>
|
||||
<FormFieldWrapper
|
||||
name="pluralName"
|
||||
label={t`Plural name`}
|
||||
form={form}
|
||||
>
|
||||
{(field) => (
|
||||
<Input
|
||||
placeholder={t`Enter plural name`}
|
||||
{...field}
|
||||
className="w-full"
|
||||
/>
|
||||
)}
|
||||
</FormFieldWrapper>
|
||||
|
||||
<FormFieldWrapper name="name" label={t`Color`} form={form}>
|
||||
{(field) => (
|
||||
<ColorSelector
|
||||
value={field.value || ''}
|
||||
@@ -240,12 +232,13 @@ export function EditStructForm({ struct: propStruct, isPanel }: Props) {
|
||||
|
||||
<FormFieldWrapper
|
||||
name="showDetail"
|
||||
label="Show detail panel"
|
||||
label={<Trans>Show detail panel</Trans>}
|
||||
form={form}
|
||||
className="flex w-full items-center justify-between"
|
||||
>
|
||||
{(field) => (
|
||||
<Switch
|
||||
className="data-[state=unchecked]:bg-foreground/20"
|
||||
checked={field.value || false}
|
||||
onCheckedChange={field.onChange}
|
||||
/>
|
||||
|
||||
@@ -128,7 +128,6 @@ export const createAreaInputSchema = z.object({
|
||||
export type CreateAreaInput = z.infer<typeof createAreaInputSchema>
|
||||
|
||||
export const publishStructInputSchema = z.object({
|
||||
id: z.string().uuid(),
|
||||
name: z.string().min(1, { message: 'Type name is required' }),
|
||||
pluralName: z.string().min(1, { message: 'Type name is required' }),
|
||||
type: z.string(),
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { StructType } from '@penx/types'
|
||||
|
||||
export function isBuiltinStruct(structType: any) {
|
||||
return Object.values(StructType).includes(structType)
|
||||
export function isBuiltinStruct(structType: string) {
|
||||
return Object.values(StructType).includes(structType as any)
|
||||
}
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr "{doneCount}/{0} tasks"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr "{label}"
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr "{toolName} completed"
|
||||
@@ -84,15 +88,10 @@ msgstr "5 minutes early"
|
||||
msgid "A brief your introduction."
|
||||
msgstr "A brief your introduction."
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr "A structured note-taking App"
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr "About"
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr "Account deleted successfully!"
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr "Account deletion in progress..."
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr "Add option"
|
||||
msgid "Add property"
|
||||
msgstr "Add property"
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr "Add Provider"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr "Add sync server"
|
||||
@@ -147,7 +150,7 @@ msgstr "Add sync server"
|
||||
msgid "Add tag"
|
||||
msgstr "Add tag"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr "Add to Favorites"
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr "Add to Favorites"
|
||||
msgid "Add widget"
|
||||
msgstr "Add widget"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr "Added to Favorites"
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr "AI chat"
|
||||
msgid "AI Chat"
|
||||
msgstr "AI Chat"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr "AI Command"
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr "AI features for notes"
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr "AI Powered Personal Data Hub"
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr "An Introduction to PenX and How to Use It"
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr "Appearance"
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr "Backup to Google drive"
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr "Backup to google drive successful!"
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr "Base URL"
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr "Believer"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr "Billing"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr "Billing & Subscriptions"
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr "Billing & Subscriptions"
|
||||
msgid "Bio"
|
||||
msgstr "Bio"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr "Bookmark"
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr "Built {0} items"
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr "Change type"
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr "Cloud sync"
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr "Collection"
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr "Color"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr "Commands"
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr "Config"
|
||||
msgid "Configure shortcut"
|
||||
msgstr "Configure shortcut"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr "Configure Shortcut"
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr "Confirm password"
|
||||
msgid "Confirm Publishing"
|
||||
msgstr "Confirm Publishing"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr "Content"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr "Copy to clipboard"
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr "Coupon code applied successfully"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr "Create one"
|
||||
msgid "Create struct"
|
||||
msgstr "Create struct"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr "Create Struct"
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr "Created date"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr "Created successfully"
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr "Created successfully"
|
||||
msgid "Creation counts"
|
||||
msgstr "Creation counts"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr "Creation deleted successfully"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr "Creations"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr "Custom AI Provider"
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr "Daily"
|
||||
@@ -537,7 +558,7 @@ msgstr "Delete"
|
||||
msgid "Delete account"
|
||||
msgstr "Delete account"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr "Delete Creation"
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr "Delete Creation"
|
||||
msgid "Delete record"
|
||||
msgstr "Delete record"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr "Delete Struct"
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr "Edit props"
|
||||
msgid "Edit struct"
|
||||
msgstr "Edit struct"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr "Edit Struct"
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr "Email login"
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr "Empty"
|
||||
@@ -684,8 +709,8 @@ msgstr "End-to-end encryption"
|
||||
msgid "Execute Changes"
|
||||
msgstr "Execute Changes"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr "Failed to delete"
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr "Failed to execute changes. Please try again."
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr "Free"
|
||||
msgid "Fri"
|
||||
msgstr "Fri"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr "Gallery"
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr "I have a coupon code, apply it now."
|
||||
msgid "Icon"
|
||||
msgstr "Icon"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr "Journal layout"
|
||||
msgid "Journals"
|
||||
msgstr "Journals"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr "Keyword"
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr "Leave a review"
|
||||
msgid "Light"
|
||||
msgstr "Light"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr "List"
|
||||
@@ -895,7 +919,7 @@ msgstr "Log in failed"
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr "Log out"
|
||||
@@ -946,6 +970,10 @@ msgstr "Member"
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr "Model select"
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr "month"
|
||||
msgid "Monthly"
|
||||
msgstr "Monthly"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr "Move Down in Favorites"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr "Move Up in Favorites"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr "Moved down in Favorites"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr "Moved up in Favorites"
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr "My Structs"
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr "New list"
|
||||
msgid "New property"
|
||||
msgstr "New property"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr "New version available, restarting to update..."
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr "No creation yet!"
|
||||
msgid "No introduction for the struct"
|
||||
msgstr "No introduction for the struct"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr "None"
|
||||
msgid "Not enabled"
|
||||
msgstr "Not enabled"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr "Note"
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr "Open in new panel"
|
||||
msgid "Open Search Panel"
|
||||
msgstr "Open Search Panel"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr "Open with"
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr "Operation"
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr "Page"
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr "Password for sync server, password is stored locally only."
|
||||
msgid "Passwords do not match"
|
||||
msgstr "Passwords do not match"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr "PenX Account"
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr "Please check your email for the verification code."
|
||||
msgid "Please enter the verification code."
|
||||
msgstr "Please enter the verification code."
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr "Please wait for the model to finish its response!"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr "Plural name"
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr "Press Enter to add a tag."
|
||||
@@ -1297,13 +1319,13 @@ msgstr "PRO yearly"
|
||||
msgid "Processing..."
|
||||
msgstr "Processing..."
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr "Profile"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr "Prompt"
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr "Properties"
|
||||
msgid "Publish"
|
||||
msgstr "Publish"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr "Publish Struct"
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr "Publish your creation"
|
||||
msgid "Quick input"
|
||||
msgstr "Quick input"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr "Quicklink"
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr "Recover failed"
|
||||
msgid "Recovery password"
|
||||
msgstr "Recovery password"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr "Recovery Password"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr "Recovery phrase"
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr "Reminder"
|
||||
msgid "remove"
|
||||
msgstr "remove"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr "Remove from Favorites"
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr "Remove reminder"
|
||||
msgid "Removed {0} items"
|
||||
msgstr "Removed {0} items"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr "Removed from Favorites"
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr "Save"
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr "Search for actions..."
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr "Select a color"
|
||||
msgid "Select property type"
|
||||
msgstr "Select property type"
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr "Send a message..."
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr "Setting"
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr "Share"
|
||||
msgid "Share note to friends"
|
||||
msgstr "Share note to friends"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr "Shortcuts"
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr "Show recovery phrase"
|
||||
msgid "Sign in"
|
||||
msgstr "Sign in"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr "Sign in to PenX"
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr "Single Select"
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr "Snippet"
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr "status"
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr "Struct deleted successfully"
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr "Struct installed successfully!"
|
||||
msgid "Struct marketplace"
|
||||
msgstr "Struct marketplace"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr "Struct Marketplace"
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr "Struct published successfully!"
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr "Sync now"
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr "Sync only over Wi-Fi"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr "Sync server"
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr "Syncing..."
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr "Table"
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr "Tag name"
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr "Task"
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr "Today"
|
||||
msgid "Tomorrow"
|
||||
msgstr "Tomorrow"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr "Translate"
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr "Translate"
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr "Translate failed, please try again"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr "Translate text"
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr "Unlimited number of notes"
|
||||
msgid "Unstar"
|
||||
msgstr "Unstar"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr "Untitled"
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr "Untitled"
|
||||
msgid "Upcoming"
|
||||
msgstr "Upcoming"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr "Update"
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr "Update"
|
||||
msgid "Update area"
|
||||
msgstr "Update area"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr "Update password"
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr "Update password"
|
||||
msgid "Update struct"
|
||||
msgstr "Update struct"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr "Update struct successfully"
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr "Using {toolName}..."
|
||||
msgid "Using coupon code"
|
||||
msgstr "Using coupon code"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr "Voice"
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr "year"
|
||||
msgid "Yearly"
|
||||
msgstr "Yearly"
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr "Your Providers"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr "Your sync server host, e.g. https://sync.penx.io"
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr ""
|
||||
@@ -84,15 +88,10 @@ msgstr ""
|
||||
msgid "A brief your introduction."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr ""
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr ""
|
||||
msgid "Add property"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr ""
|
||||
@@ -147,7 +150,7 @@ msgstr ""
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr ""
|
||||
msgid "Add widget"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr ""
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr ""
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr ""
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Configure shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr ""
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr ""
|
||||
msgid "Confirm Publishing"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr ""
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr ""
|
||||
msgid "Create struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr ""
|
||||
msgid "Creation counts"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
@@ -537,7 +558,7 @@ msgstr ""
|
||||
msgid "Delete account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr ""
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr ""
|
||||
msgid "Delete record"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr ""
|
||||
msgid "Edit struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr ""
|
||||
@@ -684,8 +709,8 @@ msgstr ""
|
||||
msgid "Execute Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr ""
|
||||
msgid "Fri"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr ""
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr ""
|
||||
msgid "Journals"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr ""
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
@@ -946,6 +970,10 @@ msgstr ""
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr ""
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr ""
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "New property"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr ""
|
||||
msgid "No introduction for the struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr ""
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr ""
|
||||
msgid "Open Search Panel"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr ""
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr ""
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr ""
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr ""
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr ""
|
||||
msgid "Please enter the verification code."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr ""
|
||||
@@ -1297,13 +1319,13 @@ msgstr ""
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr ""
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr ""
|
||||
msgid "Quick input"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr ""
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr ""
|
||||
msgid "Recovery password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr ""
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr ""
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr ""
|
||||
msgid "Removed {0} items"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr ""
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr ""
|
||||
msgid "Select property type"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr ""
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr ""
|
||||
msgid "Share note to friends"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr ""
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr ""
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr ""
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr ""
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr ""
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr ""
|
||||
msgid "Struct marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr ""
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr ""
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr ""
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr ""
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr ""
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr ""
|
||||
msgid "Tomorrow"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr ""
|
||||
msgid "Unstar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr ""
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr ""
|
||||
msgid "Update area"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr ""
|
||||
msgid "Update struct"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr ""
|
||||
msgid "Using coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr ""
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,6 +18,10 @@ msgstr ""
|
||||
msgid "{doneCount}/{0} tasks"
|
||||
msgstr "{doneCount}/{0} 个待办"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:160
|
||||
msgid "{label}"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/AIChat/message.tsx:166
|
||||
msgid "{toolName} completed"
|
||||
msgstr "{toolName} 调用已完成"
|
||||
@@ -84,15 +88,10 @@ msgstr "提前5分钟"
|
||||
msgid "A brief your introduction."
|
||||
msgstr "介绍一下你自己"
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "A structured note-taking App"
|
||||
msgstr "一个结构化的笔记软件"
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:116
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:79
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:84
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:33
|
||||
msgid "About"
|
||||
msgstr "关于"
|
||||
|
||||
@@ -108,7 +107,7 @@ msgstr "账户已成功删除!"
|
||||
msgid "Account deletion in progress..."
|
||||
msgstr "账户删除处理中…"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:104
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:96
|
||||
msgid "Actions"
|
||||
msgstr "操作"
|
||||
|
||||
@@ -139,6 +138,10 @@ msgstr "新增选项"
|
||||
msgid "Add property"
|
||||
msgstr "新增属性"
|
||||
|
||||
#: packages/components/src/AISetting/provider-dropdown-menu.tsx:39
|
||||
msgid "Add Provider"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServer.tsx:48
|
||||
msgid "Add sync server"
|
||||
msgstr "添加同步服务器"
|
||||
@@ -147,7 +150,7 @@ msgstr "添加同步服务器"
|
||||
msgid "Add tag"
|
||||
msgstr "添加标签"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:211
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:212
|
||||
msgid "Add to Favorites"
|
||||
msgstr "添加到收藏"
|
||||
|
||||
@@ -155,7 +158,7 @@ msgstr "添加到收藏"
|
||||
msgid "Add widget"
|
||||
msgstr "添加组件"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:197
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:198
|
||||
msgid "Added to Favorites"
|
||||
msgstr "已添加到收藏"
|
||||
|
||||
@@ -169,10 +172,19 @@ msgstr "AI 聊天"
|
||||
msgid "AI Chat"
|
||||
msgstr "AI 聊天"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:456
|
||||
msgid "AI Command"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:109
|
||||
msgid "AI features for notes"
|
||||
msgstr "AI 笔记功能"
|
||||
|
||||
#: apps/mobile/src/components/Profile/AboutMenu.tsx:48
|
||||
#: packages/components/src/SettingsDialog/About.tsx:18
|
||||
msgid "AI Powered Personal Data Hub"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/CreationItem/CreationItem.tsx:272
|
||||
#: packages/components/src/CreationCard/CreationCard.tsx:249
|
||||
msgid "AI transcribe"
|
||||
@@ -229,8 +241,8 @@ msgid "An Introduction to PenX and How to Use It"
|
||||
msgstr "PenX介绍与使用方法"
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:104
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:42
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:24
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:44
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
msgid "Appearance"
|
||||
msgstr "外观"
|
||||
|
||||
@@ -276,16 +288,20 @@ msgstr "备份到 Google 云盘"
|
||||
msgid "Backup to google drive successful!"
|
||||
msgstr "备份到 Google 云盘成功!"
|
||||
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:156
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:45
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:22
|
||||
msgid "Believer"
|
||||
msgstr "信徒"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
msgid "Billing"
|
||||
msgstr "账单"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:65
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:70
|
||||
msgid "Billing & Subscriptions"
|
||||
msgstr "账单与订阅"
|
||||
|
||||
@@ -293,7 +309,7 @@ msgstr "账单与订阅"
|
||||
msgid "Bio"
|
||||
msgstr "个人简介"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:420
|
||||
#: packages/libs/src/getDefaultStructs.ts:462
|
||||
msgid "Bookmark"
|
||||
msgstr "书签"
|
||||
|
||||
@@ -320,6 +336,7 @@ msgstr "已构建 {0} 项"
|
||||
#: packages/components/src/Creation/PublishDialog/PublishForm.tsx:243
|
||||
#: packages/components/src/Creation/DeleteCreationDialog/DeleteCreationDialog.tsx:66
|
||||
#: packages/components/src/AreasPopover/DeleteAreaDialog/DeleteAreaDialog.tsx:61
|
||||
#: packages/components/src/AISetting/ProviderDialog.tsx:185
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
@@ -353,7 +370,7 @@ msgid "Change type"
|
||||
msgstr "更改类型"
|
||||
|
||||
#: apps/mobile/src/components/UpgradeDrawer/UpgradeContent.tsx:83
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:176
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:175
|
||||
msgid "Cloud sync"
|
||||
msgstr "云端同步"
|
||||
|
||||
@@ -364,12 +381,11 @@ msgid "Collection"
|
||||
msgstr "合集"
|
||||
|
||||
#: apps/mobile/src/components/ColorSelector.tsx:45
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:142
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:49
|
||||
msgid "Color"
|
||||
msgstr "颜色"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:51
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:61
|
||||
msgid "Commands"
|
||||
msgstr "命令"
|
||||
|
||||
@@ -381,7 +397,7 @@ msgstr "配置"
|
||||
msgid "Configure shortcut"
|
||||
msgstr "配置快捷键"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:136
|
||||
msgid "Configure Shortcut"
|
||||
msgstr "配置快捷键"
|
||||
|
||||
@@ -400,11 +416,11 @@ msgstr "确认密码"
|
||||
msgid "Confirm Publishing"
|
||||
msgstr "确定发布?"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
msgid "Content"
|
||||
msgstr "内容"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:138
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:137
|
||||
#: packages/components/src/ProfileBasicInfo.tsx:53
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:39
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoveryPhrase.tsx:106
|
||||
@@ -428,10 +444,10 @@ msgstr "复制到剪切板"
|
||||
msgid "Coupon code applied successfully"
|
||||
msgstr "优惠码已成功使用"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:36
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:24
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageSettings.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:22
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:23
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:21
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:64
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:82
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:49
|
||||
@@ -460,7 +476,7 @@ msgstr "创建账户"
|
||||
msgid "Create struct"
|
||||
msgstr "创建结构体"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:68
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:67
|
||||
msgid "Create Struct"
|
||||
msgstr "创建结构体"
|
||||
|
||||
@@ -479,8 +495,8 @@ msgid "Created date"
|
||||
msgstr "创建日期"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/QuickInputApp/QuickInputApp.tsx:58
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:41
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageQuickInput.tsx:40
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageCreateQuicklink.tsx:39
|
||||
msgid "Created successfully"
|
||||
msgstr "创建成功"
|
||||
|
||||
@@ -488,14 +504,19 @@ msgstr "创建成功"
|
||||
msgid "Creation counts"
|
||||
msgstr "创作数量"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:226
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:227
|
||||
msgid "Creation deleted successfully"
|
||||
msgstr "创作删除成功"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:66
|
||||
msgid "Creations"
|
||||
msgstr "创作"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:58
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
msgid "Custom AI Provider"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/EditPropertyDrawer/EditPropertyDrawer.tsx:143
|
||||
msgid "Daily"
|
||||
msgstr "每日"
|
||||
@@ -537,7 +558,7 @@ msgstr "删除"
|
||||
msgid "Delete account"
|
||||
msgstr "删除账户"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:241
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:242
|
||||
msgid "Delete Creation"
|
||||
msgstr "删除创作"
|
||||
|
||||
@@ -545,7 +566,7 @@ msgstr "删除创作"
|
||||
msgid "Delete record"
|
||||
msgstr "删除记录"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:271
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:274
|
||||
msgid "Delete Struct"
|
||||
msgstr "删除结构体"
|
||||
|
||||
@@ -624,7 +645,7 @@ msgstr "编辑属性"
|
||||
msgid "Edit struct"
|
||||
msgstr "编辑结构体"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:117
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:118
|
||||
msgid "Edit Struct"
|
||||
msgstr "编辑结构体"
|
||||
|
||||
@@ -659,11 +680,15 @@ msgstr "邮箱登录"
|
||||
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:54
|
||||
#: apps/mobile/src/components/MobilePropList/PropItem.tsx:91
|
||||
#: packages/components/src/Creation/PropList/UrlInputProp.tsx:21
|
||||
#: packages/components/src/Creation/PropList/TextareaProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/TextInputProp.tsx:20
|
||||
#: packages/components/src/Creation/PropList/SingleSelectProp.tsx:61
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:57
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:99
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:111
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:13
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:77
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:87
|
||||
#: packages/components/src/Creation/PropList/PropItem.tsx:95
|
||||
#: packages/components/src/Creation/PropList/PasswordProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/NumberInputProp.tsx:22
|
||||
#: packages/components/src/Creation/PropList/MultipleSelectProp.tsx:60
|
||||
msgid "Empty"
|
||||
msgstr "空白"
|
||||
@@ -684,8 +709,8 @@ msgstr "端到端加密"
|
||||
msgid "Execute Changes"
|
||||
msgstr "执行更改"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:231
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:261
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:232
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:264
|
||||
msgid "Failed to delete"
|
||||
msgstr "删除失败"
|
||||
|
||||
@@ -698,7 +723,7 @@ msgid "Failed to execute changes. Please try again."
|
||||
msgstr "执行更改失败,请重试。"
|
||||
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:113
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:35
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:45
|
||||
#: packages/widgets/src/WidgetName.tsx:30
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:102
|
||||
msgid "Favorites"
|
||||
@@ -725,7 +750,7 @@ msgstr "免费"
|
||||
msgid "Fri"
|
||||
msgstr "周五"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:295
|
||||
#: packages/libs/src/getDefaultStructs.ts:326
|
||||
msgid "Gallery"
|
||||
msgstr "画廊"
|
||||
|
||||
@@ -785,9 +810,8 @@ msgstr "我有优惠码,现在去使用。"
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:375
|
||||
#: packages/libs/src/getDefaultStructs.ts:408
|
||||
#: packages/components/src/ColumnTypeName.tsx:27
|
||||
#: packages/components/src/AppProvider/AppService.ts:206
|
||||
msgid "Image"
|
||||
msgstr "图片"
|
||||
|
||||
@@ -832,7 +856,7 @@ msgstr "日记布局"
|
||||
msgid "Journals"
|
||||
msgstr "日记"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
msgid "Keyword"
|
||||
msgstr "关键词"
|
||||
|
||||
@@ -859,13 +883,13 @@ msgstr "评价 PenX"
|
||||
msgid "Light"
|
||||
msgstr "浅色"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:246
|
||||
#: packages/libs/src/getDefaultStructs.ts:277
|
||||
msgid "Link"
|
||||
msgstr "链接"
|
||||
|
||||
#: apps/mobile/src/components/Profile/JournalLayoutMenu.tsx:84
|
||||
#: packages/libs/src/getDefaultStructs.ts:134
|
||||
#: packages/libs/src/getDefaultStructs.ts:309
|
||||
#: packages/libs/src/getDefaultStructs.ts:340
|
||||
#: packages/components/src/AppProvider/lib/fixTaskStruct.ts:70
|
||||
msgid "List"
|
||||
msgstr "列表"
|
||||
@@ -895,7 +919,7 @@ msgstr ""
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:173
|
||||
#: apps/mobile/src/components/Profile/Profile.tsx:183
|
||||
#: packages/components/src/ProfileButton.tsx:285
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:93
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:98
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:149
|
||||
msgid "Log out"
|
||||
msgstr "退出登录"
|
||||
@@ -946,6 +970,10 @@ msgstr "会员"
|
||||
msgid "Model"
|
||||
msgstr "模型"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:227
|
||||
msgid "Model select"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageTasks/PageTasks.tsx:97
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelTasks/UpcomingTasks.tsx:27
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelJournal/JournalTitleWidget.tsx:61
|
||||
@@ -960,19 +988,19 @@ msgstr "月"
|
||||
msgid "Monthly"
|
||||
msgstr "每月"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:182
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:183
|
||||
msgid "Move Down in Favorites"
|
||||
msgstr "在收藏中下移"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:158
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:159
|
||||
msgid "Move Up in Favorites"
|
||||
msgstr "在收藏中上移"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:168
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:169
|
||||
msgid "Moved down in Favorites"
|
||||
msgstr "已在收藏中下移"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:147
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:148
|
||||
msgid "Moved up in Favorites"
|
||||
msgstr "已在收藏中上移"
|
||||
|
||||
@@ -1022,7 +1050,6 @@ msgstr "我的结构体"
|
||||
#: apps/mobile/src/components/MobileTags/AddTagDrawer.tsx:76
|
||||
#: apps/mobile/src/components/AreasMenu/CreateArea.tsx:61
|
||||
#: packages/components/src/area-widgets/widgets/TaskNavWidget/MyListForm.tsx:52
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:94
|
||||
#: packages/components/src/StructDialog/CreateStructForm.tsx:65
|
||||
#: packages/components/src/SettingsDialog/Profile.tsx:93
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/ManageTags/ManageTags.tsx:52
|
||||
@@ -1046,7 +1073,7 @@ msgstr "创建列表"
|
||||
msgid "New property"
|
||||
msgstr "新建属性"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:96
|
||||
#: apps/electron/src/renderer/src/components/WatchEvent.tsx:130
|
||||
msgid "New version available, restarting to update..."
|
||||
msgstr "新版本可用,正在重启以更新..."
|
||||
|
||||
@@ -1077,7 +1104,7 @@ msgstr "暂无创作!"
|
||||
msgid "No introduction for the struct"
|
||||
msgstr "该结构体暂无介绍!"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:87
|
||||
#: apps/electron/src/renderer/src/components/Panel/CommandApp/DatabaseApp/DatabaseDetail.tsx:89
|
||||
msgid "No results found"
|
||||
msgstr "未找到结果"
|
||||
|
||||
@@ -1109,7 +1136,7 @@ msgstr "无"
|
||||
msgid "Not enabled"
|
||||
msgstr "未启用"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:369
|
||||
#: packages/libs/src/getDefaultStructs.ts:400
|
||||
msgid "Note"
|
||||
msgstr "笔记"
|
||||
|
||||
@@ -1150,7 +1177,7 @@ msgstr "在新面板中打开"
|
||||
msgid "Open Search Panel"
|
||||
msgstr "打开搜索面板"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:258
|
||||
#: packages/libs/src/getDefaultStructs.ts:289
|
||||
msgid "Open with"
|
||||
msgstr "打开方式"
|
||||
|
||||
@@ -1164,7 +1191,7 @@ msgstr "操作"
|
||||
msgid "Options"
|
||||
msgstr "选项"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:352
|
||||
#: packages/libs/src/getDefaultStructs.ts:383
|
||||
msgid "Page"
|
||||
msgstr "页面"
|
||||
|
||||
@@ -1176,7 +1203,6 @@ msgstr "页面"
|
||||
#: packages/widgets/src/LoginDialog/LoginForm.tsx:102
|
||||
#: packages/components/src/ColumnTypeName.tsx:26
|
||||
#: packages/components/src/database-ui/views/TableView/FieldSelectPopover.tsx:19
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:56
|
||||
#: packages/components/src/SettingsDialog/Password.tsx:85
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:113
|
||||
#: packages/components/src/SettingsDialog/RecoveryPhrase/RecoverManually.tsx:66
|
||||
@@ -1194,7 +1220,7 @@ msgstr "同步服务器密码,密码仅本地存储。"
|
||||
msgid "Passwords do not match"
|
||||
msgstr "密码不匹配"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:156
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:155
|
||||
msgid "PenX Account"
|
||||
msgstr "PenX 账户"
|
||||
|
||||
@@ -1244,14 +1270,10 @@ msgstr "请查看您的邮箱获取验证码。"
|
||||
msgid "Please enter the verification code."
|
||||
msgstr "请输入验证码"
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:155
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:177
|
||||
msgid "Please wait for the model to finish its response!"
|
||||
msgstr "请等待模型完成回复!"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:110
|
||||
msgid "Plural name"
|
||||
msgstr "复数名称"
|
||||
|
||||
#: packages/components/src/Creation/Tags.tsx:124
|
||||
msgid "Press Enter to add a tag."
|
||||
msgstr "按回车键添加标签。"
|
||||
@@ -1297,13 +1319,13 @@ msgstr "专业版年付"
|
||||
msgid "Processing..."
|
||||
msgstr "处理中..."
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:45
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:25
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:47
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
msgid "Profile"
|
||||
msgstr "个人信息"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:414
|
||||
#: packages/components/src/AppProvider/AppService.ts:235
|
||||
#: packages/libs/src/getDefaultStructs.ts:215
|
||||
#: packages/libs/src/getDefaultStructs.ts:450
|
||||
msgid "Prompt"
|
||||
msgstr "提示词"
|
||||
|
||||
@@ -1322,6 +1344,10 @@ msgstr "属性"
|
||||
msgid "Publish"
|
||||
msgstr "发布"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageEditStruct.tsx:25
|
||||
msgid "Publish Struct"
|
||||
msgstr ""
|
||||
|
||||
#: apps/mobile/src/pages/PageStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: apps/mobile/src/pages/PagePublishedStructInfo/StructInfoFooter/StructInfoFooter.tsx:81
|
||||
#: packages/components/src/database-ui/TableInfo.tsx:68
|
||||
@@ -1336,8 +1362,7 @@ msgstr "发布您的创作"
|
||||
msgid "Quick input"
|
||||
msgstr "快速输入"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:409
|
||||
#: packages/components/src/AppProvider/AppService.ts:250
|
||||
#: packages/libs/src/getDefaultStructs.ts:444
|
||||
msgid "Quicklink"
|
||||
msgstr "快速链接"
|
||||
|
||||
@@ -1376,8 +1401,12 @@ msgstr "恢复失败"
|
||||
msgid "Recovery password"
|
||||
msgstr "恢复密码"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:62
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:28
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:61
|
||||
msgid "Recovery Password"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:67
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
msgid "Recovery phrase"
|
||||
msgstr "恢复短语"
|
||||
|
||||
@@ -1407,7 +1436,7 @@ msgstr "提醒"
|
||||
msgid "remove"
|
||||
msgstr "移除"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:209
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:210
|
||||
msgid "Remove from Favorites"
|
||||
msgstr "从收藏中移除"
|
||||
|
||||
@@ -1420,7 +1449,7 @@ msgstr "删除提醒"
|
||||
msgid "Removed {0} items"
|
||||
msgstr "已移除 {0} 项"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:194
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:195
|
||||
msgid "Removed from Favorites"
|
||||
msgstr "已从收藏中移除"
|
||||
|
||||
@@ -1465,7 +1494,7 @@ msgstr "保存"
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:149
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/ActionPopover.tsx:141
|
||||
msgid "Search for actions..."
|
||||
msgstr "搜索操作..."
|
||||
|
||||
@@ -1487,7 +1516,7 @@ msgstr "选择颜色"
|
||||
msgid "Select property type"
|
||||
msgstr "选择属性类型"
|
||||
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:137
|
||||
#: packages/components/src/AIChat/multimodal-input.tsx:156
|
||||
msgid "Send a message..."
|
||||
msgstr "发送消息..."
|
||||
|
||||
@@ -1500,7 +1529,7 @@ msgid "Setting"
|
||||
msgstr "设置"
|
||||
|
||||
#: apps/mobile/src/pages/PageProfile.tsx:13
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:196
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:195
|
||||
#: packages/components/src/ProfileButton.tsx:236
|
||||
#: packages/components/src/Profile/ProfilePopover.tsx:123
|
||||
#: packages/components/src/AreasPopover/AreaMenu.tsx:85
|
||||
@@ -1515,8 +1544,8 @@ msgstr "分享"
|
||||
msgid "Share note to friends"
|
||||
msgstr "分享笔记"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:52
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:29
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:54
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:31
|
||||
msgid "Shortcuts"
|
||||
msgstr "快捷键"
|
||||
|
||||
@@ -1532,7 +1561,7 @@ msgstr "显示恢复短语"
|
||||
msgid "Sign in"
|
||||
msgstr "登录"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:39
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageLogin.tsx:38
|
||||
msgid "Sign in to PenX"
|
||||
msgstr "登录 PenX"
|
||||
|
||||
@@ -1551,8 +1580,7 @@ msgstr "单选"
|
||||
msgid "Slug"
|
||||
msgstr "别名"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:404
|
||||
#: packages/components/src/AppProvider/AppService.ts:222
|
||||
#: packages/libs/src/getDefaultStructs.ts:439
|
||||
msgid "Snippet"
|
||||
msgstr "代码片段"
|
||||
|
||||
@@ -1576,7 +1604,7 @@ msgstr "状态"
|
||||
msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:255
|
||||
#: apps/electron/src/renderer/src/components/Panel/SearchBar/RootActions.tsx:256
|
||||
msgid "Struct deleted successfully"
|
||||
msgstr "结构体删除成功"
|
||||
|
||||
@@ -1589,7 +1617,7 @@ msgstr "安装结构体成功!"
|
||||
msgid "Struct marketplace"
|
||||
msgstr "结构体市场"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:116
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:115
|
||||
msgid "Struct Marketplace"
|
||||
msgstr ""
|
||||
|
||||
@@ -1608,7 +1636,7 @@ msgstr "发布结构体成功!"
|
||||
#: apps/mobile/src/pages/PageAllStructs/PageAllStructs.tsx:16
|
||||
#: apps/mobile/src/components/Profile/StructsMenu.tsx:24
|
||||
#: apps/mobile/src/components/EditWidget/AddWidgetButton.tsx:148
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:46
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageRoot.tsx:56
|
||||
#: packages/widgets/src/WidgetName.tsx:22
|
||||
#: packages/components/src/area-widgets/AddWidgetButton.tsx:136
|
||||
#: packages/components/src/DashboardLayout/panel-renderer/PanelStructs/PanelStructs.tsx:27
|
||||
@@ -1673,8 +1701,8 @@ msgstr "立即同步"
|
||||
msgid "Sync only over Wi-Fi"
|
||||
msgstr "只通过 Wi-Fi 同步"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:68
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:30
|
||||
#: packages/components/src/SettingsDialog/SettingsSidebar.tsx:73
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:32
|
||||
msgid "Sync server"
|
||||
msgstr "同步服务器"
|
||||
|
||||
@@ -1699,7 +1727,7 @@ msgstr "同步中..."
|
||||
msgid "System"
|
||||
msgstr "跟随系统"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:281
|
||||
#: packages/libs/src/getDefaultStructs.ts:312
|
||||
msgid "Table"
|
||||
msgstr "表格"
|
||||
|
||||
@@ -1722,7 +1750,7 @@ msgstr "标签名"
|
||||
msgid "Tags"
|
||||
msgstr "标签"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:393
|
||||
#: packages/libs/src/getDefaultStructs.ts:426
|
||||
msgid "Task"
|
||||
msgstr "待办"
|
||||
|
||||
@@ -1791,8 +1819,8 @@ msgstr "今天"
|
||||
msgid "Tomorrow"
|
||||
msgstr "明天"
|
||||
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:136
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:101
|
||||
#: apps/electron/src/renderer/src/lib/getBuiltinCommands.ts:135
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:100
|
||||
msgid "Translate"
|
||||
msgstr ""
|
||||
|
||||
@@ -1800,7 +1828,7 @@ msgstr ""
|
||||
msgid "Translate failed, please try again"
|
||||
msgstr ""
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:114
|
||||
#: apps/electron/src/renderer/src/components/Panel/pages/PageTranslate.tsx:113
|
||||
msgid "Translate text"
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1862,7 @@ msgstr "无限创建笔记"
|
||||
msgid "Unstar"
|
||||
msgstr "取消收藏"
|
||||
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:95
|
||||
#: apps/electron/src/renderer/src/components/Panel/ListItemUI.tsx:98
|
||||
msgid "Untitled"
|
||||
msgstr "无标题"
|
||||
|
||||
@@ -1847,7 +1875,7 @@ msgstr "无标题"
|
||||
msgid "Upcoming"
|
||||
msgstr "未来"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:158
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:259
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
||||
@@ -1856,7 +1884,7 @@ msgstr "更新"
|
||||
msgid "Update area"
|
||||
msgstr "更新领域"
|
||||
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:26
|
||||
#: packages/components/src/SettingsDialog/SettingsContent.tsx:27
|
||||
msgid "Update password"
|
||||
msgstr "修改密码"
|
||||
|
||||
@@ -1864,7 +1892,7 @@ msgstr "修改密码"
|
||||
msgid "Update struct"
|
||||
msgstr "更新结构体"
|
||||
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:77
|
||||
#: packages/components/src/StructDialog/EditStructForm.tsx:195
|
||||
msgid "Update struct successfully"
|
||||
msgstr "结构体更新成功"
|
||||
|
||||
@@ -1903,7 +1931,7 @@ msgstr "正在调用{toolName}..."
|
||||
msgid "Using coupon code"
|
||||
msgstr "使用优惠码"
|
||||
|
||||
#: packages/libs/src/getDefaultStructs.ts:399
|
||||
#: packages/libs/src/getDefaultStructs.ts:433
|
||||
msgid "Voice"
|
||||
msgstr "语音"
|
||||
|
||||
@@ -1939,6 +1967,10 @@ msgstr "年"
|
||||
msgid "Yearly"
|
||||
msgstr "每年"
|
||||
|
||||
#: packages/components/src/AISetting/provider-setting.tsx:48
|
||||
msgid "Your Providers"
|
||||
msgstr ""
|
||||
|
||||
#: packages/components/src/SettingsDialog/SyncServer/SyncServerForm.tsx:97
|
||||
msgid "Your sync server host, e.g. https://sync.penx.io"
|
||||
msgstr "您的同步服务器主机,例如 https://sync.penx.io"
|
||||
|
||||
52
packages/node-fn-listener/index.d.ts
vendored
52
packages/node-fn-listener/index.d.ts
vendored
@@ -143,31 +143,51 @@ export declare class EventParseError extends NodeFnListenerError {
|
||||
|
||||
// Constants
|
||||
export const EVENT_TYPES: {
|
||||
KEYDOWN: 'keydown';
|
||||
KEYUP: 'keyup';
|
||||
readonly KEYDOWN: 'keydown';
|
||||
readonly KEYUP: 'keyup';
|
||||
} = {
|
||||
KEYDOWN: 'keydown',
|
||||
KEYUP: 'keyup',
|
||||
};
|
||||
|
||||
export const LISTENER_STATES: {
|
||||
IDLE: 'idle';
|
||||
STARTING: 'starting';
|
||||
RUNNING: 'running';
|
||||
STOPPING: 'stopping';
|
||||
ERROR: 'error';
|
||||
readonly IDLE: 'idle';
|
||||
readonly STARTING: 'starting';
|
||||
readonly RUNNING: 'running';
|
||||
readonly STOPPING: 'stopping';
|
||||
readonly ERROR: 'error';
|
||||
} = {
|
||||
IDLE: 'idle',
|
||||
STARTING: 'starting',
|
||||
RUNNING: 'running',
|
||||
STOPPING: 'stopping',
|
||||
ERROR: 'error',
|
||||
};
|
||||
|
||||
export const ERROR_TYPES: {
|
||||
PERMISSION_DENIED: 'PERMISSION_DENIED';
|
||||
LISTENER_ALREADY_RUNNING: 'LISTENER_ALREADY_RUNNING';
|
||||
LISTENER_NOT_RUNNING: 'LISTENER_NOT_RUNNING';
|
||||
NATIVE_MODULE_ERROR: 'NATIVE_MODULE_ERROR';
|
||||
INVALID_EVENT_MESSAGE: 'INVALID_EVENT_MESSAGE';
|
||||
readonly PERMISSION_DENIED: 'PERMISSION_DENIED';
|
||||
readonly LISTENER_ALREADY_RUNNING: 'LISTENER_ALREADY_RUNNING';
|
||||
readonly LISTENER_NOT_RUNNING: 'LISTENER_NOT_RUNNING';
|
||||
readonly NATIVE_MODULE_ERROR: 'NATIVE_MODULE_ERROR';
|
||||
readonly INVALID_EVENT_MESSAGE: 'INVALID_EVENT_MESSAGE';
|
||||
} = {
|
||||
PERMISSION_DENIED: 'PERMISSION_DENIED',
|
||||
LISTENER_ALREADY_RUNNING: 'LISTENER_ALREADY_RUNNING',
|
||||
LISTENER_NOT_RUNNING: 'LISTENER_NOT_RUNNING',
|
||||
NATIVE_MODULE_ERROR: 'NATIVE_MODULE_ERROR',
|
||||
INVALID_EVENT_MESSAGE: 'INVALID_EVENT_MESSAGE',
|
||||
};
|
||||
|
||||
export const LOG_LEVELS: {
|
||||
DEBUG: 0;
|
||||
INFO: 1;
|
||||
WARN: 2;
|
||||
ERROR: 3;
|
||||
readonly DEBUG: 0;
|
||||
readonly INFO: 1;
|
||||
readonly WARN: 2;
|
||||
readonly ERROR: 3;
|
||||
} = {
|
||||
DEBUG: 0,
|
||||
INFO: 1,
|
||||
WARN: 2,
|
||||
ERROR: 3,
|
||||
};
|
||||
|
||||
// Utility functions
|
||||
|
||||
@@ -44,7 +44,6 @@ export class StructsStore {
|
||||
const area = this.store.area.get()
|
||||
const structs = this.get()
|
||||
const newStruct = generateStructNode({
|
||||
type: uniqueId(),
|
||||
...input,
|
||||
areaId: area.id,
|
||||
spaceId: site.id,
|
||||
|
||||
@@ -37,7 +37,7 @@ function DialogOverlay({
|
||||
<DialogPrimitive.Overlay
|
||||
data-slot="dialog-overlay"
|
||||
className={cn(
|
||||
'data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50',
|
||||
'data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-white/80 backdrop-grayscale backdrop-blur-sm dark:bg-black/50',
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
|
||||
Reference in New Issue
Block a user