mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 02:26:21 +08:00
refactor: change locale key (#3838)
This commit is contained in:
@@ -22,7 +22,7 @@ export const NoAccess: FC<AuthPanelProps> = ({ setAuthState, onSignedIn }) => {
|
||||
return (
|
||||
<>
|
||||
<ModalHeader
|
||||
title={t['AFFiNE Cloud']()}
|
||||
title={t['com.affine.brand.affineCloud']()}
|
||||
subTitle={t['Early Access Stage']()}
|
||||
/>
|
||||
<AuthContent style={{ height: 162 }}>
|
||||
|
||||
@@ -147,7 +147,10 @@ export const SendEmail = ({
|
||||
|
||||
return (
|
||||
<>
|
||||
<ModalHeader title={t['AFFiNE Cloud']()} subTitle={title} />
|
||||
<ModalHeader
|
||||
title={t['com.affine.brand.affineCloud']()}
|
||||
subTitle={title}
|
||||
/>
|
||||
<AuthContent>{t['com.affine.auth.reset.password.message']()}</AuthContent>
|
||||
|
||||
<Wrapper
|
||||
|
||||
@@ -55,7 +55,7 @@ export const SignInWithPassword: FC<AuthPanelProps> = ({
|
||||
<>
|
||||
<ModalHeader
|
||||
title={t['com.affine.auth.sign.in']()}
|
||||
subTitle={t['AFFiNE Cloud']()}
|
||||
subTitle={t['com.affine.brand.affineCloud']()}
|
||||
/>
|
||||
|
||||
<Wrapper
|
||||
|
||||
@@ -78,7 +78,7 @@ export const SignIn: FC<AuthPanelProps> = ({
|
||||
<>
|
||||
<ModalHeader
|
||||
title={t['com.affine.auth.sign.in']()}
|
||||
subTitle={t['AFFiNE Cloud']()}
|
||||
subTitle={t['com.affine.brand.affineCloud']()}
|
||||
/>
|
||||
|
||||
<Button
|
||||
|
||||
@@ -65,8 +65,10 @@ const NameWorkspaceContent = ({
|
||||
const t = useAFFiNEI18N();
|
||||
return (
|
||||
<div className={style.content}>
|
||||
<div className={style.contentTitle}>{t['Name Your Workspace']()}</div>
|
||||
<p>{t['Workspace description']()}</p>
|
||||
<div className={style.contentTitle}>
|
||||
{t['com.affine.nameWorkspace.title']()}
|
||||
</div>
|
||||
<p>{t['com.affine.nameWorkspace.description']()}</p>
|
||||
<Input
|
||||
ref={ref => {
|
||||
if (ref) {
|
||||
@@ -75,14 +77,14 @@ const NameWorkspaceContent = ({
|
||||
}}
|
||||
data-testid="create-workspace-input"
|
||||
onKeyDown={handleKeyDown}
|
||||
placeholder={t['Set a Workspace name']()}
|
||||
placeholder={t['com.affine.nameWorkspace.placeholder']()}
|
||||
maxLength={64}
|
||||
minLength={0}
|
||||
onChange={setWorkspaceName}
|
||||
/>
|
||||
<div className={style.buttonGroup}>
|
||||
<Button data-testid="create-workspace-close-button" onClick={onClose}>
|
||||
{t.Cancel()}
|
||||
{t['com.affine.nameWorkspace.button.cancel']()}
|
||||
</Button>
|
||||
<Button
|
||||
data-testid="create-workspace-create-button"
|
||||
@@ -93,7 +95,7 @@ const NameWorkspaceContent = ({
|
||||
type="primary"
|
||||
onClick={handleCreateWorkspace}
|
||||
>
|
||||
{t.Create()}
|
||||
{t['com.affine.nameWorkspace.button.create']()}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -150,8 +152,10 @@ const SetDBLocationContent = ({
|
||||
|
||||
return (
|
||||
<div className={style.content}>
|
||||
<div className={style.contentTitle}>{t['Set database location']()}</div>
|
||||
<p>{t['Workspace database storage description']()}</p>
|
||||
<div className={style.contentTitle}>
|
||||
{t['com.affine.setDBLocation.title']()}
|
||||
</div>
|
||||
<p>{t['com.affine.setDBLocation.description']()}</p>
|
||||
<div className={style.buttonGroup}>
|
||||
<Button
|
||||
disabled={opening}
|
||||
@@ -159,10 +163,10 @@ const SetDBLocationContent = ({
|
||||
type="primary"
|
||||
onClick={handleSelectDBFileLocation}
|
||||
>
|
||||
{t['Customize']()}
|
||||
{t['com.affine.setDBLocation.button.customize']()}
|
||||
</Button>
|
||||
<Tooltip
|
||||
content={t['Default db location hint']({
|
||||
content={t['com.affine.setDBLocation.tooltip.defaultLocation']({
|
||||
location: defaultDBLocation,
|
||||
})}
|
||||
portalOptions={{
|
||||
@@ -179,7 +183,7 @@ const SetDBLocationContent = ({
|
||||
iconPosition="end"
|
||||
ref={ref}
|
||||
>
|
||||
{t['Default Location']()}
|
||||
{t['com.affine.setDBLocation.button.defaultLocation']()}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
@@ -201,7 +205,9 @@ const SetSyncingModeContent = ({
|
||||
return (
|
||||
<div className={style.content}>
|
||||
<div className={style.contentTitle}>
|
||||
{t[mode === 'new' ? 'Created Successfully' : 'Added Successfully']()}
|
||||
{mode === 'new'
|
||||
? t['com.affine.setSyncingMode.title.created']()
|
||||
: t['com.affine.setSyncingMode.title.added']()}
|
||||
</div>
|
||||
|
||||
<div className={style.radioGroup}>
|
||||
@@ -212,7 +218,7 @@ const SetSyncingModeContent = ({
|
||||
readOnly
|
||||
checked={!enableCloudSyncing}
|
||||
/>
|
||||
{t['Use on current device only']()}
|
||||
{t['com.affine.setSyncingMode.deviceOnly']()}
|
||||
</label>
|
||||
<label onClick={() => setEnableCloudSyncing(true)}>
|
||||
<input
|
||||
@@ -221,7 +227,7 @@ const SetSyncingModeContent = ({
|
||||
readOnly
|
||||
checked={enableCloudSyncing}
|
||||
/>
|
||||
{t['Sync across devices with AFFiNE Cloud']()}
|
||||
{t['com.affine.setSyncingMode.cloud']()}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
@@ -233,7 +239,7 @@ const SetSyncingModeContent = ({
|
||||
onConfirmMode(enableCloudSyncing);
|
||||
}}
|
||||
>
|
||||
{t['Continue']()}
|
||||
{t['com.affine.setSyncingMode.button.continue']()}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -32,7 +32,7 @@ export const EnableAffineCloudModal = ({
|
||||
<ButtonContainer>
|
||||
<div>
|
||||
<Button onClick={onClose} block>
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.enableAffineCloudModal.button.cancel']()}
|
||||
</Button>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
+8
-6
@@ -40,10 +40,12 @@ export const WorkspaceDeleteModal = ({
|
||||
<Modal open={open} onClose={onClose}>
|
||||
<StyledModalWrapper>
|
||||
<ModalCloseButton onClick={onClose} />
|
||||
<StyledModalHeader>{t['Delete Workspace']()}?</StyledModalHeader>
|
||||
<StyledModalHeader>
|
||||
{t['com.affine.workspaceDelete.title']()}?
|
||||
</StyledModalHeader>
|
||||
{workspace.flavour === WorkspaceFlavour.LOCAL ? (
|
||||
<StyledTextContent>
|
||||
<Trans i18nKey="Delete Workspace Description">
|
||||
<Trans i18nKey="com.affine.workspaceDelete.description">
|
||||
Deleting (
|
||||
<StyledWorkspaceName>
|
||||
{{ workspace: workspaceName } as any}
|
||||
@@ -54,7 +56,7 @@ export const WorkspaceDeleteModal = ({
|
||||
</StyledTextContent>
|
||||
) : (
|
||||
<StyledTextContent>
|
||||
<Trans i18nKey="Delete Workspace Description2">
|
||||
<Trans i18nKey="com.affine.workspaceDelete.description2">
|
||||
Deleting (
|
||||
<StyledWorkspaceName>
|
||||
{{ workspace: workspaceName } as any}
|
||||
@@ -73,14 +75,14 @@ export const WorkspaceDeleteModal = ({
|
||||
}}
|
||||
onChange={setDeleteStr}
|
||||
data-testid="delete-workspace-input"
|
||||
placeholder={t['Placeholder of delete workspace']()}
|
||||
placeholder={t['com.affine.workspaceDelete.placeholder']()}
|
||||
width={315}
|
||||
height={42}
|
||||
/>
|
||||
</StyledInputContent>
|
||||
<StyledButtonContent>
|
||||
<Button onClick={onClose} size="large">
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.workspaceDelete.button.cancel']()}
|
||||
</Button>
|
||||
<Button
|
||||
data-testid="delete-workspace-confirm-button"
|
||||
@@ -90,7 +92,7 @@ export const WorkspaceDeleteModal = ({
|
||||
type="error"
|
||||
style={{ marginLeft: '24px' }}
|
||||
>
|
||||
{t['Delete']()}
|
||||
{t['com.affine.workspaceDelete.button.delete']()}
|
||||
</Button>
|
||||
</StyledButtonContent>
|
||||
</StyledModalWrapper>
|
||||
|
||||
+5
-5
@@ -56,11 +56,11 @@ export const DeleteLeaveWorkspace = ({
|
||||
name={
|
||||
<span style={{ color: 'var(--affine-error-color)' }}>
|
||||
{isOwner
|
||||
? t['com.affine.settings.remove-workspace']()
|
||||
: t['Leave Workspace']()}
|
||||
? t['com.affine.workspaceDelete.title']()
|
||||
: t['com.affine.deleteLeaveWorkspace.leave']()}
|
||||
</span>
|
||||
}
|
||||
desc={t['com.affine.settings.remove-workspace-description']()}
|
||||
desc={t['com.affine.deleteLeaveWorkspace.description']()}
|
||||
style={{ cursor: 'pointer' }}
|
||||
onClick={onLeaveOrDelete}
|
||||
data-testid="delete-workspace-button"
|
||||
@@ -82,8 +82,8 @@ export const DeleteLeaveWorkspace = ({
|
||||
onConfirm={onLeaveConfirm}
|
||||
onCancel={onCloseLeaveModal}
|
||||
onClose={onCloseLeaveModal}
|
||||
title={`${t['Leave Workspace']()}?`}
|
||||
content={t['Leave Workspace hint']()}
|
||||
title={`${t['com.affine.deleteLeaveWorkspace.leave']()}?`}
|
||||
content={t['com.affine.deleteLeaveWorkspace.leaveDescription']()}
|
||||
confirmType="warning"
|
||||
confirmText={t['Leave']()}
|
||||
/>
|
||||
|
||||
@@ -73,7 +73,7 @@ export const WorkspaceSettingDetail = (props: WorkspaceSettingDetailProps) => {
|
||||
<LabelsPanel workspace={workspace} {...props} />
|
||||
</SettingRow>
|
||||
</SettingWrapper>
|
||||
<SettingWrapper title={t['AFFiNE Cloud']()}>
|
||||
<SettingWrapper title={t['com.affine.brand.affineCloud']()}>
|
||||
<PublishPanel workspace={workspace} {...props} />
|
||||
<MembersPanel workspace={workspace} {...props} />
|
||||
</SettingWrapper>
|
||||
|
||||
@@ -22,25 +22,28 @@ export const AboutAffine = () => {
|
||||
return (
|
||||
<>
|
||||
<SettingHeader
|
||||
title={t['About AFFiNE']()}
|
||||
subtitle={t['com.affine.settings.about.message']()}
|
||||
title={t['com.affine.aboutAFFiNE.title']()}
|
||||
subtitle={t['com.affine.aboutAFFiNE.subtitle']()}
|
||||
data-testid="about-title"
|
||||
/>
|
||||
<SettingWrapper title={t['Version']()}>
|
||||
<SettingRow name={t['App Version']()} desc={runtimeConfig.appVersion} />
|
||||
<SettingWrapper title={t['com.affine.aboutAFFiNE.version.title']()}>
|
||||
<SettingRow
|
||||
name={t['Editor Version']()}
|
||||
name={t['com.affine.aboutAFFiNE.version.app']()}
|
||||
desc={runtimeConfig.appVersion}
|
||||
/>
|
||||
<SettingRow
|
||||
name={t['com.affine.aboutAFFiNE.version.editor.title']()}
|
||||
desc={runtimeConfig.editorVersion}
|
||||
/>
|
||||
{runtimeConfig.enableNewSettingUnstableApi && environment.isDesktop ? (
|
||||
<>
|
||||
<SettingRow
|
||||
name={t['Check for updates']()}
|
||||
desc={t['New version is ready']()}
|
||||
></SettingRow>
|
||||
name={t['com.affine.aboutAFFiNE.checkUpdate.title']()}
|
||||
desc={t['com.affine.aboutAFFiNE.checkUpdate.description']()}
|
||||
/>
|
||||
<SettingRow
|
||||
name={t['Check for updates automatically']()}
|
||||
desc={t['com.affine.settings.about.update.check.message']()}
|
||||
name={t['com.affine.aboutAFFiNE.autoCheckUpdate.title']()}
|
||||
desc={t['com.affine.aboutAFFiNE.autoCheckUpdate.description']()}
|
||||
>
|
||||
<Switch
|
||||
checked={appSettings.autoCheckUpdate}
|
||||
@@ -48,8 +51,10 @@ export const AboutAffine = () => {
|
||||
/>
|
||||
</SettingRow>
|
||||
<SettingRow
|
||||
name={t['Download updates automatically']()}
|
||||
desc={t['com.affine.settings.about.update.download.message']()}
|
||||
name={t['com.affine.aboutAFFiNE.autoDownloadUpdate.title']()}
|
||||
desc={t[
|
||||
'com.affine.aboutAFFiNE.autoDownloadUpdate.description'
|
||||
]()}
|
||||
>
|
||||
<Switch
|
||||
checked={appSettings.autoCheckUpdate}
|
||||
@@ -57,8 +62,8 @@ export const AboutAffine = () => {
|
||||
/>
|
||||
</SettingRow>
|
||||
<SettingRow
|
||||
name={t[`Discover what's new`]()}
|
||||
desc={t['Changelog description']()}
|
||||
name={t['com.affine.aboutAFFiNE.changelog.title']()}
|
||||
desc={t['com.affine.aboutAFFiNE.changelog.description']()}
|
||||
style={{ cursor: 'pointer' }}
|
||||
onClick={() => {
|
||||
window.open(runtimeConfig.changelogUrl, '_blank');
|
||||
@@ -69,14 +74,14 @@ export const AboutAffine = () => {
|
||||
</>
|
||||
) : null}
|
||||
</SettingWrapper>
|
||||
<SettingWrapper title={t['Contact with us']()}>
|
||||
<SettingWrapper title={t['com.affine.aboutAFFiNE.contact.title']()}>
|
||||
<a
|
||||
className={link}
|
||||
rel="noreferrer"
|
||||
href="https://affine.pro"
|
||||
target="_blank"
|
||||
>
|
||||
{t['Official Website']()}
|
||||
{t['com.affine.aboutAFFiNE.contact.website']()}
|
||||
<OpenInNewIcon className="icon" />
|
||||
</a>
|
||||
<a
|
||||
@@ -85,11 +90,11 @@ export const AboutAffine = () => {
|
||||
href="https://community.affine.pro"
|
||||
target="_blank"
|
||||
>
|
||||
{t['AFFiNE Community']()}
|
||||
{t['com.affine.aboutAFFiNE.contact.community']()}
|
||||
<OpenInNewIcon className="icon" />
|
||||
</a>
|
||||
</SettingWrapper>
|
||||
<SettingWrapper title={t['Communities']()}>
|
||||
<SettingWrapper title={t['com.affine.aboutAFFiNE.community.title']()}>
|
||||
<div className={communityWrapper}>
|
||||
{relatedLinks.map(({ icon, title, link }) => {
|
||||
return (
|
||||
@@ -107,14 +112,14 @@ export const AboutAffine = () => {
|
||||
})}
|
||||
</div>
|
||||
</SettingWrapper>
|
||||
<SettingWrapper title={t['Info of legal']()}>
|
||||
<SettingWrapper title={t['com.affine.aboutAFFiNE.legal.title']()}>
|
||||
<a
|
||||
className={link}
|
||||
rel="noreferrer"
|
||||
href="https://affine.pro/privacy"
|
||||
target="_blank"
|
||||
>
|
||||
{t['Privacy']()}
|
||||
{t['com.affine.aboutAFFiNE.legal.privacy']()}
|
||||
<OpenInNewIcon className="icon" />
|
||||
</a>
|
||||
<a
|
||||
@@ -123,7 +128,7 @@ export const AboutAffine = () => {
|
||||
href="https://affine.pro/terms"
|
||||
target="_blank"
|
||||
>
|
||||
{t['Terms of Use']()}
|
||||
{t['com.affine.aboutAFFiNE.legal.tos']()}
|
||||
<OpenInNewIcon className="icon" />
|
||||
</a>
|
||||
</SettingWrapper>
|
||||
|
||||
+35
-33
@@ -33,13 +33,13 @@ export const ThemeSettings = () => {
|
||||
)}
|
||||
>
|
||||
<RadioButton value="system" data-testid="system-theme-trigger">
|
||||
{t['system']()}
|
||||
{t['com.affine.themeSettings.system']()}
|
||||
</RadioButton>
|
||||
<RadioButton value="light" data-testid="light-theme-trigger">
|
||||
{t['light']()}
|
||||
{t['com.affine.themeSettings.light']()}
|
||||
</RadioButton>
|
||||
<RadioButton value="dark" data-testid="dark-theme-trigger">
|
||||
{t['dark']()}
|
||||
{t['com.affine.themeSettings.dark']()}
|
||||
</RadioButton>
|
||||
</RadioButtonGroup>
|
||||
);
|
||||
@@ -91,26 +91,26 @@ export const AppearanceSettings = () => {
|
||||
return (
|
||||
<>
|
||||
<SettingHeader
|
||||
title={t['Appearance Settings']()}
|
||||
subtitle={t['Customize your AFFiNE Appearance']()}
|
||||
title={t['com.affine.appearanceSettings.title']()}
|
||||
subtitle={t['com.affine.appearanceSettings.subtitle']()}
|
||||
/>
|
||||
|
||||
<SettingWrapper title={t['Theme']()}>
|
||||
<SettingWrapper title={t['com.affine.appearanceSettings.theme.title']()}>
|
||||
<SettingRow
|
||||
name={t['Color Scheme']()}
|
||||
desc={t['Choose your color scheme']()}
|
||||
name={t['com.affine.appearanceSettings.color.title']()}
|
||||
desc={t['com.affine.appearanceSettings.color.description']()}
|
||||
>
|
||||
<ThemeSettings />
|
||||
</SettingRow>
|
||||
<SettingRow
|
||||
name={t['Font Style']()}
|
||||
desc={t['Choose your font style']()}
|
||||
name={t['com.affine.appearanceSettings.font.title']()}
|
||||
desc={t['com.affine.appearanceSettings.font.description']()}
|
||||
>
|
||||
<FontFamilySettings />
|
||||
</SettingRow>
|
||||
<SettingRow
|
||||
name={t['Display Language']()}
|
||||
desc={t['com.affine.settings.appearance.language-description']()}
|
||||
name={t['com.affine.appearanceSettings.language.title']()}
|
||||
desc={t['com.affine.appearanceSettings.language.description']()}
|
||||
>
|
||||
<div className={settingWrapper}>
|
||||
<LanguageMenu />
|
||||
@@ -118,10 +118,8 @@ export const AppearanceSettings = () => {
|
||||
</SettingRow>
|
||||
{environment.isDesktop ? (
|
||||
<SettingRow
|
||||
name={t['Client Border Style']()}
|
||||
desc={t[
|
||||
'com.affine.settings.appearance.border-style-description'
|
||||
]()}
|
||||
name={t['com.affine.appearanceSettings.clientBorder.title']()}
|
||||
desc={t['com.affine.appearanceSettings.clientBorder.description']()}
|
||||
data-testid="client-border-style-trigger"
|
||||
>
|
||||
<Switch
|
||||
@@ -132,8 +130,8 @@ export const AppearanceSettings = () => {
|
||||
) : null}
|
||||
|
||||
<SettingRow
|
||||
name={t['Full width Layout']()}
|
||||
desc={t['com.affine.settings.appearance.full-width-description']()}
|
||||
name={t['com.affine.appearanceSettings.fullWidth.title']()}
|
||||
desc={t['com.affine.appearanceSettings.fullWidth.description']()}
|
||||
>
|
||||
<Switch
|
||||
data-testid="full-width-layout-trigger"
|
||||
@@ -143,10 +141,8 @@ export const AppearanceSettings = () => {
|
||||
</SettingRow>
|
||||
{runtimeConfig.enableNewSettingUnstableApi && environment.isDesktop ? (
|
||||
<SettingRow
|
||||
name={t['Window frame style']()}
|
||||
desc={t[
|
||||
'com.affine.settings.appearance.window-frame-description'
|
||||
]()}
|
||||
name={t['com.affine.appearanceSettings.windowFrame.title']()}
|
||||
desc={t['com.affine.appearanceSettings.windowFrame.description']()}
|
||||
>
|
||||
<RadioButtonGroup
|
||||
className={settingWrapper}
|
||||
@@ -159,7 +155,7 @@ export const AppearanceSettings = () => {
|
||||
{windowFrameStyleOptions.map(option => {
|
||||
return (
|
||||
<RadioButton value={option} key={option}>
|
||||
{t[option]()}
|
||||
{t[`com.affine.appearanceSettings.windowFrame.${option}`]()}
|
||||
</RadioButton>
|
||||
);
|
||||
})}
|
||||
@@ -168,18 +164,18 @@ export const AppearanceSettings = () => {
|
||||
) : null}
|
||||
</SettingWrapper>
|
||||
{runtimeConfig.enableNewSettingUnstableApi ? (
|
||||
<SettingWrapper title={t['Date']()}>
|
||||
<SettingWrapper title={t['com.affine.appearanceSettings.date.title']()}>
|
||||
<SettingRow
|
||||
name={t['Date Format']()}
|
||||
desc={t['com.affine.settings.appearance.date-format-description']()}
|
||||
name={t['com.affine.appearanceSettings.dateFormat.title']()}
|
||||
desc={t['com.affine.appearanceSettings.dateFormat.description']()}
|
||||
>
|
||||
<div className={settingWrapper}>
|
||||
<DateFormatSetting />
|
||||
</div>
|
||||
</SettingRow>
|
||||
<SettingRow
|
||||
name={t['Start Week On Monday']()}
|
||||
desc={t['com.affine.settings.appearance.start-week-description']()}
|
||||
name={t['com.affine.appearanceSettings.startWeek.title']()}
|
||||
desc={t['com.affine.appearanceSettings.startWeek.description']()}
|
||||
>
|
||||
<Switch
|
||||
checked={appSettings.startWeekOnMonday}
|
||||
@@ -190,10 +186,14 @@ export const AppearanceSettings = () => {
|
||||
) : null}
|
||||
|
||||
{environment.isDesktop ? (
|
||||
<SettingWrapper title={t['Sidebar']()}>
|
||||
<SettingWrapper
|
||||
title={t['com.affine.appearanceSettings.sidebar.title']()}
|
||||
>
|
||||
<SettingRow
|
||||
name={t['com.affine.settings.noise-style']()}
|
||||
desc={t['com.affine.settings.noise-style-description']()}
|
||||
name={t['com.affine.appearanceSettings.noisyBackground.title']()}
|
||||
desc={t[
|
||||
'com.affine.appearanceSettings.noisyBackground.description'
|
||||
]()}
|
||||
>
|
||||
<Switch
|
||||
checked={appSettings.enableNoisyBackground}
|
||||
@@ -204,8 +204,10 @@ export const AppearanceSettings = () => {
|
||||
</SettingRow>
|
||||
{environment.isMacOs && (
|
||||
<SettingRow
|
||||
name={t['com.affine.settings.translucent-style']()}
|
||||
desc={t['com.affine.settings.translucent-style-description']()}
|
||||
name={t['com.affine.appearanceSettings.translucentUI.title']()}
|
||||
desc={t[
|
||||
'com.affine.appearanceSettings.translucentUI.description'
|
||||
]()}
|
||||
>
|
||||
<Switch
|
||||
checked={appSettings.enableBlurBackground}
|
||||
|
||||
@@ -39,7 +39,7 @@ export const useGeneralSettingList = (): GeneralSettingList => {
|
||||
},
|
||||
{
|
||||
key: 'shortcuts',
|
||||
title: t['Keyboard Shortcuts'](),
|
||||
title: t['com.affine.keyboardShortcuts.title'](),
|
||||
icon: KeyboardIcon,
|
||||
testId: 'shortcuts-panel-trigger',
|
||||
},
|
||||
@@ -51,7 +51,7 @@ export const useGeneralSettingList = (): GeneralSettingList => {
|
||||
},
|
||||
{
|
||||
key: 'about',
|
||||
title: t['About AFFiNE'](),
|
||||
title: t['com.affine.aboutAFFiNE.title'](),
|
||||
icon: InformationIcon,
|
||||
testId: 'about-panel-trigger',
|
||||
},
|
||||
|
||||
@@ -49,8 +49,8 @@ export const Shortcuts = () => {
|
||||
return (
|
||||
<>
|
||||
<SettingHeader
|
||||
title={t['Keyboard Shortcuts']()}
|
||||
subtitle={t['Check Keyboard Shortcuts quickly']()}
|
||||
title={t['com.affine.keyboardShortcuts.title']()}
|
||||
subtitle={t['com.affine.keyboardShortcuts.subtitle']()}
|
||||
data-testid="keyboard-shortcuts-title"
|
||||
/>
|
||||
<ShortcutsPanel shortcutsInfo={generalShortcutsInfo} />
|
||||
|
||||
@@ -120,8 +120,12 @@ export const SettingSidebar = ({
|
||||
const loginStatus = useCurrentLoginStatus();
|
||||
return (
|
||||
<div className={settingSlideBar} data-testid="settings-sidebar">
|
||||
<div className={sidebarTitle}>{t['Settings']()}</div>
|
||||
<div className={sidebarSubtitle}>{t['General']()}</div>
|
||||
<div className={sidebarTitle}>
|
||||
{t['com.affine.settingSidebar.title']()}
|
||||
</div>
|
||||
<div className={sidebarSubtitle}>
|
||||
{t['com.affine.settingSidebar.settings.general']()}
|
||||
</div>
|
||||
<div className={sidebarItemsWrapper}>
|
||||
{generalSettingList.map(({ title, icon, key, testId }) => {
|
||||
if (!runtimeConfig.enablePlugin && key === 'plugins') {
|
||||
@@ -147,7 +151,7 @@ export const SettingSidebar = ({
|
||||
</div>
|
||||
|
||||
<div className={sidebarSubtitle}>
|
||||
{t['com.affine.settings.workspace']()}
|
||||
{t['com.affine.settingSidebar.settings.workspace']()}
|
||||
</div>
|
||||
<div className={clsx(sidebarItemsWrapper, 'scroll')}>
|
||||
<Suspense fallback={<WorkspaceListSkeleton />}>
|
||||
|
||||
@@ -60,7 +60,11 @@ export const PageMenu = ({ rename, pageId }: PageMenuProps) => {
|
||||
const { importFile } = usePageHelper(blockSuiteWorkspace);
|
||||
const handleFavorite = useCallback(() => {
|
||||
setPageMeta(pageId, { favorite: !favorite });
|
||||
toast(favorite ? t['Removed from Favorites']() : t['Added to Favorites']());
|
||||
toast(
|
||||
favorite
|
||||
? t['com.affine.toastMessage.removedFavorites']()
|
||||
: t['com.affine.toastMessage.addedFavorites']()
|
||||
);
|
||||
}, [favorite, pageId, setPageMeta, t]);
|
||||
const handleSwitchMode = useCallback(() => {
|
||||
setSetting(setting => ({
|
||||
@@ -68,13 +72,13 @@ export const PageMenu = ({ rename, pageId }: PageMenuProps) => {
|
||||
}));
|
||||
toast(
|
||||
mode === 'page'
|
||||
? t['com.affine.edgelessMode']()
|
||||
: t['com.affine.pageMode']()
|
||||
? t['com.affine.toastMessage.edgelessMode']()
|
||||
: t['com.affine.toastMessage.pageMode']()
|
||||
);
|
||||
}, [mode, setSetting, t]);
|
||||
const handleOnConfirm = useCallback(() => {
|
||||
removeToTrash(pageId);
|
||||
toast(t['Moved to Trash']());
|
||||
toast(t['com.affine.toastMessage.movedTrash']());
|
||||
setOpenConfirm(false);
|
||||
}, [pageId, removeToTrash, t]);
|
||||
const menuItemStyle = {
|
||||
@@ -133,7 +137,9 @@ export const PageMenu = ({ rename, pageId }: PageMenuProps) => {
|
||||
style={menuItemStyle}
|
||||
>
|
||||
{t['Convert to ']()}
|
||||
{mode === 'page' ? t['Edgeless']() : t['Page']()}
|
||||
{mode === 'page'
|
||||
? t['com.affine.pageMode.edgeless']()
|
||||
: t['com.affine.pageMode.page']()}
|
||||
</MenuItem>
|
||||
<MenuItem
|
||||
data-testid="editor-option-menu-favorite"
|
||||
@@ -149,7 +155,9 @@ export const PageMenu = ({ rename, pageId }: PageMenuProps) => {
|
||||
</MenuIcon>
|
||||
}
|
||||
>
|
||||
{favorite ? t['Remove from favorites']() : t['Add to Favorites']()}
|
||||
{favorite
|
||||
? t['com.affine.favoritePageOperation.remove']()
|
||||
: t['com.affine.favoritePageOperation.add']()}
|
||||
</MenuItem>
|
||||
{/* {TODO: add tag and duplicate function support} */}
|
||||
{/* <MenuItem
|
||||
|
||||
@@ -56,10 +56,10 @@ export const EditorModeSwitch = ({
|
||||
e.preventDefault();
|
||||
setSetting(setting => {
|
||||
if (setting?.mode !== 'page') {
|
||||
toast(t['com.affine.pageMode']());
|
||||
toast(t['com.affine.toastMessage.pageMode']());
|
||||
return { ...setting, mode: 'page' };
|
||||
} else {
|
||||
toast(t['com.affine.edgelessMode']());
|
||||
toast(t['com.affine.toastMessage.edgelessMode']());
|
||||
return { ...setting, mode: 'edgeless' };
|
||||
}
|
||||
});
|
||||
@@ -91,7 +91,7 @@ export const EditorModeSwitch = ({
|
||||
onClick={() => {
|
||||
setSetting(setting => {
|
||||
if (setting?.mode !== 'page') {
|
||||
toast(t['com.affine.pageMode']());
|
||||
toast(t['com.affine.toastMessage.pageMode']());
|
||||
}
|
||||
return { ...setting, mode: 'page' };
|
||||
});
|
||||
@@ -105,7 +105,7 @@ export const EditorModeSwitch = ({
|
||||
onClick={() => {
|
||||
setSetting(setting => {
|
||||
if (setting?.mode !== 'edgeless') {
|
||||
toast(t['com.affine.edgelessMode']());
|
||||
toast(t['com.affine.toastMessage.edgelessMode']());
|
||||
}
|
||||
return { ...setting, mode: 'edgeless' };
|
||||
});
|
||||
|
||||
@@ -204,11 +204,15 @@ export const BlockSuitePageList = ({
|
||||
},
|
||||
onRestorePage: () => {
|
||||
restoreFromTrash(pageMeta.id);
|
||||
toast(t['restored']({ title: pageMeta.title || 'Untitled' }));
|
||||
toast(
|
||||
t['com.affine.toastMessage.restored']({
|
||||
title: pageMeta.title || 'Untitled',
|
||||
})
|
||||
);
|
||||
},
|
||||
onPermanentlyDeletePage: () => {
|
||||
permanentlyDeletePage(pageMeta.id);
|
||||
toast(t['Permanently deleted']());
|
||||
toast(t['com.affine.toastMessage.permanentlyDeleted']());
|
||||
},
|
||||
};
|
||||
});
|
||||
@@ -243,17 +247,23 @@ export const BlockSuitePageList = ({
|
||||
},
|
||||
removeToTrash: () => {
|
||||
removeToTrash(pageMeta.id);
|
||||
toast(t['Successfully deleted']());
|
||||
toast(t['com.affine.toastMessage.successfullyDeleted']());
|
||||
},
|
||||
onRestorePage: () => {
|
||||
restoreFromTrash(pageMeta.id);
|
||||
toast(t['restored']({ title: pageMeta.title || 'Untitled' }));
|
||||
toast(
|
||||
t['com.affine.toastMessage.restored']({
|
||||
title: pageMeta.title || 'Untitled',
|
||||
})
|
||||
);
|
||||
},
|
||||
bookmarkPage: () => {
|
||||
const status = pageMeta.favorite;
|
||||
toggleFavorite(pageMeta.id);
|
||||
toast(
|
||||
status ? t['Removed from Favorites']() : t['Added to Favorites']()
|
||||
status
|
||||
? t['com.affine.toastMessage.removedFavorites']()
|
||||
: t['com.affine.toastMessage.addedFavorites']()
|
||||
);
|
||||
},
|
||||
onDisablePublicSharing: () => {
|
||||
|
||||
@@ -24,6 +24,7 @@ const DEFAULT_SHOW_LIST: IslandItemNames[] = [
|
||||
];
|
||||
const DESKTOP_SHOW_LIST: IslandItemNames[] = [...DEFAULT_SHOW_LIST, 'guide'];
|
||||
export type IslandItemNames = 'whatNew' | 'contact' | 'shortcuts' | 'guide';
|
||||
|
||||
export const HelpIsland = ({
|
||||
showList = environment.isDesktop ? DESKTOP_SHOW_LIST : DEFAULT_SHOW_LIST,
|
||||
}: {
|
||||
@@ -61,7 +62,10 @@ export const HelpIsland = ({
|
||||
style={{ height: spread ? `${showList.length * 40 + 4}px` : 0 }}
|
||||
>
|
||||
{showList.includes('whatNew') && (
|
||||
<Tooltip content={t["Discover what's new!"]()} side="left">
|
||||
<Tooltip
|
||||
content={t['com.affine.appUpdater.whatsNew']()}
|
||||
side="left"
|
||||
>
|
||||
<StyledIconWrapper
|
||||
data-testid="right-bottom-change-log-icon"
|
||||
onClick={() => {
|
||||
@@ -73,7 +77,10 @@ export const HelpIsland = ({
|
||||
</Tooltip>
|
||||
)}
|
||||
{showList.includes('contact') && (
|
||||
<Tooltip content={t['Contact Us']()} side="left">
|
||||
<Tooltip
|
||||
content={t['com.affine.helpIsland.contactUs']()}
|
||||
side="left"
|
||||
>
|
||||
<StyledIconWrapper
|
||||
data-testid="right-bottom-contact-us-icon"
|
||||
onClick={openAbout}
|
||||
@@ -83,7 +90,10 @@ export const HelpIsland = ({
|
||||
</Tooltip>
|
||||
)}
|
||||
{showList.includes('shortcuts') && (
|
||||
<Tooltip content={t['Keyboard Shortcuts']()} side="left">
|
||||
<Tooltip
|
||||
content={t['com.affine.keyboardShortcuts.title']()}
|
||||
side="left"
|
||||
>
|
||||
<StyledIconWrapper
|
||||
data-testid="shortcuts-icon"
|
||||
onClick={() => {
|
||||
@@ -113,7 +123,10 @@ export const HelpIsland = ({
|
||||
)}
|
||||
</StyledAnimateWrapper>
|
||||
|
||||
<Tooltip content={t['Help and Feedback']()} side="left">
|
||||
<Tooltip
|
||||
content={t['com.affine.helpIsland.helpAndFeedback']()}
|
||||
side="left"
|
||||
>
|
||||
<MuiFade in={!spread} data-testid="faq-icon">
|
||||
<StyledTriggerWrapper>
|
||||
<HelpIcon />
|
||||
|
||||
@@ -34,7 +34,7 @@ export const useSwitchToConfig = (workspaceId: string): Config[] => {
|
||||
return useMemo(
|
||||
() => [
|
||||
{
|
||||
title: t['All pages'](),
|
||||
title: t['com.affine.workspaceSubPath.all'](),
|
||||
subPath: WorkspaceSubPath.ALL,
|
||||
icon: FolderIcon,
|
||||
},
|
||||
@@ -50,7 +50,7 @@ export const useSwitchToConfig = (workspaceId: string): Config[] => {
|
||||
icon: SettingsIcon,
|
||||
},
|
||||
{
|
||||
title: t['Trash'](),
|
||||
title: t['com.affine.workspaceSubPath.trash'](),
|
||||
subPath: WorkspaceSubPath.TRASH,
|
||||
icon: DeleteTemporarilyIcon,
|
||||
},
|
||||
|
||||
@@ -39,11 +39,15 @@ export const TrashButtonGroup = () => {
|
||||
type="primary"
|
||||
onClick={() => {
|
||||
restoreFromTrash(pageId);
|
||||
toast(t['restored']({ title: pageMeta.title || 'Untitled' }));
|
||||
toast(
|
||||
t['com.affine.toastMessage.restored']({
|
||||
title: pageMeta.title || 'Untitled',
|
||||
})
|
||||
);
|
||||
}}
|
||||
size="large"
|
||||
>
|
||||
{t['Restore it']()}
|
||||
{t['com.affine.trashOperation.restoreIt']()}
|
||||
</Button>
|
||||
</div>
|
||||
<div className={buttonContainer}>
|
||||
@@ -54,19 +58,19 @@ export const TrashButtonGroup = () => {
|
||||
}}
|
||||
size="large"
|
||||
>
|
||||
{t['Delete permanently']()}
|
||||
{t['com.affine.trashOperation.deletePermanently']()}
|
||||
</Button>
|
||||
</div>
|
||||
<Confirm
|
||||
title={t['TrashButtonGroupTitle']()}
|
||||
content={t['TrashButtonGroupDescription']()}
|
||||
confirmText={t['Delete']()}
|
||||
title={t['com.affine.trashOperation.delete.title']()}
|
||||
content={t['com.affine.trashOperation.delete.description']()}
|
||||
confirmText={t['com.affine.trashOperation.delete']()}
|
||||
confirmType="error"
|
||||
open={open}
|
||||
onConfirm={useCallback(() => {
|
||||
jumpToSubPath(workspace.id, WorkspaceSubPath.ALL);
|
||||
blockSuiteWorkspace.removePage(pageId);
|
||||
toast(t['Permanently deleted']());
|
||||
toast(t['com.affine.toastMessage.permanentlyDeleted']());
|
||||
}, [blockSuiteWorkspace, jumpToSubPath, pageId, workspace.id, t])}
|
||||
onCancel={() => {
|
||||
setOpen(false);
|
||||
|
||||
@@ -21,10 +21,12 @@ export const WorkspaceModeFilterTab = () => {
|
||||
onValueChange={handleValueChange}
|
||||
>
|
||||
<RadioButton value="all" style={{ textTransform: 'capitalize' }}>
|
||||
{t['all']()}
|
||||
{t['com.affine.pageMode.all']()}
|
||||
</RadioButton>
|
||||
<RadioButton value="page">{t['com.affine.pageMode.page']()}</RadioButton>
|
||||
<RadioButton value="edgeless">
|
||||
{t['com.affine.pageMode.edgeless']()}
|
||||
</RadioButton>
|
||||
<RadioButton value="page">{t['Page']()}</RadioButton>
|
||||
<RadioButton value="edgeless">{t['Edgeless']()}</RadioButton>
|
||||
</RadioButtonGroup>
|
||||
);
|
||||
};
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ export const AddCollectionButton = ({
|
||||
onConfirm={setting.saveCollection}
|
||||
open={show}
|
||||
onClose={() => showUpdateCollection(false)}
|
||||
title={t['Save as New Collection']()}
|
||||
title={t['com.affine.editCollection.saveCollection']()}
|
||||
init={defaultCollection}
|
||||
/>
|
||||
</>
|
||||
|
||||
@@ -96,7 +96,7 @@ export const PageOperations = ({
|
||||
<DeleteIcon />
|
||||
</MenuIcon>
|
||||
),
|
||||
name: t['Delete'](),
|
||||
name: t['com.affine.trashOperation.delete'](),
|
||||
click: () => {
|
||||
removeToTrash(page.id);
|
||||
},
|
||||
|
||||
@@ -181,7 +181,9 @@ export const RootAppSidebar = ({
|
||||
path={paths.all(currentWorkspaceId)}
|
||||
onClick={backToAll}
|
||||
>
|
||||
<span data-testid="all-pages">{t['All pages']()}</span>
|
||||
<span data-testid="all-pages">
|
||||
{t['com.affine.workspaceSubPath.all']()}
|
||||
</span>
|
||||
</RouteMenuLinkItem>
|
||||
{runtimeConfig.enableNewSettingModal ? (
|
||||
<MenuItem
|
||||
@@ -190,22 +192,22 @@ export const RootAppSidebar = ({
|
||||
onClick={onOpenSettingModal}
|
||||
>
|
||||
<span data-testid="settings-modal-trigger">
|
||||
{t['Settings']()}
|
||||
{t['com.affine.settingSidebar.title']()}
|
||||
</span>
|
||||
</MenuItem>
|
||||
) : null}
|
||||
</SidebarContainer>
|
||||
|
||||
<SidebarScrollableContainer>
|
||||
<CategoryDivider label={t['Favorites']()}>
|
||||
<CategoryDivider label={t['com.affine.rootAppSidebar.favorites']()}>
|
||||
<AddFavouriteButton workspace={blockSuiteWorkspace} />
|
||||
</CategoryDivider>
|
||||
<FavoriteList workspace={blockSuiteWorkspace} />
|
||||
<CategoryDivider label={t['Collections']()}>
|
||||
<CategoryDivider label={t['com.affine.rootAppSidebar.collections']()}>
|
||||
<AddCollectionButton workspace={blockSuiteWorkspace} />
|
||||
</CategoryDivider>
|
||||
<CollectionsList workspace={blockSuiteWorkspace} />
|
||||
<CategoryDivider label={t['others']()} />
|
||||
<CategoryDivider label={t['com.affine.rootAppSidebar.others']()} />
|
||||
{/* fixme: remove the following spacer */}
|
||||
<div style={{ height: '4px' }} />
|
||||
<RouteMenuLinkItem
|
||||
@@ -215,7 +217,9 @@ export const RootAppSidebar = ({
|
||||
currentPath={currentPath}
|
||||
path={paths.trash(currentWorkspaceId)}
|
||||
>
|
||||
<span data-testid="trash-page">{t['Trash']()}</span>
|
||||
<span data-testid="trash-page">
|
||||
{t['com.affine.workspaceSubPath.trash']()}
|
||||
</span>
|
||||
</RouteMenuLinkItem>
|
||||
{blockSuiteWorkspace && (
|
||||
<ImportPage blocksuiteWorkspace={blockSuiteWorkspace} />
|
||||
|
||||
@@ -1,5 +1,67 @@
|
||||
import { useAFFiNEI18N } from '@affine/i18n/hooks';
|
||||
import { useMemo } from 'react';
|
||||
import { useCallback, useMemo } from 'react';
|
||||
|
||||
type KeyboardShortcutsI18NKeys =
|
||||
| 'cancel'
|
||||
| 'quickSearch'
|
||||
| 'newPage'
|
||||
| 'appendDailyNote'
|
||||
| 'expandOrCollapseSidebar'
|
||||
| 'goBack'
|
||||
| 'goForward'
|
||||
| 'selectAll'
|
||||
| 'undo'
|
||||
| 'redo'
|
||||
| 'zoomIn'
|
||||
| 'zoomOut'
|
||||
| 'zoomTo100'
|
||||
| 'zoomToFit'
|
||||
| 'select'
|
||||
| 'text'
|
||||
| 'shape'
|
||||
| 'image'
|
||||
| 'straightConnector'
|
||||
| 'elbowedConnector'
|
||||
| 'curveConnector'
|
||||
| 'pen'
|
||||
| 'hand'
|
||||
| 'note'
|
||||
| 'group'
|
||||
| 'unGroup'
|
||||
| 'switch'
|
||||
| 'bold'
|
||||
| 'italic'
|
||||
| 'underline'
|
||||
| 'strikethrough'
|
||||
| 'inlineCode'
|
||||
| 'codeBlock'
|
||||
| 'link'
|
||||
| 'bodyText'
|
||||
| 'increaseIndent'
|
||||
| 'reduceIndent'
|
||||
| 'groupDatabase'
|
||||
| 'moveUp'
|
||||
| 'moveDown'
|
||||
| 'divider';
|
||||
|
||||
// TODO(550): remove this hook after 'useAFFiNEI18N' support scoped i18n
|
||||
const useKeyboardShortcutsI18N = () => {
|
||||
const t = useAFFiNEI18N();
|
||||
return useCallback(
|
||||
(key: KeyboardShortcutsI18NKeys) =>
|
||||
t[`com.affine.keyboardShortcuts.${key}`](),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
|
||||
// TODO(550): remove this hook after 'useAFFiNEI18N' support scoped i18n
|
||||
const useHeadingKeyboardShortcutsI18N = () => {
|
||||
const t = useAFFiNEI18N();
|
||||
return useCallback(
|
||||
(number: string) => t['com.affine.keyboardShortcuts.heading']({ number }),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
|
||||
interface ShortcutMap {
|
||||
[x: string]: string[];
|
||||
@@ -10,205 +72,209 @@ export interface ShortcutsInfo {
|
||||
}
|
||||
|
||||
export const useWinGeneralKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Cancel']()]: ['ESC'],
|
||||
[t['Quick Search']()]: ['Ctrl', 'K'],
|
||||
[t['New Page']()]: ['Ctrl', 'N'],
|
||||
[t('cancel')]: ['ESC'],
|
||||
[t('quickSearch')]: ['Ctrl', 'K'],
|
||||
[t('newPage')]: ['Ctrl', 'N'],
|
||||
// not implement yet
|
||||
// [t['Append to Daily Note']()]: 'Ctrl + Alt + A',
|
||||
[t['Expand/Collapse Sidebar']()]: ['Ctrl', '/'],
|
||||
// [t('appendDailyNote')]: 'Ctrl + Alt + A',
|
||||
[t('expandOrCollapseSidebar')]: ['Ctrl', '/'],
|
||||
// not implement yet
|
||||
// [t['Go Back']()]: 'Ctrl + [',
|
||||
// [t['Go Forward']()]: 'Ctrl + ]',
|
||||
// [t('goBack')]: 'Ctrl + [',
|
||||
// [t('goForward')]: 'Ctrl + ]',
|
||||
}),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
export const useMacGeneralKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Cancel']()]: ['ESC'],
|
||||
[t['Quick Search']()]: ['⌘', 'K'],
|
||||
[t['New Page']()]: ['⌘', 'N'],
|
||||
[t('cancel')]: ['ESC'],
|
||||
[t('quickSearch')]: ['⌘', 'K'],
|
||||
[t('newPage')]: ['⌘', 'N'],
|
||||
// not implement yet
|
||||
// [t['Append to Daily Note']()]: '⌘ + ⌥ + A',
|
||||
[t['Expand/Collapse Sidebar']()]: ['⌘', '/'],
|
||||
// [t('appendDailyNote')]: '⌘ + ⌥ + A',
|
||||
[t('expandOrCollapseSidebar')]: ['⌘', '/'],
|
||||
// not implement yet
|
||||
// [t['Go Back']()]: '⌘ + [',
|
||||
// [t['Go Forward']()]: '⌘ + ]',
|
||||
// [t('goBack')]: '⌘ + [',
|
||||
// [t('goForward')]: '⌘ + ]',
|
||||
}),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
|
||||
export const useMacEdgelessKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Select All']()]: ['⌘', 'A'],
|
||||
[t['Undo']()]: ['⌘', 'Z'],
|
||||
[t['Redo']()]: ['⌘', '⇧', 'Z'],
|
||||
[t['Zoom in']()]: ['⌘', '+'],
|
||||
[t['Zoom out']()]: ['⌘', '-'],
|
||||
[t['Zoom to 100%']()]: ['⌘', '0'],
|
||||
[t['Zoom to fit']()]: ['⌘', '1'],
|
||||
[t['Select']()]: ['V'],
|
||||
[t['Text']()]: ['T'],
|
||||
[t['Shape']()]: ['S'],
|
||||
[t['Image']()]: ['I'],
|
||||
[t['Straight Connector']()]: ['L'],
|
||||
[t['Elbowed Connector']()]: ['X'],
|
||||
[t('selectAll')]: ['⌘', 'A'],
|
||||
[t('undo')]: ['⌘', 'Z'],
|
||||
[t('redo')]: ['⌘', '⇧', 'Z'],
|
||||
[t('zoomIn')]: ['⌘', '+'],
|
||||
[t('zoomOut')]: ['⌘', '-'],
|
||||
[t('zoomTo100')]: ['⌘', '0'],
|
||||
[t('zoomToFit')]: ['⌘', '1'],
|
||||
[t('select')]: ['V'],
|
||||
[t('text')]: ['T'],
|
||||
[t('shape')]: ['S'],
|
||||
[t('image')]: ['I'],
|
||||
[t('straightConnector')]: ['L'],
|
||||
[t('elbowedConnector')]: ['X'],
|
||||
// not implement yet
|
||||
// [t['Curve Connector']()]: 'C',
|
||||
[t['Pen']()]: ['P'],
|
||||
[t['Hand']()]: ['H'],
|
||||
[t['Note']()]: ['N'],
|
||||
// [t('curveConnector')]: 'C',
|
||||
[t('pen')]: ['P'],
|
||||
[t('hand')]: ['H'],
|
||||
[t('note')]: ['N'],
|
||||
// not implement yet
|
||||
// [t['Group']()]: '⌘ + G',
|
||||
// [t['Ungroup']()]: '⌘ + ⇧ + G',
|
||||
// [t('group')]: '⌘ + G',
|
||||
// [t('unGroup')]: '⌘ + ⇧ + G',
|
||||
}),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
export const useWinEdgelessKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Select All']()]: ['Ctrl', 'A'],
|
||||
[t['Undo']()]: ['Ctrl', 'Z'],
|
||||
[t['Redo']()]: ['Ctrl', 'Y/Ctrl', 'Shift', 'Z'],
|
||||
[t['Zoom in']()]: ['Ctrl', '+'],
|
||||
[t['Zoom out']()]: ['Ctrl', '-'],
|
||||
[t['Zoom to 100%']()]: ['Ctrl', '0'],
|
||||
[t['Zoom to fit']()]: ['Ctrl', '1'],
|
||||
[t['Select']()]: ['V'],
|
||||
[t['Text']()]: ['T'],
|
||||
[t['Shape']()]: ['S'],
|
||||
[t['Image']()]: ['I'],
|
||||
[t['Straight Connector']()]: ['L'],
|
||||
[t['Elbowed Connector']()]: ['X'],
|
||||
[t('selectAll')]: ['Ctrl', 'A'],
|
||||
[t('undo')]: ['Ctrl', 'Z'],
|
||||
[t('redo')]: ['Ctrl', 'Y/Ctrl', 'Shift', 'Z'],
|
||||
[t('zoomIn')]: ['Ctrl', '+'],
|
||||
[t('zoomOut')]: ['Ctrl', '-'],
|
||||
[t('zoomTo100')]: ['Ctrl', '0'],
|
||||
[t('zoomToFit')]: ['Ctrl', '1'],
|
||||
[t('select')]: ['V'],
|
||||
[t('text')]: ['T'],
|
||||
[t('shape')]: ['S'],
|
||||
[t('image')]: ['I'],
|
||||
[t('straightConnector')]: ['L'],
|
||||
[t('elbowedConnector')]: ['X'],
|
||||
// not implement yet
|
||||
// [t['Curve Connector']()]: 'C',
|
||||
[t['Pen']()]: ['P'],
|
||||
[t['Hand']()]: ['H'],
|
||||
[t['Note']()]: ['N'],
|
||||
[t['Switch']()]: ['Alt ', ''],
|
||||
// [t('curveConnector')]: 'C',
|
||||
[t('pen')]: ['P'],
|
||||
[t('hand')]: ['H'],
|
||||
[t('note')]: ['N'],
|
||||
[t('switch')]: ['Alt ', ''],
|
||||
// not implement yet
|
||||
// [t['Group']()]: 'Ctrl + G',
|
||||
// [t['Ungroup']()]: 'Ctrl + Shift + G',
|
||||
// [t('group')]: 'Ctrl + G',
|
||||
// [t('unGroup')]: 'Ctrl + Shift + G',
|
||||
}),
|
||||
[t]
|
||||
);
|
||||
};
|
||||
export const useMacPageKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
const tH = useHeadingKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Undo']()]: ['⌘', 'Z'],
|
||||
[t['Redo']()]: ['⌘', '⇧', 'Z'],
|
||||
[t['Bold']()]: ['⌘', 'B'],
|
||||
[t['Italic']()]: ['⌘', 'I'],
|
||||
[t['Underline']()]: ['⌘', 'U'],
|
||||
[t['Strikethrough']()]: ['⌘', '⇧', 'S'],
|
||||
[t['Inline code']()]: ['⌘', 'E'],
|
||||
[t['Code block']()]: ['⌘', '⌥', 'C'],
|
||||
[t['Link']()]: ['⌘', 'K'],
|
||||
[t['Quick search']()]: ['⌘', 'K'],
|
||||
[t['Body text']()]: ['⌘', '⌥', '0'],
|
||||
[t['Heading']({ number: '1' })]: ['⌘', '⌥', '1'],
|
||||
[t['Heading']({ number: '2' })]: ['⌘', '⌥', '2'],
|
||||
[t['Heading']({ number: '3' })]: ['⌘', '⌥', '3'],
|
||||
[t['Heading']({ number: '4' })]: ['⌘', '⌥', '4'],
|
||||
[t['Heading']({ number: '5' })]: ['⌘', '⌥', '5'],
|
||||
[t['Heading']({ number: '6' })]: ['⌘', '⌥', '6'],
|
||||
[t['Increase indent']()]: ['Tab'],
|
||||
[t['Reduce indent']()]: ['⇧', 'Tab'],
|
||||
[t['Group as Database']()]: ['⌘', 'G'],
|
||||
[t['Switch']()]: ['⌥', 'S'],
|
||||
[t('undo')]: ['⌘', 'Z'],
|
||||
[t('redo')]: ['⌘', '⇧', 'Z'],
|
||||
[t('bold')]: ['⌘', 'B'],
|
||||
[t('italic')]: ['⌘', 'I'],
|
||||
[t('underline')]: ['⌘', 'U'],
|
||||
[t('strikethrough')]: ['⌘', '⇧', 'S'],
|
||||
[t('inlineCode')]: ['⌘', 'E'],
|
||||
[t('codeBlock')]: ['⌘', '⌥', 'C'],
|
||||
[t('link')]: ['⌘', 'K'],
|
||||
[t('quickSearch')]: ['⌘', 'K'],
|
||||
[t('bodyText')]: ['⌘', '⌥', '0'],
|
||||
[tH('1')]: ['⌘', '⌥', '1'],
|
||||
[tH('2')]: ['⌘', '⌥', '2'],
|
||||
[tH('3')]: ['⌘', '⌥', '3'],
|
||||
[tH('4')]: ['⌘', '⌥', '4'],
|
||||
[tH('5')]: ['⌘', '⌥', '5'],
|
||||
[tH('6')]: ['⌘', '⌥', '6'],
|
||||
[t('increaseIndent')]: ['Tab'],
|
||||
[t('reduceIndent')]: ['⇧', 'Tab'],
|
||||
[t('groupDatabase')]: ['⌘', 'G'],
|
||||
[t('switch')]: ['⌥', 'S'],
|
||||
// not implement yet
|
||||
// [t['Move Up']()]: '⌘ + ⌥ + ↑',
|
||||
// [t['Move Down']()]: '⌘ + ⌥ + ↓',
|
||||
// [t('moveUp')]: '⌘ + ⌥ + ↑',
|
||||
// [t('moveDown')]: '⌘ + ⌥ + ↓',
|
||||
}),
|
||||
[t]
|
||||
[t, tH]
|
||||
);
|
||||
};
|
||||
|
||||
export const useMacMarkdownShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
const tH = useHeadingKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Bold']()]: ['**Text**'],
|
||||
[t['Italic']()]: ['*Text*'],
|
||||
[t['Underline']()]: ['~Text~'],
|
||||
[t['Strikethrough']()]: ['~~Text~~'],
|
||||
[t['Divider']()]: ['***'],
|
||||
[t['Inline code']()]: ['`Text` '],
|
||||
[t['Code block']()]: ['``` Space'],
|
||||
[t['Heading']({ number: '1' })]: ['# Text'],
|
||||
[t['Heading']({ number: '2' })]: ['## Text'],
|
||||
[t['Heading']({ number: '3' })]: ['### Text'],
|
||||
[t['Heading']({ number: '4' })]: ['#### Text'],
|
||||
[t['Heading']({ number: '5' })]: ['##### Text'],
|
||||
[t['Heading']({ number: '6' })]: ['###### Text'],
|
||||
[t('bold')]: ['**Text**'],
|
||||
[t('italic')]: ['*Text*'],
|
||||
[t('underline')]: ['~Text~'],
|
||||
[t('strikethrough')]: ['~~Text~~'],
|
||||
[t('divider')]: ['***'],
|
||||
[t('inlineCode')]: ['`Text` '],
|
||||
[t('codeBlock')]: ['``` Space'],
|
||||
[tH('1')]: ['# Text'],
|
||||
[tH('2')]: ['## Text'],
|
||||
[tH('3')]: ['### Text'],
|
||||
[tH('4')]: ['#### Text'],
|
||||
[tH('5')]: ['##### Text'],
|
||||
[tH('6')]: ['###### Text'],
|
||||
}),
|
||||
[t]
|
||||
[t, tH]
|
||||
);
|
||||
};
|
||||
|
||||
export const useWinPageKeyboardShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
const tH = useHeadingKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Undo']()]: ['Ctrl', 'Z'],
|
||||
[t['Redo']()]: ['Ctrl', 'Y'],
|
||||
[t['Bold']()]: ['Ctrl', 'B'],
|
||||
[t['Italic']()]: ['Ctrl', 'I'],
|
||||
[t['Underline']()]: ['Ctrl', 'U'],
|
||||
[t['Strikethrough']()]: ['Ctrl', 'Shift', 'S'],
|
||||
[t['Inline code']()]: [' Ctrl', 'E'],
|
||||
[t['Code block']()]: ['Ctrl', 'Alt', 'C'],
|
||||
[t['Link']()]: ['Ctr', 'K'],
|
||||
[t['Quick search']()]: ['Ctrl', 'K'],
|
||||
[t['Body text']()]: ['Ctrl', 'Shift', '0'],
|
||||
[t['Heading']({ number: '1' })]: ['Ctrl', 'Shift', '1'],
|
||||
[t['Heading']({ number: '2' })]: ['Ctrl', 'Shift', '2'],
|
||||
[t['Heading']({ number: '3' })]: ['Ctrl', 'Shift', '3'],
|
||||
[t['Heading']({ number: '4' })]: ['Ctrl', 'Shift', '4'],
|
||||
[t['Heading']({ number: '5' })]: ['Ctrl', 'Shift', '5'],
|
||||
[t['Heading']({ number: '6' })]: ['Ctrl', 'Shift', '6'],
|
||||
[t['Increase indent']()]: ['Tab'],
|
||||
[t['Reduce indent']()]: ['Shift+Tab'],
|
||||
[t['Group as Database']()]: ['Ctrl + G'],
|
||||
[t('undo')]: ['Ctrl', 'Z'],
|
||||
[t('redo')]: ['Ctrl', 'Y'],
|
||||
[t('bold')]: ['Ctrl', 'B'],
|
||||
[t('italic')]: ['Ctrl', 'I'],
|
||||
[t('underline')]: ['Ctrl', 'U'],
|
||||
[t('strikethrough')]: ['Ctrl', 'Shift', 'S'],
|
||||
[t('inlineCode')]: [' Ctrl', 'E'],
|
||||
[t('codeBlock')]: ['Ctrl', 'Alt', 'C'],
|
||||
[t('link')]: ['Ctr', 'K'],
|
||||
[t('quickSearch')]: ['Ctrl', 'K'],
|
||||
[t('bodyText')]: ['Ctrl', 'Shift', '0'],
|
||||
[tH('1')]: ['Ctrl', 'Shift', '1'],
|
||||
[tH('2')]: ['Ctrl', 'Shift', '2'],
|
||||
[tH('3')]: ['Ctrl', 'Shift', '3'],
|
||||
[tH('4')]: ['Ctrl', 'Shift', '4'],
|
||||
[tH('5')]: ['Ctrl', 'Shift', '5'],
|
||||
[tH('6')]: ['Ctrl', 'Shift', '6'],
|
||||
[t('increaseIndent')]: ['Tab'],
|
||||
[t('reduceIndent')]: ['Shift+Tab'],
|
||||
[t('groupDatabase')]: ['Ctrl + G'],
|
||||
['Switch']: ['Alt + S'],
|
||||
// not implement yet
|
||||
// [t['Move Up']()]: 'Ctrl + Alt + ↑',
|
||||
// [t['Move Down']()]: 'Ctrl + Alt + ↓',
|
||||
// [t('moveUp')]: 'Ctrl + Alt + ↑',
|
||||
// [t('moveDown')]: 'Ctrl + Alt + ↓',
|
||||
}),
|
||||
[t]
|
||||
[t, tH]
|
||||
);
|
||||
};
|
||||
export const useWinMarkdownShortcuts = (): ShortcutMap => {
|
||||
const t = useAFFiNEI18N();
|
||||
const t = useKeyboardShortcutsI18N();
|
||||
const tH = useHeadingKeyboardShortcutsI18N();
|
||||
return useMemo(
|
||||
() => ({
|
||||
[t['Bold']()]: ['**Text** '],
|
||||
[t['Italic']()]: ['*Text* '],
|
||||
[t['Underline']()]: ['~Text~ '],
|
||||
[t['Strikethrough']()]: ['~~Text~~ '],
|
||||
[t['Divider']()]: ['***'],
|
||||
[t['Inline code']()]: ['`Text` '],
|
||||
[t['Code block']()]: ['``` Text'],
|
||||
[t['Heading']({ number: '1' })]: ['# Text'],
|
||||
[t['Heading']({ number: '2' })]: ['## Text'],
|
||||
[t['Heading']({ number: '3' })]: ['### Text'],
|
||||
[t['Heading']({ number: '4' })]: ['#### Text'],
|
||||
[t['Heading']({ number: '5' })]: ['##### Text'],
|
||||
[t['Heading']({ number: '6' })]: ['###### Text'],
|
||||
[t('bold')]: ['**Text** '],
|
||||
[t('italic')]: ['*Text* '],
|
||||
[t('underline')]: ['~Text~ '],
|
||||
[t('strikethrough')]: ['~~Text~~ '],
|
||||
[t('divider')]: ['***'],
|
||||
[t('inlineCode')]: ['`Text` '],
|
||||
[t('codeBlock')]: ['``` Text'],
|
||||
[tH('1')]: ['# Text'],
|
||||
[tH('2')]: ['## Text'],
|
||||
[tH('3')]: ['### Text'],
|
||||
[tH('4')]: ['#### Text'],
|
||||
[tH('5')]: ['##### Text'],
|
||||
[tH('6')]: ['###### Text'],
|
||||
}),
|
||||
[t]
|
||||
[t, tH]
|
||||
);
|
||||
};
|
||||
|
||||
@@ -219,7 +285,7 @@ export const useMarkdownShortcuts = (): ShortcutsInfo => {
|
||||
const winMarkdownShortcuts = useWinMarkdownShortcuts();
|
||||
const isMac = environment.isBrowser && environment.isMacOs;
|
||||
return {
|
||||
title: t['Markdown Syntax'](),
|
||||
title: t['com.affine.shortcutsTitle.markdownSyntax'](),
|
||||
shortcuts: isMac ? macMarkdownShortcuts : winMarkdownShortcuts,
|
||||
};
|
||||
};
|
||||
@@ -231,7 +297,7 @@ export const usePageShortcuts = (): ShortcutsInfo => {
|
||||
const winPageShortcuts = useWinPageKeyboardShortcuts();
|
||||
const isMac = environment.isBrowser && environment.isMacOs;
|
||||
return {
|
||||
title: t['Page'](),
|
||||
title: t['com.affine.shortcutsTitle.page'](),
|
||||
shortcuts: isMac ? macPageShortcuts : winPageShortcuts,
|
||||
};
|
||||
};
|
||||
@@ -243,7 +309,7 @@ export const useEdgelessShortcuts = (): ShortcutsInfo => {
|
||||
const winEdgelessShortcuts = useWinEdgelessKeyboardShortcuts();
|
||||
const isMac = environment.isBrowser && environment.isMacOs;
|
||||
return {
|
||||
title: t['Edgeless'](),
|
||||
title: t['com.affine.shortcutsTitle.edgeless'](),
|
||||
shortcuts: isMac ? macEdgelessShortcuts : winEdgelessShortcuts,
|
||||
};
|
||||
};
|
||||
@@ -254,9 +320,8 @@ export const useGeneralShortcuts = (): ShortcutsInfo => {
|
||||
const macGeneralShortcuts = useMacGeneralKeyboardShortcuts();
|
||||
const winGeneralShortcuts = useWinGeneralKeyboardShortcuts();
|
||||
const isMac = environment.isBrowser && environment.isMacOs;
|
||||
|
||||
return {
|
||||
title: t['General'](),
|
||||
title: t['com.affine.shortcutsTitle.general'](),
|
||||
shortcuts: isMac ? macGeneralShortcuts : winGeneralShortcuts,
|
||||
};
|
||||
};
|
||||
|
||||
@@ -216,7 +216,7 @@ export const WorkspaceLayoutInner = ({ children }: PropsWithChildren) => {
|
||||
// TODO-Doma
|
||||
// Co-locate `moveToTrash` with the toast for reuse, as they're always used together
|
||||
moveToTrash(pageId);
|
||||
toast(t['Successfully deleted']());
|
||||
toast(t['com.affine.toastMessage.successfullyDeleted']());
|
||||
}
|
||||
// Drag page into Collections
|
||||
processCollectionsDrag(e);
|
||||
|
||||
@@ -24,14 +24,14 @@ export const StyledContainer = styled('div')(() => {
|
||||
};
|
||||
});
|
||||
|
||||
export const NotfoundPage = () => {
|
||||
export const NotFoundPage = () => {
|
||||
const t = useAFFiNEI18N();
|
||||
const { jumpToSubPath, jumpToIndex } = useNavigateHelper();
|
||||
return (
|
||||
<StyledContainer data-testid="notFound">
|
||||
<img alt="404" src="/imgs/invite-error.svg" width={360} height={270} />
|
||||
|
||||
<p>{t['404 - Page Not Found']()}</p>
|
||||
<p>{t['com.affine.notFoundPage.title']()}</p>
|
||||
<Button
|
||||
onClick={() => {
|
||||
const id = localStorage.getItem('last_workspace_id');
|
||||
@@ -42,12 +42,12 @@ export const NotfoundPage = () => {
|
||||
}
|
||||
}}
|
||||
>
|
||||
{t['Back Home']()}
|
||||
{t['com.affine.backButton']()}
|
||||
</Button>
|
||||
</StyledContainer>
|
||||
);
|
||||
};
|
||||
|
||||
export const Component = (): ReactElement => {
|
||||
return <NotfoundPage></NotfoundPage>;
|
||||
return <NotFoundPage />;
|
||||
};
|
||||
|
||||
@@ -114,8 +114,8 @@ export function AppUpdaterButtonPure({
|
||||
<div className={clsx([styles.installLabelNormal])}>
|
||||
<span className={styles.ellipsisTextOverflow}>
|
||||
{!updateReady
|
||||
? t['com.affine.updater.downloading']()
|
||||
: t['com.affine.updater.update-available']()}
|
||||
? t['com.affine.appUpdater.downloading']()
|
||||
: t['com.affine.appUpdater.updateAvailable']()}
|
||||
</span>
|
||||
<span className={styles.versionLabel}>
|
||||
{updateAvailable?.version}
|
||||
@@ -127,7 +127,7 @@ export function AppUpdaterButtonPure({
|
||||
<ResetIcon className={styles.icon} />
|
||||
<span className={styles.ellipsisTextOverflow}>
|
||||
{t[
|
||||
appQuitting ? 'Loading' : 'com.affine.updater.restart-to-update'
|
||||
appQuitting ? 'Loading' : 'com.affine.appUpdater.installUpdate'
|
||||
]()}
|
||||
</span>
|
||||
</div>
|
||||
@@ -136,7 +136,7 @@ export function AppUpdaterButtonPure({
|
||||
<div
|
||||
className={styles.progressInner}
|
||||
style={{ width: `${downloadProgress}%` }}
|
||||
></div>
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
@@ -148,7 +148,7 @@ export function AppUpdaterButtonPure({
|
||||
<>
|
||||
<div className={clsx([styles.installLabelNormal])}>
|
||||
<span className={styles.ellipsisTextOverflow}>
|
||||
{t['com.affine.updater.update-available']()}
|
||||
{t['com.affine.appUpdater.updateAvailable']()}
|
||||
</span>
|
||||
<span className={styles.versionLabel}>
|
||||
{updateAvailable?.version}
|
||||
@@ -157,7 +157,7 @@ export function AppUpdaterButtonPure({
|
||||
|
||||
<div className={clsx([styles.installLabelHover])}>
|
||||
<span className={styles.ellipsisTextOverflow}>
|
||||
{t['com.affine.updater.open-download-page']()}
|
||||
{t['com.affine.appUpdater.openDownloadPage']()}
|
||||
</span>
|
||||
</div>
|
||||
</>
|
||||
@@ -170,7 +170,7 @@ export function AppUpdaterButtonPure({
|
||||
<div className={clsx([styles.whatsNewLabel])}>
|
||||
<NewIcon className={styles.icon} />
|
||||
<span className={styles.ellipsisTextOverflow}>
|
||||
{t[`Discover what's new!`]()}
|
||||
{t['com.affine.appUpdater.whatsNew']()}
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
|
||||
@@ -12,7 +12,9 @@ export const SidebarSwitch = ({ show }: { show: boolean }) => {
|
||||
const [open, setOpen] = useAtom(appSidebarOpenAtom);
|
||||
const t = useAFFiNEI18N();
|
||||
const ref = useRef(null);
|
||||
const tooltipContent = open ? t['Collapse sidebar']() : t['Expand sidebar']();
|
||||
const tooltipContent = open
|
||||
? t['com.affine.sidebarSwitch.collapse']()
|
||||
: t['com.affine.sidebarSwitch.expand']();
|
||||
const collapseKeyboardShortcuts =
|
||||
environment.isBrowser && environment.isMacOs ? ' ⌘+/' : ' Ctrl+/';
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ export const BackButton: FC<ButtonProps> = props => {
|
||||
icon={<ArrowLeftSmallIcon />}
|
||||
{...props}
|
||||
>
|
||||
{t['Back Home']()}
|
||||
{t['com.affine.backButton']()}
|
||||
</Button>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -26,19 +26,28 @@ const WorkspaceType = ({ flavour }: WorkspaceTypeProps) => {
|
||||
|
||||
if (flavour === WorkspaceFlavour.LOCAL) {
|
||||
return (
|
||||
<p style={{ fontSize: '10px' }} title={t['Local Workspace']()}>
|
||||
<span>{t['Local Workspace']()}</span>
|
||||
<p
|
||||
style={{ fontSize: '10px' }}
|
||||
title={t['com.affine.workspaceType.local']()}
|
||||
>
|
||||
<span>{t['com.affine.workspaceType.local']()}</span>
|
||||
</p>
|
||||
);
|
||||
}
|
||||
|
||||
return isOwner ? (
|
||||
<p style={{ fontSize: '10px' }} title={t['Cloud Workspace']()}>
|
||||
<span>{t['Cloud Workspace']()}</span>
|
||||
<p
|
||||
style={{ fontSize: '10px' }}
|
||||
title={t['com.affine.workspaceType.cloud']()}
|
||||
>
|
||||
<span>{t['com.affine.workspaceType.cloud']()}</span>
|
||||
</p>
|
||||
) : (
|
||||
<p style={{ fontSize: '10px' }} title={t['Joined Workspace']()}>
|
||||
<span>{t['Joined Workspace']()}</span>
|
||||
<p
|
||||
style={{ fontSize: '10px' }}
|
||||
title={t['com.affine.workspaceType.joined']()}
|
||||
>
|
||||
<span>{t['com.affine.workspaceType.joined']()}</span>
|
||||
</p>
|
||||
);
|
||||
};
|
||||
@@ -86,7 +95,7 @@ export const WorkspaceCard = ({
|
||||
</StyledSettingLink>
|
||||
</StyledWorkspaceTitleArea>
|
||||
{/* {meta.flavour === WorkspaceFlavour.LOCAL && (
|
||||
<p title={t['Available Offline']()}>
|
||||
<p title={t['com.affine.workspaceType.offline']()}>
|
||||
<LocalDataIcon />
|
||||
<WorkspaceType flavour={meta.flavour} />
|
||||
</p>
|
||||
|
||||
@@ -135,7 +135,7 @@ export const InviteModal = ({
|
||||
</div>
|
||||
<div className={styles.inviteModalButtonContainer}>
|
||||
<Button style={{ marginRight: 20 }} onClick={handleCancel}>
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.inviteModal.button.cancel']()}
|
||||
</Button>
|
||||
<Button type="primary" onClick={handleConfirm} loading={isMutating}>
|
||||
{t['Invite']()}
|
||||
|
||||
@@ -67,7 +67,7 @@ export const FilterList = ({
|
||||
iconPosition="end"
|
||||
style={{ fontSize: 'var(--affine-font-xs)', padding: '0 8px' }}
|
||||
>
|
||||
{t['Add Filter']()}
|
||||
{t['com.affine.filterList.button.add']()}
|
||||
</Button>
|
||||
) : (
|
||||
<IconButton size="small">
|
||||
|
||||
@@ -61,7 +61,9 @@ export const OperationCell = ({
|
||||
</MenuIcon>
|
||||
}
|
||||
>
|
||||
{favorite ? t['Remove from favorites']() : t['Add to Favorites']()}
|
||||
{favorite
|
||||
? t['com.affine.favoritePageOperation.remove']()
|
||||
: t['com.affine.favoritePageOperation.add']()}
|
||||
</MenuItem>
|
||||
{!isDesktop && (
|
||||
<MenuItem
|
||||
@@ -72,7 +74,7 @@ export const OperationCell = ({
|
||||
</MenuIcon>
|
||||
}
|
||||
>
|
||||
{t['Open in new tab']()}
|
||||
{t['com.affine.openPageOperation.newTab']()}
|
||||
</MenuItem>
|
||||
)}
|
||||
<MoveToTrash
|
||||
@@ -131,7 +133,7 @@ export const TrashOperationCell = ({
|
||||
const [open, setOpen] = useState(false);
|
||||
return (
|
||||
<FlexWrapper>
|
||||
<Tooltip content={t['Restore it']()} side="top">
|
||||
<Tooltip content={t['com.affine.trashOperation.restoreIt']()} side="top">
|
||||
<IconButton
|
||||
style={{ marginRight: '12px' }}
|
||||
onClick={() => {
|
||||
@@ -141,7 +143,11 @@ export const TrashOperationCell = ({
|
||||
<ResetIcon />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
<Tooltip content={t['Delete permanently']()} side="top" align="end">
|
||||
<Tooltip
|
||||
content={t['com.affine.trashOperation.deletePermanently']()}
|
||||
side="top"
|
||||
align="end"
|
||||
>
|
||||
<IconButton
|
||||
onClick={() => {
|
||||
setOpen(true);
|
||||
@@ -151,9 +157,9 @@ export const TrashOperationCell = ({
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
<Confirm
|
||||
title={`${t['Delete permanently']()}?`}
|
||||
content={t['TrashButtonGroupDescription']()}
|
||||
confirmText={t['Delete']()}
|
||||
title={`${t['com.affine.trashOperation.deletePermanently']()}?`}
|
||||
content={t['com.affine.trashOperation.deleteDescription']()}
|
||||
confirmText={t['com.affine.trashOperation.delete']()}
|
||||
confirmType="error"
|
||||
open={open}
|
||||
onConfirm={() => {
|
||||
|
||||
@@ -8,6 +8,7 @@ import {
|
||||
|
||||
import type { ConfirmProps } from '../../..';
|
||||
import { Confirm } from '../../..';
|
||||
|
||||
export const MoveToTrash = (props: MenuItemProps) => {
|
||||
const t = useAFFiNEI18N();
|
||||
|
||||
@@ -21,7 +22,7 @@ export const MoveToTrash = (props: MenuItemProps) => {
|
||||
type="danger"
|
||||
{...props}
|
||||
>
|
||||
{t['Move to Trash']()}
|
||||
{t['com.affine.moveToTrash.title']()}
|
||||
</MenuItem>
|
||||
);
|
||||
};
|
||||
@@ -36,8 +37,8 @@ const ConfirmModal = ({
|
||||
|
||||
return (
|
||||
<Confirm
|
||||
title={t['Delete page?']()}
|
||||
content={t['will be moved to Trash']({
|
||||
title={t['com.affine.moveToTrash.confirmModal.title']()}
|
||||
content={t['com.affine.moveToTrash.confirmModal.description']({
|
||||
title: title || 'Untitled',
|
||||
})}
|
||||
confirmButtonTestId="confirm-delete-page"
|
||||
|
||||
@@ -96,7 +96,7 @@ export const CollectionBar = (props: CollectionBarProps) => {
|
||||
style={{ border: 'none', position: 'static' }}
|
||||
onClick={() => setting.backToAll()}
|
||||
>
|
||||
{t['Back to all']()}
|
||||
{t['com.affine.collectionBar.backToAll']()}
|
||||
</Button>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -68,7 +68,7 @@ export const EditCollectionModel = ({
|
||||
<EditCollection
|
||||
propertiesMeta={propertiesMeta}
|
||||
title={title}
|
||||
onConfirmText={t['Save']()}
|
||||
onConfirmText={t['com.affine.editCollection.save']()}
|
||||
init={init}
|
||||
getPageInfo={getPageInfo}
|
||||
onCancel={onClose}
|
||||
@@ -164,7 +164,7 @@ export const EditCollection = ({
|
||||
}}
|
||||
>
|
||||
<div className={styles.saveTitle}>
|
||||
{title ?? t['Update Collection']()}
|
||||
{title ?? t['com.affine.editCollection.updateCollection']()}
|
||||
</div>
|
||||
<ScrollableContainer
|
||||
className={styles.scrollContainer}
|
||||
@@ -201,7 +201,9 @@ export const EditCollection = ({
|
||||
minHeight: '200px',
|
||||
}}
|
||||
>
|
||||
<div className={styles.filterTitle}>{t['Filters']()}</div>
|
||||
<div className={styles.filterTitle}>
|
||||
{t['com.affine.editCollection.filters']()}
|
||||
</div>
|
||||
<FilterList
|
||||
propertiesMeta={propertiesMeta}
|
||||
value={value.filterList}
|
||||
@@ -228,7 +230,7 @@ export const EditCollection = ({
|
||||
<div style={{ marginTop: 20 }}>
|
||||
<Input
|
||||
data-testid="input-collection-title"
|
||||
placeholder={t['Untitled Collection']()}
|
||||
placeholder={t['com.affine.editCollection.untitledCollection']()}
|
||||
defaultValue={value.name}
|
||||
onChange={name => onChange({ ...value, name })}
|
||||
/>
|
||||
@@ -242,7 +244,7 @@ export const EditCollection = ({
|
||||
}}
|
||||
>
|
||||
<Button size="large" onClick={onCancel}>
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.editCollection.button.cancel']()}
|
||||
</Button>
|
||||
<Button
|
||||
style={{
|
||||
@@ -254,7 +256,7 @@ export const EditCollection = ({
|
||||
disabled={isNameEmpty}
|
||||
onClick={onSaveCollection}
|
||||
>
|
||||
{onConfirmText ?? t['Create']()}
|
||||
{onConfirmText ?? t['com.affine.editCollection.button.create']()}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -297,10 +299,10 @@ export const SaveCollectionButton = ({
|
||||
size="large"
|
||||
style={{ padding: '7px 8px' }}
|
||||
>
|
||||
{t['Save as New Collection']()}
|
||||
{t['com.affine.editCollection.saveCollection']()}
|
||||
</Button>
|
||||
<EditCollectionModel
|
||||
title={t['Save as New Collection']()}
|
||||
title={t['com.affine.editCollection.saveCollection']()}
|
||||
propertiesMeta={propertiesMeta}
|
||||
init={init}
|
||||
onConfirm={onConfirm}
|
||||
|
||||
@@ -21,17 +21,19 @@ export const PublicLinkDisableModal = ({
|
||||
<Modal open={open} onClose={onClose}>
|
||||
<ModalWrapper width={480}>
|
||||
<Header>
|
||||
<Title>{t['Disable Public Link']()}</Title>
|
||||
<Title>{t['com.affine.publicLinkDisableModal.title']()}</Title>
|
||||
<IconButton onClick={onClose}>
|
||||
<CloseIcon />
|
||||
</IconButton>
|
||||
</Header>
|
||||
<Content>
|
||||
<StyleTips>{t['Disable Public Link Description']()}</StyleTips>
|
||||
<StyleTips>
|
||||
{t['com.affine.publicLinkDisableModal.description']()}
|
||||
</StyleTips>
|
||||
<ButtonContainer>
|
||||
<div>
|
||||
<Button onClick={onClose} block>
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.publicLinkDisableModal.button.cancel']()}
|
||||
</Button>
|
||||
</div>
|
||||
<div>
|
||||
@@ -44,7 +46,7 @@ export const PublicLinkDisableModal = ({
|
||||
onClose();
|
||||
}}
|
||||
>
|
||||
{t['Disable']()}
|
||||
{t['com.affine.publicLinkDisableModal.button.disable']()}
|
||||
</Button>
|
||||
</div>
|
||||
</ButtonContainer>
|
||||
|
||||
@@ -160,14 +160,14 @@ export const AffineSharePage = (props: ShareMenuProps) => {
|
||||
value={'page'}
|
||||
spanStyle={styles.spanStyle}
|
||||
>
|
||||
{t['Page']()}
|
||||
{t['com.affine.pageMode.page']()}
|
||||
</RadioButton>
|
||||
<RadioButton
|
||||
className={styles.radioButton}
|
||||
value={'edgeless'}
|
||||
spanStyle={styles.spanStyle}
|
||||
>
|
||||
{t['Edgeless']()}
|
||||
{t['com.affine.pageMode.edgeless']()}
|
||||
</RadioButton>
|
||||
</RadioButtonGroup>
|
||||
</div>
|
||||
|
||||
@@ -41,7 +41,9 @@ export const Confirm = ({
|
||||
}: ConfirmProps) => {
|
||||
const t = useAFFiNEI18N();
|
||||
const cancelText_ = useMemo<string>(() => {
|
||||
return cancelText === 'Cancel' ? t['Cancel']() : cancelText;
|
||||
return cancelText === 'Cancel'
|
||||
? t['com.affine.confirmModal.button.cancel']()
|
||||
: cancelText;
|
||||
}, [cancelText, t]);
|
||||
|
||||
const handleCancel = useCallback(() => {
|
||||
|
||||
@@ -60,7 +60,7 @@ export const ConfirmModal = ({
|
||||
<StyledModalContent>{content}</StyledModalContent>
|
||||
<StyledModalFooter>
|
||||
<Button onClick={onCancel} style={{ marginRight: 20 }}>
|
||||
{t['Cancel']()}
|
||||
{t['com.affine.confirmModal.button.cancel']()}
|
||||
</Button>
|
||||
<Button type={confirmType} onClick={onConfirm}>
|
||||
{confirmText || t['Confirm']()}
|
||||
|
||||
+192
-175
@@ -1,219 +1,316 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - Seite nicht gefunden",
|
||||
"AFFiNE Cloud": "AFFiNE Cloud",
|
||||
"AFFiNE Community": "AFFiNE Community",
|
||||
"About AFFiNE": "Über AFFiNE",
|
||||
"Access level": "Zugriffsberechtigung",
|
||||
"Add a subpage inside": "Unterseite hinzufügen",
|
||||
"Add Workspace": "Workspace hinzufügen",
|
||||
"Add Workspace Hint": "Auswählen, was du schon hast",
|
||||
"Add a subpage inside": "Unterseite hinzufügen",
|
||||
"Add to Favorites": "Zu Favoriten hinzufügen",
|
||||
"Add to favorites": "Zu Favoriten hinzufügen",
|
||||
"Added Successfully": "Erfolgreich hinzugefügt",
|
||||
"Added to Favorites": "Zu Favoriten hinzugefügt",
|
||||
"All changes are saved locally": "Alle Änderungen sind lokal gespeichert",
|
||||
"All data has been stored in the cloud": "Alle Daten wurden in der Cloud gespeichert.",
|
||||
"All pages": "Alle Seiten",
|
||||
"App Version": "App Version",
|
||||
"Available Offline": "Offline verfügbar",
|
||||
"Back Home": "Zurück zum Start",
|
||||
"Back to Quick Search": "Zurück zur Schnellsuche",
|
||||
"Body text": "Haupttext",
|
||||
"Bold": "Fett",
|
||||
"Cancel": "Abbrechen",
|
||||
"Change avatar hint": "Avatar von allen Mitgliedern ändern.",
|
||||
"Change workspace name hint": "Name von allen Mitgliedern ändern.",
|
||||
"Check Our Docs": "Sieh dir unsere Dokumentation an",
|
||||
"Check for updates": "Nach Updates suchen",
|
||||
"Check for updates automatically": "Automatisch nach Updates suchen",
|
||||
"Cloud Workspace": "Cloud Workspace",
|
||||
"Cloud Workspace Description": "Alle Daten werden synchronisiert und zu dem AffiNE account <1>{{email}}</1> gespeichert",
|
||||
"Code block": "Code-Block",
|
||||
"Collaboration": "Zusammenarbeit",
|
||||
"Collaboration Description": "Für die Zusammenarbeit mit anderen Nutzern werden die AFFiNE Cloud Services benötigt.",
|
||||
"Collapse sidebar": "Seitenleiste einklappen",
|
||||
"Color Scheme": "Farb Schema",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.title": "Automatisch nach Updates suchen",
|
||||
"com.affine.aboutAFFiNE.changelog.title": "Erfahre was neu ist!",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.description": "Neue Version ist verfügbar",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.title": "Nach Updates suchen",
|
||||
"com.affine.aboutAFFiNE.contact.community": "AFFiNE Community",
|
||||
"com.affine.aboutAFFiNE.contact.title": "Kontaktiere uns",
|
||||
"com.affine.aboutAFFiNE.contact.website": "Offizielle Webseite",
|
||||
"com.affine.aboutAFFiNE.legal.privacy": "Datenschutz",
|
||||
"com.affine.aboutAFFiNE.legal.tos": "Nutzungsbedingungen",
|
||||
"com.affine.aboutAFFiNE.subtitle": "Information über AFFiNE",
|
||||
"com.affine.aboutAFFiNE.title": "Über AFFiNE",
|
||||
"com.affine.aboutAFFiNE.version.app": "App Version",
|
||||
"com.affine.aboutAFFiNE.version.title": "Version",
|
||||
"com.affine.appearanceSettings.color.title": "Farb Schema",
|
||||
"com.affine.appearanceSettings.date.title": "Datum",
|
||||
"com.affine.appearanceSettings.dateFormat.title": "Datumsformat",
|
||||
"com.affine.appearanceSettings.font.title": "Schriftart",
|
||||
"com.affine.appearanceSettings.theme.title": "Thema",
|
||||
"com.affine.appUpdater.downloading": "Herunterladen",
|
||||
"com.affine.appUpdater.installUpdate": "Neustart zum Installieren des Updates",
|
||||
"com.affine.appUpdater.openDownloadPage": "Download-Seite öffnen",
|
||||
"com.affine.appUpdater.updateAvailable": "Update verfügbar",
|
||||
"com.affine.appUpdater.whatsNew": "Erfahre was neu ist!",
|
||||
"com.affine.backButton": "Zurück zum Start",
|
||||
"com.affine.banner.content": "Dir gefällt die Demo? <1>Lade den AFFiNE Client herunter</1>, um das volle Potenzial zu entdecken.",
|
||||
"com.affine.brand.affineCloud": "AFFiNE Cloud",
|
||||
"com.affine.cloudTempDisable.description": "Wir aktualisieren den AFFiNE Cloud Service und er ist vorübergehend auf dem Client nicht verfügbar. Wenn du auf dem Laufenden bleiben und über die Verfügbarkeit informiert werden möchtest, kannst du das <1>AFFiNE Cloud Anmeldeformular</1> ausfüllen.",
|
||||
"com.affine.cloudTempDisable.title": "Die AFFiNE Cloud wird gerade aufgerüstet.",
|
||||
"com.affine.collection-bar.action.tooltip.delete": "Löschen",
|
||||
"com.affine.collection-bar.action.tooltip.edit": "Bearbeiten",
|
||||
"com.affine.confirmModal.button.cancel": "Abbrechen",
|
||||
"com.affine.currentYear": "Aktuelles Jahr",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "Workspace verlassen",
|
||||
"com.affine.draw_with_a_blank_whiteboard": "Zeichnen mit einem leeren Whiteboard",
|
||||
"com.affine.earlier": "Früher",
|
||||
"com.affine.editCollection.button.cancel": "Abbrechen",
|
||||
"com.affine.editCollection.button.create": "Erstellen",
|
||||
"com.affine.editCollection.save": "Speichern",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "Abbrechen",
|
||||
"com.affine.export.error.message": "Bitte versuche es später wieder.",
|
||||
"com.affine.export.success.title": "Erfolgreich exportiert",
|
||||
"com.affine.favoritePageOperation.add": "Zu Favoriten hinzufügen",
|
||||
"com.affine.favoritePageOperation.remove": "Von Favoriten entfernen",
|
||||
"com.affine.filter": "Filter",
|
||||
"com.affine.filter.after": "danach",
|
||||
"com.affine.filter.before": "bevor",
|
||||
"com.affine.filter.false": "falsch",
|
||||
"com.affine.filter.is": "ist",
|
||||
"com.affine.filter.is empty": "ist leer",
|
||||
"com.affine.filter.is not empty": "ist nicht leer",
|
||||
"com.affine.filter.is-favourited": "Favorisiert",
|
||||
"com.affine.filter.true": "wahr",
|
||||
"com.affine.header.option.add-tag": "Tag hinzufügen",
|
||||
"com.affine.header.option.duplicate": "Duplizieren",
|
||||
"com.affine.helpIsland.contactUs": "Kontaktiere uns",
|
||||
"com.affine.helpIsland.gettingStarted": "Erste Schritte",
|
||||
"com.affine.helpIsland.helpAndFeedback": "Hilfe und Feedback",
|
||||
"com.affine.import_file": "Markdown/Notion Unterstützung",
|
||||
"com.affine.inviteModal.button.cancel": "Abbrechen",
|
||||
"com.affine.keyboardShortcuts.bodyText": "Haupttext",
|
||||
"com.affine.keyboardShortcuts.bold": "Fett",
|
||||
"com.affine.keyboardShortcuts.cancel": "Abbrechen",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "Code-Block",
|
||||
"com.affine.keyboardShortcuts.divider": "Trenner",
|
||||
"com.affine.keyboardShortcuts.goBack": "Zurück gehen",
|
||||
"com.affine.keyboardShortcuts.goForward": "Vorwärts gehen",
|
||||
"com.affine.keyboardShortcuts.hand": "Hand",
|
||||
"com.affine.keyboardShortcuts.heading": "Überschrift {{number}}",
|
||||
"com.affine.keyboardShortcuts.image": "Bild",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "Einzug vergrößern",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "Inline-Code",
|
||||
"com.affine.keyboardShortcuts.italic": "Kursiv",
|
||||
"com.affine.keyboardShortcuts.link": "Hyperlink (mit ausgewähltem Text)",
|
||||
"com.affine.keyboardShortcuts.newPage": "Neue Seite",
|
||||
"com.affine.keyboardShortcuts.pen": "Stift (bald verfügbar)",
|
||||
"com.affine.keyboardShortcuts.quickSearch": "Schnelle Suche",
|
||||
"com.affine.keyboardShortcuts.redo": "Wiederholen",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "Einzug verringern",
|
||||
"com.affine.keyboardShortcuts.select": "Auswählen",
|
||||
"com.affine.keyboardShortcuts.selectAll": "Alle auswählen",
|
||||
"com.affine.keyboardShortcuts.shape": "Form",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "Durchgestrichen",
|
||||
"com.affine.keyboardShortcuts.text": "Text (bald verfügbar)",
|
||||
"com.affine.keyboardShortcuts.title": "Tastaturkürzel",
|
||||
"com.affine.keyboardShortcuts.underline": "Unterstreichen",
|
||||
"com.affine.keyboardShortcuts.undo": "Rückgängig",
|
||||
"com.affine.last30Days": "Letzten 30 Tage",
|
||||
"com.affine.last7Days": "Letzten 7 Tage",
|
||||
"com.affine.lastMonth": "Letzter Monat",
|
||||
"com.affine.lastWeek": "Letzte Woche",
|
||||
"com.affine.lastYear": "Letztes Jahr",
|
||||
"com.affine.moveToTrash.confirmModal.description": "{{title}} wird in den Papierkorb verschoben",
|
||||
"com.affine.moveToTrash.confirmModal.title": "Seite löschen?",
|
||||
"com.affine.moveToTrash.title": "In Papierkorb verschieben",
|
||||
"com.affine.nameWorkspace.button.cancel": "Abbrechen",
|
||||
"com.affine.nameWorkspace.button.create": "Erstellen",
|
||||
"com.affine.nameWorkspace.description": "Ein Workspace ist dein virtueller Raum zum Erfassen, Gestalten und Planen, ob allein oder gemeinsam im Team.",
|
||||
"com.affine.nameWorkspace.placeholder": "Name vom Workspace ändern",
|
||||
"com.affine.nameWorkspace.title": "Workspace benennen",
|
||||
"com.affine.new_edgeless": "Neuer Edgeless",
|
||||
"com.affine.new_import": "Importieren",
|
||||
"com.affine.notFoundPage.title": "404 - Seite nicht gefunden",
|
||||
"com.affine.onboarding.title1": "Hyperfusion von Whiteboard und Dokumenten",
|
||||
"com.affine.onboarding.title2": "Intuitive und robuste, blockbasierte Bearbeitung",
|
||||
"com.affine.onboarding.videoDescription1": "Wechsle mühelos zwischen dem Seitenmodus für die strukturierte Dokumentenerstellung und dem Whiteboard-Modus für den Ausdruck kreativer Ideen in freier Form.",
|
||||
"com.affine.onboarding.videoDescription2": "Verwende eine modulare Schnittstelle, um strukturierte Dokumente zu erstellen, indem du Textblöcke, Bilder und andere Inhalte einfach per Drag-and-drop anordnen kannst.",
|
||||
"com.affine.openPageOperation.newTab": "In neuem Tab öffnen",
|
||||
"com.affine.pageMode.all": "Alle",
|
||||
"com.affine.pageMode.edgeless": "Edgeless",
|
||||
"com.affine.pageMode.page": "Seite",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "Abbrechen",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "Deaktivieren",
|
||||
"com.affine.publicLinkDisableModal.description": "Wenn du diesen öffentlichen Link deaktivierst, können andere Personen mit diesem Link nicht mehr auf diese Seite zugreifen.",
|
||||
"com.affine.publicLinkDisableModal.title": "Öffentlichen Link deaktivieren ?",
|
||||
"com.affine.rootAppSidebar.favorites": "Favoriten",
|
||||
"com.affine.rootAppSidebar.others": "Andere",
|
||||
"com.affine.setDBLocation.button.customize": "Anpassen",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "Standard-Speicherort",
|
||||
"com.affine.setDBLocation.description": "Wähle den Ort, an dem du deinen Workspace erstellen möchten. Die Daten vom Workspace werden standardmäßig lokal gespeichert.",
|
||||
"com.affine.setDBLocation.title": "Datenbankstandort festlegen",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "Standardmäßig wird unter {{location}} gespeichert.",
|
||||
"com.affine.setSyncingMode.button.continue": "Fortfahren",
|
||||
"com.affine.setSyncingMode.cloud": "Geräteübergreifende Synchronisierung mit AFFiNE Cloud",
|
||||
"com.affine.setSyncingMode.deviceOnly": "Nur auf dem aktuellen Gerät verwenden",
|
||||
"com.affine.setSyncingMode.title.added": "Erfolgreich hinzugefügt",
|
||||
"com.affine.setSyncingMode.title.created": "Erfolgreich erstellt",
|
||||
"com.affine.settings.remove-workspace": "Workspace entfernen",
|
||||
"com.affine.settingSidebar.settings.general": "Generelles",
|
||||
"com.affine.settingSidebar.settings.workspace": "Workspace",
|
||||
"com.affine.settingSidebar.title": "Einstellungen",
|
||||
"com.affine.shortcutsTitle.edgeless": "Edgeless",
|
||||
"com.affine.shortcutsTitle.general": "Generelles",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Markdown Syntax",
|
||||
"com.affine.shortcutsTitle.page": "Seite",
|
||||
"com.affine.sidebarSwitch.collapse": "Seitenleiste einklappen",
|
||||
"com.affine.sidebarSwitch.expand": "Seitenleiste ausklappen",
|
||||
"com.affine.themeSettings.dark": "dunkel",
|
||||
"com.affine.themeSettings.light": "hell",
|
||||
"com.affine.themeSettings.system": "system",
|
||||
"com.affine.toastMessage.addedFavorites": "Zu Favoriten hinzugefügt",
|
||||
"com.affine.toastMessage.edgelessMode": "Edgeless-Modus",
|
||||
"com.affine.toastMessage.movedTrash": "In Papierkorb verschoben",
|
||||
"com.affine.toastMessage.pageMode": "Seitenmodus",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "Dauerhaft gelöscht",
|
||||
"com.affine.toastMessage.removedFavorites": "Von Favoriten entfernt",
|
||||
"com.affine.toastMessage.restored": "{{title}} wiederhergestellt",
|
||||
"com.affine.toastMessage.successfullyDeleted": "Erfolgreich gelöscht",
|
||||
"com.affine.today": "Heute",
|
||||
"com.affine.trashOperation.delete": "Löschen",
|
||||
"com.affine.trashOperation.delete.description": "Das Löschen kann nicht rückgängig gemacht werden. Fortfahren?",
|
||||
"com.affine.trashOperation.delete.title": "Dauerhaft löschen",
|
||||
"com.affine.trashOperation.deletePermanently": "Dauerhaft löschen",
|
||||
"com.affine.trashOperation.restoreIt": "Wiederherstellen",
|
||||
"com.affine.workspace.cannot-delete": "Du kannst den letzten Workspace nicht löschen",
|
||||
"com.affine.workspaceDelete.button.cancel": "Abbrechen",
|
||||
"com.affine.workspaceDelete.button.delete": "Löschen",
|
||||
"com.affine.workspaceDelete.description": "Workspace <1>{{workspace}}</1> wird gelöscht und der Inhalt wird verloren sein. Dies kann nicht rückgängig gemacht werden.",
|
||||
"com.affine.workspaceDelete.description2": "Das Löschen von <1>{{workspace}}</1> wird sowohl lokale als auch Daten in der Cloud löschen. Dies kann nicht rückgängig gemacht werden.",
|
||||
"com.affine.workspaceDelete.placeholder": "Bitte zur Bestätigung den Workspace-Namen eingeben",
|
||||
"com.affine.workspaceDelete.title": "Workspace löschen",
|
||||
"com.affine.workspaceLeave.button.cancel": "Abbrechen",
|
||||
"com.affine.workspaceLeave.button.leave": "Verlassen",
|
||||
"com.affine.workspaceLeave.description": "Nach dem Verlassen hast du keinen Zugriff mehr auf die Inhalte dieses Workspaces.",
|
||||
"com.affine.workspaceSubPath.all": "Alle Seiten",
|
||||
"com.affine.workspaceSubPath.trash": "Papierkorb",
|
||||
"com.affine.workspaceType.cloud": "Cloud Workspace",
|
||||
"com.affine.workspaceType.joined": "Workspace beigetreten",
|
||||
"com.affine.workspaceType.local": "Lokaler Workspace",
|
||||
"com.affine.workspaceType.offline": "Offline verfügbar",
|
||||
"com.affine.write_with_a_blank_page": "Schreibe mit einer leeren Seite",
|
||||
"com.affine.yesterday": "Gestern",
|
||||
"Confirm": "Bestätigen",
|
||||
"Connector": "Verbindung (bald verfügbar)",
|
||||
"Contact Us": "Kontaktiere uns",
|
||||
"Contact with us": "Kontaktiere uns",
|
||||
"Continue": "Fortfahren",
|
||||
"Continue with Google": "Mit Google fortfahren",
|
||||
"Convert to ": "Konvertiere zu",
|
||||
"Copied link to clipboard": "Link in die Zwischenablage kopiert",
|
||||
"Copy": "Kopieren",
|
||||
"Copy Link": "Link kopieren",
|
||||
"core": "Core",
|
||||
"Create": "Erstellen",
|
||||
"Create Or Import": "Erstellen oder importieren",
|
||||
"Create Shared Link Description": "Erstelle einen Link, den du leicht mit jedem teilen kannst.",
|
||||
"Create your own workspace": "Eigenen Workspace erstellen",
|
||||
"Created": "Erstellt",
|
||||
"Created Successfully": "Erfolgreich erstellt",
|
||||
"Created with": "Erstellt mit",
|
||||
"Customize": "Anpassen",
|
||||
"Data sync mode": "Daten-Sync Modus",
|
||||
"DB_FILE_ALREADY_LOADED": "Datenbankdatei bereits geladen",
|
||||
"DB_FILE_INVALID": "Ungültige Datenbankdatei",
|
||||
"DB_FILE_PATH_INVALID": "Pfad der Datenbankdatei ungültig",
|
||||
"Data sync mode": "Daten-Sync Modus",
|
||||
"Date": "Datum",
|
||||
"Date Format": "Datumsformat",
|
||||
"Default Location": "Standard-Speicherort",
|
||||
"Default db location hint": "Standardmäßig wird unter {{location}} gespeichert.",
|
||||
"Delete": "Löschen",
|
||||
"Delete Member?": "Mitglied löschen?",
|
||||
"Delete Workspace": "Workspace löschen",
|
||||
"Delete Workspace Description": "Workspace <1>{{workspace}}</1> wird gelöscht und der Inhalt wird verloren sein. Dies kann nicht rückgängig gemacht werden.",
|
||||
"Delete Workspace Description2": "Das Löschen von <1>{{workspace}}</1> wird sowohl lokale als auch Daten in der Cloud löschen. Dies kann nicht rückgängig gemacht werden.",
|
||||
"Delete Workspace Label Hint": "Wenn dieser Workspace gelöscht wird, wird sein gesamter Inhalt für alle Benutzer dauerhaft gelöscht. Niemand wird in der Lage sein, den Inhalt dieses Workspaces wiederherzustellen.",
|
||||
"Delete Workspace placeholder": "Bitte gib als Bestätigung \"Delete\" ein",
|
||||
"Delete page?": "Seite löschen?",
|
||||
"Delete permanently": "Dauerhaft löschen",
|
||||
"Disable": "Deaktivieren",
|
||||
"Disable Public Link": "Öffentlichen Link deaktivieren",
|
||||
"Disable Public Link ?": "Öffentlichen Link deaktivieren ?",
|
||||
"Disable Public Link Description": "Wenn du diesen öffentlichen Link deaktivierst, können andere Personen mit diesem Link nicht mehr auf diese Seite zugreifen.",
|
||||
"Disable Public Sharing": "Öffentliche Freigabe deaktivieren",
|
||||
"Discover what's new": "Erfahre was neu ist!",
|
||||
"Discover what's new!": "Erfahre was neu ist!",
|
||||
"Divider": "Trenner",
|
||||
"Download all data": "Alle Daten herunterladen",
|
||||
"Download core data": "Core Daten herunterladen",
|
||||
"Download data": "{{CoreOrAll}} Daten herunterladen",
|
||||
"Download data Description1": "Es verbraucht mehr Speicherplatz auf deinem Gerät.",
|
||||
"Download data Description2": "Es verbraucht nur wenig Speicherplatz auf deinem Gerät.",
|
||||
"Edgeless": "Edgeless",
|
||||
"Edit": "Bearbeiten",
|
||||
"Edit Filter": "Filter bearbeiten",
|
||||
"emptyAllPages": "Dieser Workspace ist leer. Erstelle eine Seite, um sie zu bearbeiten.",
|
||||
"emptyFavorite": "Klicke auf \"Zu Favoriten hinzufügen\" und die Seite wird hier erscheinen",
|
||||
"emptySharedPages": "Freigegebene Seiten werden hier angezeigt.",
|
||||
"emptyTrash": "Klicke auf \"In Papierkorb verschieben\" und die Seite wird hier erscheinen.",
|
||||
"Enable": "Aktivieren",
|
||||
"Enable AFFiNE Cloud": "AFFiNE Cloud aktivieren",
|
||||
"Enable AFFiNE Cloud Description": "Falls aktiviert, werden die Daten in diesem Workspace via der AFFiNE Cloud gesichert und synchronisiert.",
|
||||
"Enabled success": "Aktivierung erfolgreich",
|
||||
"Exclude from filter": "Von Filter ausschließen",
|
||||
"Expand sidebar": "Seitenleiste ausklappen",
|
||||
"Export": "Exportieren",
|
||||
"Export AFFiNE backup file": "AFFiNE-Backup als Datei exportieren",
|
||||
"Export Description": "Du kannst alle Workspace Daten zur Sicherung exportieren, und die exportierten Daten können wieder importiert werden.",
|
||||
"Export Shared Pages Description": "Laden eine statische Kopie dieser Seite herunter, um sie mit anderen zu teilen.",
|
||||
"Export Workspace": "Das Exportieren von Workspace <1>{{workspace}}</1> kommt bald",
|
||||
"Export success": "Export erfolgreich",
|
||||
"Export to HTML": "Zu HTML exportieren",
|
||||
"Export to Markdown": "Zu Markdown exportieren",
|
||||
"Export to PDF": "Zu PDF exportieren",
|
||||
"Export to PNG": "Zu PNG exportieren",
|
||||
"FILE_ALREADY_EXISTS": "Datei existiert bereits",
|
||||
"Export Workspace": "Das Exportieren von Workspace <1>{{workspace}}</1> kommt bald",
|
||||
"Failed to publish workspace": "Workspace Veröffentlichung fehlgeschlagen",
|
||||
"Favorite": "Favorit",
|
||||
"Favorite pages for easy access": "Favoriten-Seiten für schnellen Zugriff",
|
||||
"Favorited": "Favorisiert",
|
||||
"Favorites": "Favoriten",
|
||||
"FILE_ALREADY_EXISTS": "Datei existiert bereits",
|
||||
"Find 0 result": "0 Ergebnisse gefunden",
|
||||
"Find results": "{{number}} Ergebnis(se) gefunden",
|
||||
"Font Style": "Schriftart",
|
||||
"Force Sign Out": "Abmeldung erwingen",
|
||||
"General": "Generelles",
|
||||
"Get in touch!": "Kontaktiere uns!",
|
||||
"Get in touch! Join our communities": "Nimm teil! Treten Sie unseren Communities bei.",
|
||||
"Get in touch! Join our communities.": "Bleib mit uns in Kontakt und trete unseren Communitys bei!",
|
||||
"Go Back": "Zurück gehen",
|
||||
"Go Forward": "Vorwärts gehen",
|
||||
"Got it": "Verstanden",
|
||||
"Hand": "Hand",
|
||||
"Heading": "Überschrift {{number}}",
|
||||
"Help and Feedback": "Hilfe und Feedback",
|
||||
"How is AFFiNE Alpha different?": "Worin unterscheidet sich AFFiNE Alpha?",
|
||||
"Image": "Bild",
|
||||
"Import": "Importieren",
|
||||
"Increase indent": "Einzug vergrößern",
|
||||
"Info": "Info",
|
||||
"Inline code": "Inline-Code",
|
||||
"Invite": "Einladen",
|
||||
"Invite Members": "Mitglieder einladen",
|
||||
"Invite placeholder": "E-Mails durchsuchen (Unterstützt nur Gmail)",
|
||||
"is a Cloud Workspace": "ist ein Cloud Workspace.",
|
||||
"is a Local Workspace": "ist ein lokaler Workspace.",
|
||||
"It takes up little space on your device": "Es nimmt nur wenig Platz auf deinem Gerät ein.",
|
||||
"It takes up little space on your device.": "Es verbraucht nur wenig Speicherplatz auf deinem Gerät.",
|
||||
"It takes up more space on your device": "Es verbraucht mehr Speicherplatz auf deinem Gerät.",
|
||||
"It takes up more space on your device.": "Es verbraucht mehr Speicherplatz auf deinem Gerät.",
|
||||
"Italic": "Kursiv",
|
||||
"Joined Workspace": "Workspace beigetreten",
|
||||
"Jump to": "Springe zu",
|
||||
"Keyboard Shortcuts": "Tastaturkürzel",
|
||||
"Leave": "Verlassen",
|
||||
"Leave Workspace": "Workspace verlassen",
|
||||
"Leave Workspace Description": "Nach dem Verlassen hast du keinen Zugriff mehr auf die Inhalte dieses Workspaces.",
|
||||
"Link": "Hyperlink (mit ausgewähltem Text)",
|
||||
"Loading": "Lade...",
|
||||
"Local Workspace": "Lokaler Workspace",
|
||||
"Local Workspace Description": "Alle Daten sind auf dem aktuellen Gerät gespeichert. Du kannst AFFiNE Cloud für diesen Workspace aktivieren, um deine Daten mit der Cloud zu synchronisieren.",
|
||||
"Markdown Syntax": "Markdown Syntax",
|
||||
"login success": "Login erfolgreich",
|
||||
"Member": "Mitglied",
|
||||
"Member has been removed": "{{name}} wurde entfernt",
|
||||
"Members": "Mitglieder",
|
||||
"mobile device": "Sieht aus, als ob du ein mobiles Gerät nutzt.",
|
||||
"mobile device description": "Wir arbeiten noch an der Unterstützung für mobile Geräte und empfehlen dir, ein Desktop-Gerät zu verwenden.",
|
||||
"Move folder": "Ordner verschieben",
|
||||
"Move folder hint": "Neuen Speicherort auswählen.",
|
||||
"Move folder success": "Ordnerverschiebung erfolgreich",
|
||||
"Move page to": "Seite verschieben nach...",
|
||||
"Move page to...": "Seite verschieben nach...",
|
||||
"Move to": "Verschieben zu",
|
||||
"Move to Trash": "In Papierkorb verschieben",
|
||||
"Moved to Trash": "In Papierkorb verschoben",
|
||||
"My Workspaces": "Meine Workspaces",
|
||||
"Name Your Workspace": "Workspace benennen",
|
||||
"Navigation Path": "Navigationspfad",
|
||||
"New Keyword Page": "Neue '{{query}}' Seite",
|
||||
"New Page": "Neue Seite",
|
||||
"New Workspace": "Neuer Workspace",
|
||||
"New version is ready": "Neue Version ist verfügbar",
|
||||
"No item": "Kein Inhalt",
|
||||
"Non-Gmail": "Nur Gmail wird unterstützt",
|
||||
"Not now": "Vielleicht später",
|
||||
"Official Website": "Offizielle Webseite",
|
||||
"Open Workspace Settings": "Workspace Einstellungen öffnen",
|
||||
"Open folder": "Ordner öffnen",
|
||||
"Open folder hint": "Prüfe, wo sich der Speicherordner befindet.",
|
||||
"Open in new tab": "In neuem Tab öffnen",
|
||||
"Open Workspace Settings": "Workspace Einstellungen öffnen",
|
||||
"Organize pages to build knowledge": "Seiten organisieren, um Wissen aufzubauen",
|
||||
"Owner": "Besitzer",
|
||||
"Page": "Seite",
|
||||
"Paper": "Papier",
|
||||
"Pen": "Stift (bald verfügbar)",
|
||||
"Pending": "Ausstehend",
|
||||
"Permanently deleted": "Dauerhaft gelöscht",
|
||||
"Pivots": "Pivots",
|
||||
"Placeholder of delete workspace": "Bitte zur Bestätigung den Workspace-Namen eingeben",
|
||||
"Please make sure you are online": "Bitte stelle sicher, dass du online bist",
|
||||
"Privacy": "Datenschutz",
|
||||
"Publish": "Veröffentlichen",
|
||||
"Publish to web": "Im Web veröffentlichen",
|
||||
"Published Description": "Der aktuelle Workspace wurde im Web veröffentlicht, jeder mit dem Link kann den Inhalt sehen.",
|
||||
"Published to Web": "Im Web veröffentlicht",
|
||||
"Publishing": "Für das Veröffentlichen im Web werden die AFFiNE Cloud Services benötigt.",
|
||||
"Publishing Description": "Nach der Veröffentlichung im Web kann jeder den Inhalt dieses Workspaces über den Link einsehen.",
|
||||
"Quick Search": "Schnelle Suche",
|
||||
"Quick search": "Schnelle Suche",
|
||||
"Quick search placeholder": "Schnelle Suche...",
|
||||
"Quick search placeholder2": "Suche in {{workspace}}",
|
||||
"RFP": "Seiten können frei zu Pivots hinzugefügt/entfernt werden und bleiben über \"Alle Seiten\" zugänglich.",
|
||||
"Recent": "Neueste",
|
||||
"Redo": "Wiederholen",
|
||||
"Reduce indent": "Einzug verringern",
|
||||
"recommendBrowser": "Wir empfehlen den <1>Chrome</1> Browser für die beste Nutzererfahrung.",
|
||||
"Remove from Pivots": "Von Pivots entfernen",
|
||||
"Remove from favorites": "Von Favoriten entfernen",
|
||||
"Remove from workspace": "Vom Workspace entfernen",
|
||||
"Removed from Favorites": "Von Favoriten entfernt",
|
||||
"Rename": "Umbenennen",
|
||||
"Restart Install Client Update": "Neustart zum Installieren des Updates",
|
||||
"Restore it": "Wiederherstellen",
|
||||
"Retain cached cloud data": "Zwischengespeicherte Cloud-Daten behalten",
|
||||
"Retain local cached data": "Lokale, zwischengespeicherte Daten beibehalten",
|
||||
"Save": "Speichern",
|
||||
"RFP": "Seiten können frei zu Pivots hinzugefügt/entfernt werden und bleiben über \"Alle Seiten\" zugänglich.",
|
||||
"Saved then enable AFFiNE Cloud": "Alle Änderungen werden lokal gespeichert. Klicke hier, um AFFiNE Cloud zu aktivieren.",
|
||||
"Select": "Auswählen",
|
||||
"Select All": "Alle auswählen",
|
||||
"Set a Workspace name": "Name vom Workspace ändern",
|
||||
"Set database location": "Datenbankstandort festlegen",
|
||||
"Set up an AFFiNE account to sync data": "Für das Synchronisieren wird ein AFFiNE Account benötigt",
|
||||
"Settings": "Einstellungen",
|
||||
"Shape": "Form",
|
||||
"Share Menu Public Workspace Description1": "Laden andere ein, dem Workspace beizutreten oder veröffentliche ihn im Internet.",
|
||||
"Share Menu Public Workspace Description2": "Der aktuelle Workspace wurde im Internet als öffentlicher Workspace veröffentlicht.",
|
||||
"Share with link": "Mit Link teilen",
|
||||
@@ -228,34 +325,24 @@
|
||||
"Skip": "Überspringen",
|
||||
"Stay logged out": "Abgemeldet bleiben",
|
||||
"Sticky": "Haftnotiz (bald verfügbar)",
|
||||
"still designed": "(Diese Seite ist noch im Aufbau.)",
|
||||
"Stop publishing": "Veröffentlichen stoppen",
|
||||
"Storage Folder": "Speicherordner",
|
||||
"Strikethrough": "Durchgestrichen",
|
||||
"Successfully deleted": "Erfolgreich gelöscht",
|
||||
"Sync": "Sync",
|
||||
"Sync across devices with AFFiNE Cloud": "Geräteübergreifende Synchronisierung mit AFFiNE Cloud",
|
||||
"Synced with AFFiNE Cloud": "Synchronisiert mit AFFiNE Cloud",
|
||||
"Tags": "Tags",
|
||||
"Terms of Use": "Nutzungsbedingungen",
|
||||
"Text": "Text (bald verfügbar)",
|
||||
"Theme": "Thema",
|
||||
"Title": "Titel",
|
||||
"Trash": "Papierkorb",
|
||||
"TrashButtonGroupDescription": "Das Löschen kann nicht rückgängig gemacht werden. Fortfahren?",
|
||||
"TrashButtonGroupTitle": "Dauerhaft löschen",
|
||||
"UNKNOWN_ERROR": "Unbekannter Fehler",
|
||||
"Underline": "Unterstreichen",
|
||||
"Undo": "Rückgängig",
|
||||
"Untitled": "Unbenannt",
|
||||
"Update Available": "Update verfügbar",
|
||||
"Update workspace name success": "Update vom Workspace-Namen erfolgreich",
|
||||
"Updated": "Aktualisiert",
|
||||
"upgradeBrowser": "Bitte aktualisiere auf die neueste Chrome-Version, um eine optimale Nutzererfahrung zu gewährleisten.",
|
||||
"Upload": "Hochladen",
|
||||
"Use on current device only": "Nur auf dem aktuellen Gerät verwenden",
|
||||
"Users": "Benutzer",
|
||||
"Version": "Version",
|
||||
"View Navigation Path": "Navigationspfad ansehen",
|
||||
"Wait for Sync": "Warte auf Sync",
|
||||
"will delete member": "wird Mitglied löschen",
|
||||
"Workspace Avatar": "Workspace Avatar",
|
||||
"Workspace Icon": "Workspace Icon",
|
||||
"Workspace Name": "Workspace Name",
|
||||
@@ -263,75 +350,5 @@
|
||||
"Workspace Owner": "Workspace-Besitzer",
|
||||
"Workspace Settings": "Workspace Einstellungen",
|
||||
"Workspace Type": "Workspace Typ",
|
||||
"Workspace database storage description": "Wähle den Ort, an dem du deinen Workspace erstellen möchten. Die Daten vom Workspace werden standardmäßig lokal gespeichert.",
|
||||
"Workspace description": "Ein Workspace ist dein virtueller Raum zum Erfassen, Gestalten und Planen, ob allein oder gemeinsam im Team.",
|
||||
"You cannot delete the last workspace": "Du kannst den letzten Workspace nicht löschen",
|
||||
"all": "Alle",
|
||||
"com.affine.banner.content": "Dir gefällt die Demo? <1>Lade den AFFiNE Client herunter</1>, um das volle Potenzial zu entdecken.",
|
||||
"com.affine.cloudTempDisable.description": "Wir aktualisieren den AFFiNE Cloud Service und er ist vorübergehend auf dem Client nicht verfügbar. Wenn du auf dem Laufenden bleiben und über die Verfügbarkeit informiert werden möchtest, kannst du das <1>AFFiNE Cloud Anmeldeformular</1> ausfüllen.",
|
||||
"com.affine.cloudTempDisable.title": "Die AFFiNE Cloud wird gerade aufgerüstet.",
|
||||
"com.affine.collection-bar.action.tooltip.delete": "Löschen",
|
||||
"com.affine.collection-bar.action.tooltip.edit": "Bearbeiten",
|
||||
"com.affine.currentYear": "Aktuelles Jahr",
|
||||
"com.affine.draw_with_a_blank_whiteboard": "Zeichnen mit einem leeren Whiteboard",
|
||||
"com.affine.earlier": "Früher",
|
||||
"com.affine.edgelessMode": "Edgeless-Modus",
|
||||
"com.affine.export.error.message": "Bitte versuche es später wieder.",
|
||||
"com.affine.export.success.title": "Erfolgreich exportiert",
|
||||
"com.affine.filter": "Filter",
|
||||
"com.affine.filter.after": "danach",
|
||||
"com.affine.filter.before": "bevor",
|
||||
"com.affine.filter.false": "falsch",
|
||||
"com.affine.filter.is": "ist",
|
||||
"com.affine.filter.is empty": "ist leer",
|
||||
"com.affine.filter.is not empty": "ist nicht leer",
|
||||
"com.affine.filter.is-favourited": "Favorisiert",
|
||||
"com.affine.filter.true": "wahr",
|
||||
"com.affine.header.option.add-tag": "Tag hinzufügen",
|
||||
"com.affine.header.option.duplicate": "Duplizieren",
|
||||
"com.affine.helpIsland.gettingStarted": "Erste Schritte",
|
||||
"com.affine.import_file": "Markdown/Notion Unterstützung",
|
||||
"com.affine.last30Days": "Letzten 30 Tage",
|
||||
"com.affine.last7Days": "Letzten 7 Tage",
|
||||
"com.affine.lastMonth": "Letzter Monat",
|
||||
"com.affine.lastWeek": "Letzte Woche",
|
||||
"com.affine.lastYear": "Letztes Jahr",
|
||||
"com.affine.new_edgeless": "Neuer Edgeless",
|
||||
"com.affine.new_import": "Importieren",
|
||||
"com.affine.onboarding.title1": "Hyperfusion von Whiteboard und Dokumenten",
|
||||
"com.affine.onboarding.title2": "Intuitive und robuste, blockbasierte Bearbeitung",
|
||||
"com.affine.onboarding.videoDescription1": "Wechsle mühelos zwischen dem Seitenmodus für die strukturierte Dokumentenerstellung und dem Whiteboard-Modus für den Ausdruck kreativer Ideen in freier Form.",
|
||||
"com.affine.onboarding.videoDescription2": "Verwende eine modulare Schnittstelle, um strukturierte Dokumente zu erstellen, indem du Textblöcke, Bilder und andere Inhalte einfach per Drag-and-drop anordnen kannst.",
|
||||
"com.affine.pageMode": "Seitenmodus",
|
||||
"com.affine.settings.about.message": "Information über AFFiNE",
|
||||
"com.affine.settings.remove-workspace": "Workspace entfernen",
|
||||
"com.affine.settings.workspace": "Workspace",
|
||||
"com.affine.today": "Heute",
|
||||
"com.affine.updater.downloading": "Herunterladen",
|
||||
"com.affine.updater.open-download-page": "Download-Seite öffnen",
|
||||
"com.affine.updater.restart-to-update": "Neustart zum Installieren des Updates",
|
||||
"com.affine.updater.update-available": "Update verfügbar",
|
||||
"com.affine.workspace.cannot-delete": "Du kannst den letzten Workspace nicht löschen",
|
||||
"com.affine.write_with_a_blank_page": "Schreibe mit einer leeren Seite",
|
||||
"com.affine.yesterday": "Gestern",
|
||||
"core": "Core",
|
||||
"dark": "dunkel",
|
||||
"emptyAllPages": "Dieser Workspace ist leer. Erstelle eine Seite, um sie zu bearbeiten.",
|
||||
"emptyFavorite": "Klicke auf \"Zu Favoriten hinzufügen\" und die Seite wird hier erscheinen",
|
||||
"emptySharedPages": "Freigegebene Seiten werden hier angezeigt.",
|
||||
"emptyTrash": "Klicke auf \"In Papierkorb verschieben\" und die Seite wird hier erscheinen.",
|
||||
"is a Cloud Workspace": "ist ein Cloud Workspace.",
|
||||
"is a Local Workspace": "ist ein lokaler Workspace.",
|
||||
"light": "hell",
|
||||
"login success": "Login erfolgreich",
|
||||
"mobile device": "Sieht aus, als ob du ein mobiles Gerät nutzt.",
|
||||
"mobile device description": "Wir arbeiten noch an der Unterstützung für mobile Geräte und empfehlen dir, ein Desktop-Gerät zu verwenden.",
|
||||
"others": "Andere",
|
||||
"recommendBrowser": "Wir empfehlen den <1>Chrome</1> Browser für die beste Nutzererfahrung.",
|
||||
"restored": "{{title}} wiederhergestellt",
|
||||
"still designed": "(Diese Seite ist noch im Aufbau.)",
|
||||
"system": "system",
|
||||
"upgradeBrowser": "Bitte aktualisiere auf die neueste Chrome-Version, um eine optimale Nutzererfahrung zu gewährleisten.",
|
||||
"will be moved to Trash": "{{title}} wird in den Papierkorb verschoben",
|
||||
"will delete member": "wird Mitglied löschen"
|
||||
"You cannot delete the last workspace": "Du kannst den letzten Workspace nicht löschen"
|
||||
}
|
||||
|
||||
+478
-455
File diff suppressed because it is too large
Load Diff
+354
-335
@@ -1,338 +1,99 @@
|
||||
{
|
||||
"404 - Page Not Found": "Erreur 404 - Page non trouvée",
|
||||
"AFFiNE Cloud": "AFFiNE Cloud",
|
||||
"AFFiNE Community": "Communauté AFFiNE",
|
||||
"About AFFiNE": "À propos d'AFFiNE",
|
||||
"Access level": "Permissions",
|
||||
"Add a subpage inside": "Ajouter une sous-page à l'intérieur ",
|
||||
"Add Workspace": "Ajouter un nouvel espace de travail",
|
||||
"Add Workspace Hint": "Sélectionnez le fichier de la base de données déjà existant",
|
||||
"Add a subpage inside": "Ajouter une sous-page à l'intérieur ",
|
||||
"Add to Favorites": "Ajouter aux Favoris",
|
||||
"Add to favorites": "Ajouter aux favoris",
|
||||
"Added Successfully": "Ajouté avec succès",
|
||||
"Added to Favorites": "Ajouté aux favoris ",
|
||||
"All changes are saved locally": "Les changements sont sauvegardés localement",
|
||||
"All data has been stored in the cloud": "Toutes les données ont été sauvegardées dans le cloud.",
|
||||
"All pages": "Toutes les pages",
|
||||
"App Version": "Version",
|
||||
"Appearance Settings": "Paramètres d'apparence",
|
||||
"Append to Daily Note": "Ajouter à la note journalière",
|
||||
"Available Offline": "Disponible hors ligne",
|
||||
"Back Home": "Retour à l'accueil",
|
||||
"Back to Quick Search": "Retourner à la Recherche Rapide",
|
||||
"Back to all": "Retour à tous",
|
||||
"Body text": "Corps du texte",
|
||||
"Bold": "Gras",
|
||||
"Cancel": "Annuler ",
|
||||
"Change avatar hint": "Le nouvel avatar s'affichera pour tout le monde.",
|
||||
"Change workspace name hint": "Le nouveau nom s'affichera pour tout le monde.",
|
||||
"Changelog description": "Voir le journal des modifications d'AFFiNE",
|
||||
"Check Keyboard Shortcuts quickly": "Regarder rapidement les raccourcis clavier",
|
||||
"Check Our Docs": "Consultez notre documentation",
|
||||
"Check for updates": "Vérifier pour les mises à jour",
|
||||
"Check for updates automatically": "Vérifier automatiquement les mises à jours",
|
||||
"Choose your color scheme": "Choisissez votre thème de couleur",
|
||||
"Choose your font style": "Choisissez votre police de caractères",
|
||||
"Client Border Style": "Style de bordure de l'application",
|
||||
"Cloud Workspace": "Espace de travail distant",
|
||||
"Cloud Workspace Description": "Toutes les données vont être synchronisées et sauvegardées sur le compte AFFiNE <1>{{email}}</1>",
|
||||
"Code block": "Bloc de code",
|
||||
"Collaboration": "Collaboration",
|
||||
"Collaboration Description": "La collaboration avec d'autres membres nécessite AFFiNE Cloud.",
|
||||
"Collapse sidebar": "Rabattre la barre latérale",
|
||||
"Collections": "Collections",
|
||||
"Color Scheme": "Thème de couleur",
|
||||
"Communities": "Communautés",
|
||||
"Confirm": "Confirmer",
|
||||
"Connector": "Connecteur (bientôt disponible) ",
|
||||
"Contact Us": "Contactez-nous ",
|
||||
"Contact with us": "Contactez-nous",
|
||||
"Continue": "Continuer",
|
||||
"Continue with Google": "Se connecter avec Google ",
|
||||
"Convert to ": "Convertir en ",
|
||||
"Copied link to clipboard": "Lien copié dans le presse-papier",
|
||||
"Copy": "Copier",
|
||||
"Copy Link": "Copier le lien",
|
||||
"Create": "Créer ",
|
||||
"Create Or Import": "Créer ou importer",
|
||||
"Create Shared Link Description": "Créez un lien que vous pouvez facilement partager avec n'importe qui.",
|
||||
"Create your own workspace": "Créer votre propre espace de travail",
|
||||
"Created": "Objet créé ",
|
||||
"Created Successfully": "Créé avec succès",
|
||||
"Created with": "Créé avec",
|
||||
"Curve Connector": "Connecteur arrondi",
|
||||
"Customize": "Parcourir",
|
||||
"Customize your AFFiNE Appearance": "Personnalisez l'apparence de votre AFFiNE",
|
||||
"DB_FILE_ALREADY_LOADED": "Le fichier de base de données a déjà été chargé",
|
||||
"DB_FILE_INVALID": "Fichier de base de données invalide",
|
||||
"DB_FILE_MIGRATION_FAILED": "La migration du fichier de base de données a échoué",
|
||||
"DB_FILE_PATH_INVALID": "Le chemin d'accès du fichier de base de données est invalide",
|
||||
"Data sync mode": "Mode de synchronisation des données",
|
||||
"Date": "Date",
|
||||
"Date Format": "Format de date",
|
||||
"Default Location": "Emplacement par défaut",
|
||||
"Default db location hint": "Par défaut, elle sera enregistrée sous {{location}}",
|
||||
"Delete": "Supprimer objet ",
|
||||
"Delete Member?": "Supprimer le membre ?",
|
||||
"Delete Workspace": "Supprimer l'espace de travail",
|
||||
"Delete Workspace Description": "Attention, la suppression de <1>{{workspace}}</1> est irréversible. Le contenu sera perdu.",
|
||||
"Delete Workspace Description2": "La suppression de <1>{{workspace}}</1> aura pour effet de supprimer les données locales et les données dans le cloud. Attention, cette opération est irréversible.",
|
||||
"Delete Workspace Label Hint": "Après la suppression de cet espace de travail, vous supprimerez de manière permanente tout le contenu de tous les utilisateurs. En aucun cas le contenu de cet espace de travail ne pourra être restauré.",
|
||||
"Delete Workspace placeholder": "Veuillez écrire \"Delete\" pour confirmer",
|
||||
"Delete page?": "Supprimer la page ?",
|
||||
"Delete permanently": "Supprimer définitivement",
|
||||
"Disable": "Désactiver",
|
||||
"Disable Public Link": "Désactiver le lien public",
|
||||
"Disable Public Link ?": "Désactiver le lien public ?",
|
||||
"Disable Public Link Description": "Désactiver ce lien public empêchera à quiconque avec le lien d’accéder à cette page.",
|
||||
"Disable Public Sharing": "Désactiver le Partage Public ",
|
||||
"Discover what's new": "Découvrez les nouveautés",
|
||||
"Discover what's new!": "Découvrez les nouveautés !",
|
||||
"Display Language": "Langue d'affichage",
|
||||
"Divider": "Séparateur",
|
||||
"Download all data": "Télécharger toutes les données",
|
||||
"Download core data": "Télécharger les données principales",
|
||||
"Download data": "Télécharger les données {{CoreOrAll}}",
|
||||
"Download data Description1": "Cela prend davantage d’espace sur votre appareil.",
|
||||
"Download data Description2": "Cela prend peu d’espace sur votre appareil.",
|
||||
"Download updates automatically": "Télécharger les mises à jour automatiquement",
|
||||
"Edgeless": "Mode sans bords",
|
||||
"Edit": "Éditer",
|
||||
"Edit Filter": "Editer le filtre",
|
||||
"Editor Version": "Mode Édition",
|
||||
"Elbowed Connector": "Connecteur coudé",
|
||||
"Enable": "Activer",
|
||||
"Enable AFFiNE Cloud": "Activer AFFiNE Cloud",
|
||||
"Enable AFFiNE Cloud Description": "Si cette option est activée, les données de cet espace de travail seront sauvegardées et synchronisées via AFFiNE Cloud.",
|
||||
"Enable cloud hint": "Les fonctions suivantes nécessitent AFFiNE Cloud. Toutes les données sont actuellement stockées sur cet appareil. Vous pouvez activer AFFiNE Cloud pour cet espace de travail afin de le garder synchronisé avec le Cloud.",
|
||||
"Enabled success": "Activation réussie",
|
||||
"Exclude from filter": "Exclure du filtre",
|
||||
"Expand sidebar": "Agrandir la barre latérale",
|
||||
"Expand/Collapse Sidebar": "Agrandir/Rabattre la barre latérale",
|
||||
"Export": "Exporter ",
|
||||
"Export AFFiNE backup file": "Exporter un fichier de sauvegarde AFFiNE",
|
||||
"Export Description": "Vous pouvez exporter l'intégralité des données de l'espace de travail à titre de sauvegarde ; les données ainsi exportées peuvent être réimportées.",
|
||||
"Export Shared Pages Description": "Télécharger une copie de la version actuelle pour la partager avec les autres.",
|
||||
"Export Workspace": "L'exportation de l'espace de travail <1>{{workspace}}</1> sera bientôt disponible.",
|
||||
"Export success": "Exporté avec succès",
|
||||
"Export to HTML": "Exporter en HTML",
|
||||
"Export to Markdown": "Exporter en Markdown",
|
||||
"Export to PDF": "Exporter en PDF",
|
||||
"Export to PNG": "Exporter en PNG",
|
||||
"FILE_ALREADY_EXISTS": "Fichier déjà existant",
|
||||
"Failed to publish workspace": "La publication de l'espace de travail a échoué",
|
||||
"Favorite": "Favori",
|
||||
"Favorite pages for easy access": "Pages favorites pour un accès rapide",
|
||||
"Favorited": "Ajouté aux favoris",
|
||||
"Favorites": "Favoris ",
|
||||
"Find 0 result": "Aucun résultat trouvé ",
|
||||
"Find results": "{{number}} résultats trouvés",
|
||||
"Font Style": "Police de caractères",
|
||||
"Force Sign Out": "Forcer la déconnexion",
|
||||
"Full width Layout": "Disposition en pleine largeur",
|
||||
"General": "Général",
|
||||
"Get in touch!": "Contactez-nous ! ",
|
||||
"Get in touch! Join our communities": "Contactez-nous ! Rejoignez nos communautés.",
|
||||
"Get in touch! Join our communities.": "Contactez-nous ! Rejoignez nos communautés.",
|
||||
"Go Back": "Retour en arrière",
|
||||
"Go Forward": "Retour en avant",
|
||||
"Got it": "Compris",
|
||||
"Group": "Grouper",
|
||||
"Group as Database": "Grouper comme une base de donnée",
|
||||
"Hand": "Main",
|
||||
"Heading": "Titre {{number}}",
|
||||
"Help and Feedback": "Aide et feedbacks",
|
||||
"How is AFFiNE Alpha different?": "Quelles sont les différences avec AFFiNE Alpha ?",
|
||||
"Image": "Image",
|
||||
"Import": "Importer ",
|
||||
"Increase indent": "Augmenter l'indentation",
|
||||
"Info": "Information",
|
||||
"Info of legal": "Mentions légales",
|
||||
"Inline code": "Code inline",
|
||||
"Invite": "Inviter",
|
||||
"Invite Members": "Inviter des membres",
|
||||
"Invite placeholder": "Rechercher une adresse mail (compatible uniquement avec Gmail)",
|
||||
"It takes up little space on your device": "Prend peu d’espace sur l'appareil.",
|
||||
"It takes up little space on your device.": "Prend peu d’espace sur l'appareil.",
|
||||
"It takes up more space on your device": "Prend davantage d’espace sur l'appareil.",
|
||||
"It takes up more space on your device.": "Cela prend davantage d’espace sur votre appareil.",
|
||||
"Italic": "Italique",
|
||||
"Joined Workspace": "L'espace de travail a été rejoint",
|
||||
"Jump to": "Passer à ",
|
||||
"Keyboard Shortcuts": "Raccourcis clavier",
|
||||
"Leave": "Quitter",
|
||||
"Leave Workspace": "Quitter l'espace de travail",
|
||||
"Leave Workspace Description": "Une fois quitté, vous ne pourrez plus accéder au contenu de cet espace de travail.",
|
||||
"Link": "Lien hypertexte (avec le texte sélectionné)",
|
||||
"Loading": "Chargement...",
|
||||
"Local Workspace": "Espace de travail local",
|
||||
"Local Workspace Description": "Toutes les données sont stockées sur cet appareil. Vous pouvez activer AFFiNE Cloud pour garder les données de cet espace de travail synchronisé dans le cloud.",
|
||||
"Markdown Syntax": "Syntaxe Markdown",
|
||||
"Member": "Membre",
|
||||
"Member has been removed": "{{name}} a été supprimé",
|
||||
"Members": "Membres",
|
||||
"Members hint": "Gérez les membres ici, invitez des nouveaux membres par e-mail.",
|
||||
"Move Down": "Descendre",
|
||||
"Move Up": "Remonter",
|
||||
"Move folder": "Déplacer le dossier",
|
||||
"Move folder hint": "Sélectionnez le nouveau chemin d'accès pour le stockage ",
|
||||
"Move folder success": "Le déplacement du fichier a été réalisé avec succès",
|
||||
"Move page to": "Déplacer la page vers ...",
|
||||
"Move page to...": "Déplacer la page vers ...",
|
||||
"Move to": "Déplacer vers",
|
||||
"Move to Trash": "Déplacer à la corbeille",
|
||||
"Moved to Trash": "Déplacé dans la corbeille ",
|
||||
"My Workspaces": "Mes espaces de travail",
|
||||
"Name Your Workspace": "Nommer l'espace de travail",
|
||||
"NativeTitleBar": "Barre native",
|
||||
"Navigation Path": "Chemin d'accès",
|
||||
"New Keyword Page": "Nouvelle page '{{query}}'",
|
||||
"New Page": "Nouvelle page",
|
||||
"New Workspace": "Nouvel espace de travail ",
|
||||
"New version is ready": "Nouvelle version disponible",
|
||||
"No item": "Aucun objet ",
|
||||
"Non-Gmail": "Seul Gmail est supporté",
|
||||
"None yet": "Aucun pour l'instant",
|
||||
"Not now": "Pas maintenant",
|
||||
"Note": "Note",
|
||||
"Official Website": "Site officiel ",
|
||||
"Open Workspace Settings": "Ouvrir les paramètres de l'espace de travail",
|
||||
"Open folder": "Ouvrir le dossier",
|
||||
"Open folder hint": "Vérifiez l'emplacement du dossier de stockage.",
|
||||
"Open in new tab": "Ouvrir dans un nouvel onglet",
|
||||
"Organize pages to build knowledge": "Organisez vos pages pour construire l'entièreté de votre savoir",
|
||||
"Owner": "Propriétaire",
|
||||
"Page": "Page",
|
||||
"Paper": "Papier",
|
||||
"Pen": "Stylo",
|
||||
"Pending": "En attente",
|
||||
"Permanently deleted": "Supprimé définitivement ",
|
||||
"Pivots": "Arborescence",
|
||||
"Placeholder of delete workspace": "Entrez le nom de l'espace de travail pour confirmer",
|
||||
"Please make sure you are online": "Vérifiez que vous êtes bien en ligne",
|
||||
"Privacy": "Confidentialité",
|
||||
"Publish": "Publier",
|
||||
"Publish to web": "Publier sur internet",
|
||||
"Published Description": "L'espace de travail actuel a été publié sur Internet. Toute personne disposant du lien peut consulter le contenu.",
|
||||
"Published hint": "Les visiteurs peuvent prévisualiser le contenu via le lien fourni",
|
||||
"Published to Web": "Publié sur Internet",
|
||||
"Publishing": "Publier sur le web nécessite le service AFFiNE Cloud.",
|
||||
"Publishing Description": "Après avoir publié sur le net, toute personne disposant du lien pourra consulter le contenu.",
|
||||
"Quick Search": "Recherche rapide",
|
||||
"Quick search": "Recherche rapide",
|
||||
"Quick search placeholder": "Recherche Rapide ...",
|
||||
"Quick search placeholder2": "Rechercher dans {{workspace}}",
|
||||
"RFP": "Les pages peuvent librement être rajoutées à/retirées de l'Arborescence, tout en restant accessible depuis \"Toutes les pages\".",
|
||||
"Recent": "Récent",
|
||||
"Redo": "Rétablir",
|
||||
"Reduce indent": "Réduire l'indentation du texte",
|
||||
"Remove from Pivots": "Retirer de l'Arborescence",
|
||||
"Remove from favorites": "Retirer des favoris",
|
||||
"Remove from workspace": "Retirer de l'espace de travail",
|
||||
"Remove special filter": "Retirer le filtre spécial",
|
||||
"Removed from Favorites": "Retiré des Favoris ",
|
||||
"Rename": "Renommer",
|
||||
"Restart Install Client Update": "Redémarrez pour installer la mise à jour",
|
||||
"Restore it": "Restaurer ",
|
||||
"Retain cached cloud data": "Conserver les données mises en cache dans le cloud",
|
||||
"Retain local cached data": "Conserver les données du cache local",
|
||||
"Save": "Enregistrer",
|
||||
"Save as New Collection": "Enregistrer en tant que nouvelle collection",
|
||||
"Saved then enable AFFiNE Cloud": "Toutes les modifications sont sauvegardées localement, cliquez ici pour activer la sauvegarde AFFiNE Cloud",
|
||||
"Select": "Sélectionner ",
|
||||
"Select All": "Sélectionner l'ensemble",
|
||||
"Set a Workspace name": "Définir un nom pour l'espace de travail",
|
||||
"Set database location": "Définir l'emplacement de la base de données",
|
||||
"Set up an AFFiNE account to sync data": "Configurer un compte AFFiNE pour synchroniser les données",
|
||||
"Settings": "Paramètres",
|
||||
"Shape": "Forme",
|
||||
"Share Menu Public Workspace Description1": "Invitez d'autres personnes à rejoindre cet espace de travail ou publiez-le sur internet.",
|
||||
"Share Menu Public Workspace Description2": "L'espace de travail actuel a été publié sur le web en tant qu'espace de travail public.",
|
||||
"Share with link": "Partager un lien",
|
||||
"Shared Pages": "Pages partagées",
|
||||
"Shared Pages Description": "Le service de partage de page public nécessite AFFiNE Cloud.",
|
||||
"Shared Pages In Public Workspace Description": "L'intégralité de cet espace de travail a été publiée sur internet et peut être modifiée via les <1>Paramètres de l'espace de travail</1>.",
|
||||
"Shortcuts": "Raccourcis",
|
||||
"Sidebar": "Barre latérale",
|
||||
"Sign in": "Se connecter à AFFiNE Cloud",
|
||||
"Sign in and Enable": "Se connecter et activer",
|
||||
"Sign out": "Se déconnecter",
|
||||
"Sign out description": "Se déconnecter provoquera la perte du contenu non synchronisé.",
|
||||
"Skip": "Passer",
|
||||
"Start Week On Monday": "Commencer la semaine le lundi",
|
||||
"Stay logged out": "Rester déconnecté",
|
||||
"Sticky": "Post-it",
|
||||
"Stop publishing": "Arrêter de publier",
|
||||
"Storage": "Stockage",
|
||||
"Storage Folder": "Dossier du stockage ",
|
||||
"Storage and Export": "Stockage et Export",
|
||||
"Straight Connector": "Connecteur droit",
|
||||
"Strikethrough": "Barrer",
|
||||
"Successfully deleted": "Supprimé avec succès",
|
||||
"Switch": "Changer",
|
||||
"Sync": "Synchroniser",
|
||||
"Sync across devices with AFFiNE Cloud": "Synchroniser parmi plusieurs appareils avec AFFiNE Cloud",
|
||||
"Synced with AFFiNE Cloud": "Synchronisé avec AFFiNE Cloud",
|
||||
"Tags": "Tags",
|
||||
"Terms of Use": "Conditions générales d'utilisation",
|
||||
"Text": "Texte (bientôt disponible)",
|
||||
"Theme": "Thème",
|
||||
"Title": "Titre ",
|
||||
"Trash": "Corbeille ",
|
||||
"TrashButtonGroupDescription": "Une fois supprimé, vous ne pouvez pas retourner en arrière. Confirmez-vous la suppression ? ",
|
||||
"TrashButtonGroupTitle": "Supprimer définitivement",
|
||||
"UNKNOWN_ERROR": "Erreur inconnue",
|
||||
"Underline": "Souligner ",
|
||||
"Undo": "Annuler",
|
||||
"Ungroup": "Dégrouper",
|
||||
"Unpin": "Désépingler",
|
||||
"Unpublished hint": "Une fois publié sur internet, les visiteurs peuvent voir le contenu via le lien fourni.",
|
||||
"Untitled": "Sans titre",
|
||||
"Update Available": "Mis à jour disponible",
|
||||
"Update Collection": "Mettre à jour la collection",
|
||||
"Update workspace name success": "L'espace de travail à été renommé avec succès",
|
||||
"Updated": "Mis à jour",
|
||||
"Upload": "Uploader ",
|
||||
"Use on current device only": "Utiliser seulement sur l'appareil actuel",
|
||||
"Users": "Utilisateur",
|
||||
"Version": "Version",
|
||||
"View Navigation Path": "Voir le Chemin d'Accès",
|
||||
"Wait for Sync": "Attendez la synchronisation",
|
||||
"Window frame style": "Style de fenêtre",
|
||||
"Workspace Avatar": "Avatar de l'espace de travail",
|
||||
"Workspace Icon": "Icône espace de travail",
|
||||
"Workspace Name": "Nom de l'espace de travail",
|
||||
"Workspace Not Found": "L'epace de travail n'a pas été trouvé",
|
||||
"Workspace Owner": "Propriétaire de l’espace de travail ",
|
||||
"Workspace Profile": "Profil de l'Espace de travail",
|
||||
"Workspace Settings": "Paramètres de l'espace de travail",
|
||||
"Workspace Settings with name": "Paramètres de {{name}}",
|
||||
"Workspace Type": "Type de l'espace de travail",
|
||||
"Workspace database storage description": "Sélectionnez l'endroit où vous souhaitez créer votre espace de travail. Les données de l'espace de travail sont enregistrées localement par défaut.",
|
||||
"Workspace description": "Un espace de travail est votre espace virtuel pour capturer, créer et planifier aussi bien seul qu'en équipe.",
|
||||
"Workspace saved locally": "{{name}} est sauvegardé localement",
|
||||
"You cannot delete the last workspace": "Vous ne pouvez pas supprimer le dernier Espace de travail",
|
||||
"Zoom in": "Agrandir",
|
||||
"Zoom out": "Rétrécir",
|
||||
"Zoom to 100%": "Zoom à 100%",
|
||||
"Zoom to fit": "Zoom à l'échelle",
|
||||
"all": "tout",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.description": "Vérifiez automatiquement pour de nouvelles mises à jour régulièrement.",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.title": "Vérifier automatiquement les mises à jours",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.description": "Télécharger les mises à jour automatiquement (pour cet appareil)",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.title": "Télécharger les mises à jour automatiquement",
|
||||
"com.affine.aboutAFFiNE.changelog.description": "Voir le journal des modifications d'AFFiNE",
|
||||
"com.affine.aboutAFFiNE.changelog.title": "Découvrez les nouveautés",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.description": "Nouvelle version disponible",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.title": "Vérifier pour les mises à jour",
|
||||
"com.affine.aboutAFFiNE.community.title": "Communautés",
|
||||
"com.affine.aboutAFFiNE.contact.community": "Communauté AFFiNE",
|
||||
"com.affine.aboutAFFiNE.contact.title": "Contactez-nous",
|
||||
"com.affine.aboutAFFiNE.contact.website": "Site officiel ",
|
||||
"com.affine.aboutAFFiNE.legal.privacy": "Confidentialité",
|
||||
"com.affine.aboutAFFiNE.legal.title": "Mentions légales",
|
||||
"com.affine.aboutAFFiNE.legal.tos": "Conditions générales d'utilisation",
|
||||
"com.affine.aboutAFFiNE.subtitle": "Information à propos de AFFiNE",
|
||||
"com.affine.aboutAFFiNE.title": "À propos d'AFFiNE",
|
||||
"com.affine.aboutAFFiNE.version.app": "Version",
|
||||
"com.affine.aboutAFFiNE.version.editor.title": "Mode Édition",
|
||||
"com.affine.aboutAFFiNE.version.title": "Version",
|
||||
"com.affine.appearanceSettings.clientBorder.description": "Personnalisez l'apparence de l'application ",
|
||||
"com.affine.appearanceSettings.clientBorder.title": "Style de bordure de l'application",
|
||||
"com.affine.appearanceSettings.color.description": "Choisissez votre thème de couleur",
|
||||
"com.affine.appearanceSettings.color.title": "Thème de couleur",
|
||||
"com.affine.appearanceSettings.date.title": "Date",
|
||||
"com.affine.appearanceSettings.dateFormat.description": "Personnalisez le style de date",
|
||||
"com.affine.appearanceSettings.dateFormat.title": "Format de date",
|
||||
"com.affine.appearanceSettings.font.description": "Choisissez votre police de caractères",
|
||||
"com.affine.appearanceSettings.font.title": "Police de caractères",
|
||||
"com.affine.appearanceSettings.fullWidth.description": "Afficher un maximum de contenu sur la page",
|
||||
"com.affine.appearanceSettings.fullWidth.title": "Disposition en pleine largeur",
|
||||
"com.affine.appearanceSettings.language.description": "Modifier la langue de l'interface",
|
||||
"com.affine.appearanceSettings.language.title": "Langue d'affichage",
|
||||
"com.affine.appearanceSettings.noisyBackground.description": "Utiliser l'effet de bruit d'arrière-plan sur la barre latérale",
|
||||
"com.affine.appearanceSettings.noisyBackground.title": "Bruit d'arrière-plan de la barre latérale",
|
||||
"com.affine.appearanceSettings.sidebar.title": "Barre latérale",
|
||||
"com.affine.appearanceSettings.startWeek.description": "Par défaut, la semaine commence le dimanche",
|
||||
"com.affine.appearanceSettings.startWeek.title": "Commencer la semaine le lundi",
|
||||
"com.affine.appearanceSettings.subtitle": "Personnalisez l'apparence de votre AFFiNE",
|
||||
"com.affine.appearanceSettings.theme.title": "Thème",
|
||||
"com.affine.appearanceSettings.title": "Paramètres d'apparence",
|
||||
"com.affine.appearanceSettings.translucentUI.description": "Utiliser l'effet translucide sur la barre latérale",
|
||||
"com.affine.appearanceSettings.translucentUI.title": "UI translucide sur la barre latérale",
|
||||
"com.affine.appearanceSettings.windowFrame.description": "Personnalisez l'apparence de l'application Windows",
|
||||
"com.affine.appearanceSettings.windowFrame.frameless": "Sans Bords",
|
||||
"com.affine.appearanceSettings.windowFrame.NativeTitleBar": "Barre native",
|
||||
"com.affine.appearanceSettings.windowFrame.title": "Style de fenêtre",
|
||||
"com.affine.appUpdater.downloading": "Téléchargement en cours",
|
||||
"com.affine.appUpdater.installUpdate": "Redémarrez pour installer la mise à jour",
|
||||
"com.affine.appUpdater.openDownloadPage": "Ouvrir la page de téléchargement",
|
||||
"com.affine.appUpdater.updateAvailable": "Mise à jour disponible",
|
||||
"com.affine.appUpdater.whatsNew": "Découvrez les nouveautés !",
|
||||
"com.affine.backButton": "Retour à l'accueil",
|
||||
"com.affine.banner.content": "La démo vous plait ? <1> Télécharger le client AFFiNE </1> pour une expérience complète.",
|
||||
"com.affine.brand.affineCloud": "AFFiNE Cloud",
|
||||
"com.affine.cloudTempDisable.description": "Nous mettons à jour le service AFFiNE Cloud et celui-ci est temporairement indisponible côté client. Si vous souhaitez rester informé des avancements et être informé de la disponibilité du projet, vous pouvez remplir l'<1>inscription au AFFiNE Cloud</1>.",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNE Cloud est actuellement en cours de mise à jour.",
|
||||
"com.affine.collection-bar.action.tooltip.delete": "Supprimer",
|
||||
"com.affine.collection-bar.action.tooltip.edit": "Éditer",
|
||||
"com.affine.collection-bar.action.tooltip.pin": "Épingler à la barre latérale",
|
||||
"com.affine.collection-bar.action.tooltip.unpin": "Désépingler",
|
||||
"com.affine.collectionBar.backToAll": "Retour à tous",
|
||||
"com.affine.confirmModal.button.cancel": "Annuler",
|
||||
"com.affine.currentYear": "Année en cours",
|
||||
"com.affine.deleteLeaveWorkspace.description": "Supprimer l'espace de travail de cet appareil et éventuellement supprimer toutes les données.\n\n",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "Quitter l'espace de travail",
|
||||
"com.affine.draw_with_a_blank_whiteboard": "Dessiner sur un tableau blanc",
|
||||
"com.affine.earlier": "Récemment",
|
||||
"com.affine.edgelessMode": "Mode sans bords",
|
||||
"com.affine.editCollection.button.cancel": "Annuler",
|
||||
"com.affine.editCollection.button.create": "Créer",
|
||||
"com.affine.editCollection.save": "Enregistrer",
|
||||
"com.affine.editCollection.saveCollection": "Enregistrer en tant que nouvelle collection",
|
||||
"com.affine.editCollection.updateCollection": "Mettre à jour la collection",
|
||||
"com.affine.editorModeSwitch.tooltip": "Changer",
|
||||
"com.affine.emptyDesc": "Il n'y a pas encore de page ici",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "Annuler",
|
||||
"com.affine.export.error.message": "Veuillez réessayer plus tard.",
|
||||
"com.affine.export.error.title": "Échec lors de l'exportation en raison d'une erreur inattendue",
|
||||
"com.affine.export.success.message": "Veuillez ouvrir le fichier de téléchargement afin de vérifier",
|
||||
"com.affine.export.success.title": "Exporté avec succès",
|
||||
"com.affine.favoritePageOperation.add": "Ajouter aux favoris",
|
||||
"com.affine.favoritePageOperation.remove": "Retirer des favoris",
|
||||
"com.affine.filter": "Filtrer",
|
||||
"com.affine.filter.after": "après",
|
||||
"com.affine.filter.before": "avant",
|
||||
@@ -349,76 +110,334 @@
|
||||
"com.affine.filter.true": "Oui",
|
||||
"com.affine.header.option.add-tag": "Ajouter des Tags",
|
||||
"com.affine.header.option.duplicate": "Dupliquer",
|
||||
"com.affine.helpIsland.contactUs": "Contactez-nous ",
|
||||
"com.affine.helpIsland.gettingStarted": "Commencer",
|
||||
"com.affine.helpIsland.helpAndFeedback": "Aide et feedbacks",
|
||||
"com.affine.import_file": "Support Markdown/Notion",
|
||||
"com.affine.inviteModal.button.cancel": "Annuler",
|
||||
"com.affine.keyboardShortcuts.appendDailyNote": "Ajouter à la note journalière",
|
||||
"com.affine.keyboardShortcuts.bodyText": "Corps du texte",
|
||||
"com.affine.keyboardShortcuts.bold": "Gras",
|
||||
"com.affine.keyboardShortcuts.cancel": "Annuler ",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "Bloc de code",
|
||||
"com.affine.keyboardShortcuts.curveConnector": "Connecteur arrondi",
|
||||
"com.affine.keyboardShortcuts.divider": "Séparateur",
|
||||
"com.affine.keyboardShortcuts.elbowedConnector": "Connecteur coudé",
|
||||
"com.affine.keyboardShortcuts.expandOrCollapseSidebar": "Agrandir/Rabattre la barre latérale",
|
||||
"com.affine.keyboardShortcuts.goBack": "Retour en arrière",
|
||||
"com.affine.keyboardShortcuts.goForward": "Retour en avant",
|
||||
"com.affine.keyboardShortcuts.group": "Grouper",
|
||||
"com.affine.keyboardShortcuts.groupDatabase": "Grouper comme une base de donnée",
|
||||
"com.affine.keyboardShortcuts.hand": "Main",
|
||||
"com.affine.keyboardShortcuts.heading": "Titre {{number}}",
|
||||
"com.affine.keyboardShortcuts.image": "Image",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "Augmenter l'indentation",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "Code inline",
|
||||
"com.affine.keyboardShortcuts.italic": "Italique",
|
||||
"com.affine.keyboardShortcuts.link": "Lien hypertexte (avec le texte sélectionné)",
|
||||
"com.affine.keyboardShortcuts.moveDown": "Descendre",
|
||||
"com.affine.keyboardShortcuts.moveUp": "Remonter",
|
||||
"com.affine.keyboardShortcuts.newPage": "Nouvelle page",
|
||||
"com.affine.keyboardShortcuts.note": "Note",
|
||||
"com.affine.keyboardShortcuts.pen": "Stylo",
|
||||
"com.affine.keyboardShortcuts.quickSearch": "Recherche rapide",
|
||||
"com.affine.keyboardShortcuts.redo": "Rétablir",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "Réduire l'indentation du texte",
|
||||
"com.affine.keyboardShortcuts.select": "Sélectionner ",
|
||||
"com.affine.keyboardShortcuts.selectAll": "Sélectionner l'ensemble",
|
||||
"com.affine.keyboardShortcuts.shape": "Forme",
|
||||
"com.affine.keyboardShortcuts.straightConnector": "Connecteur droit",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "Barrer",
|
||||
"com.affine.keyboardShortcuts.subtitle": "Regarder rapidement les raccourcis clavier",
|
||||
"com.affine.keyboardShortcuts.switch": "Changer",
|
||||
"com.affine.keyboardShortcuts.text": "Texte (bientôt disponible)",
|
||||
"com.affine.keyboardShortcuts.title": "Raccourcis clavier",
|
||||
"com.affine.keyboardShortcuts.underline": "Souligner ",
|
||||
"com.affine.keyboardShortcuts.undo": "Annuler",
|
||||
"com.affine.keyboardShortcuts.unGroup": "Dégrouper",
|
||||
"com.affine.keyboardShortcuts.zoomIn": "Agrandir",
|
||||
"com.affine.keyboardShortcuts.zoomOut": "Rétrécir",
|
||||
"com.affine.keyboardShortcuts.zoomTo100": "Zoom à 100%",
|
||||
"com.affine.keyboardShortcuts.zoomToFit": "Zoom à l'échelle",
|
||||
"com.affine.last30Days": "30 derniers jours",
|
||||
"com.affine.last7Days": "7 derniers jours",
|
||||
"com.affine.lastMonth": "Le mois dernier",
|
||||
"com.affine.lastWeek": "La semaine dernière ",
|
||||
"com.affine.lastYear": "L'année dernière ",
|
||||
"com.affine.moveToTrash.confirmModal.description": "{{title}} sera déplacé à la corbeille ",
|
||||
"com.affine.moveToTrash.confirmModal.title": "Supprimer la page ?",
|
||||
"com.affine.moveToTrash.title": "Déplacer à la corbeille",
|
||||
"com.affine.nameWorkspace.button.cancel": "Annuler ",
|
||||
"com.affine.nameWorkspace.button.create": "Créer ",
|
||||
"com.affine.nameWorkspace.description": "Un espace de travail est votre espace virtuel pour capturer, créer et planifier aussi bien seul qu'en équipe.",
|
||||
"com.affine.nameWorkspace.placeholder": "Définir un nom pour l'espace de travail",
|
||||
"com.affine.nameWorkspace.title": "Nommer l'espace de travail",
|
||||
"com.affine.new_edgeless": "Nouvelle page sans bords",
|
||||
"com.affine.new_import": "Importer",
|
||||
"com.affine.notFoundPage.title": "Erreur 404 - Page non trouvée",
|
||||
"com.affine.onboarding.title1": "Tableau blanc et documents fusionnés",
|
||||
"com.affine.onboarding.title2": "Un mode d'édition intuitif et robuste basé sur des blocs",
|
||||
"com.affine.onboarding.videoDescription1": "Basculez facilement entre le mode Page pour de la création de documents structurés et le mode Tableau blanc pour de l'expression visuelle libre d'idées créatives.",
|
||||
"com.affine.onboarding.videoDescription2": "Créez facilement des documents structurés, à l'aide d'une interface modulaire où l'on peut faire glisser et déposer des blocs de texte, des images et d'autres contenus.",
|
||||
"com.affine.pageMode": "Mode page",
|
||||
"com.affine.settings.about.message": "Information à propos de AFFiNE",
|
||||
"com.affine.settings.about.update.check.message": "Vérifiez automatiquement pour de nouvelles mises à jour régulièrement.",
|
||||
"com.affine.settings.about.update.download.message": "Télécharger les mises à jour automatiquement (pour cet appareil)",
|
||||
"com.affine.openPageOperation.newTab": "Ouvrir dans un nouvel onglet",
|
||||
"com.affine.pageMode.all": "tout",
|
||||
"com.affine.pageMode.edgeless": "Mode sans bords",
|
||||
"com.affine.pageMode.page": "Page",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "Annuler ",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "Désactiver",
|
||||
"com.affine.publicLinkDisableModal.description": "Désactiver ce lien public empêchera à quiconque avec le lien d’accéder à cette page.",
|
||||
"com.affine.publicLinkDisableModal.title": "Désactiver le lien public ?",
|
||||
"com.affine.rootAppSidebar.collections": "Collections",
|
||||
"com.affine.rootAppSidebar.favorites": "Favoris ",
|
||||
"com.affine.rootAppSidebar.others": "Autres",
|
||||
"com.affine.setDBLocation.button.customize": "Parcourir",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "Emplacement par défaut",
|
||||
"com.affine.setDBLocation.description": "Sélectionnez l'endroit où vous souhaitez créer votre espace de travail. Les données de l'espace de travail sont enregistrées localement par défaut.",
|
||||
"com.affine.setDBLocation.title": "Définir l'emplacement de la base de données",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "Par défaut, elle sera enregistrée sous {{location}}",
|
||||
"com.affine.setSyncingMode.button.continue": "Continuer",
|
||||
"com.affine.setSyncingMode.cloud": "Synchroniser parmi plusieurs appareils avec AFFiNE Cloud",
|
||||
"com.affine.setSyncingMode.deviceOnly": "Utiliser seulement sur l'appareil actuel",
|
||||
"com.affine.setSyncingMode.title.added": "Ajouté avec succès",
|
||||
"com.affine.setSyncingMode.title.created": "Créé avec succès",
|
||||
"com.affine.settings.appearance": "Apparence",
|
||||
"com.affine.settings.appearance.border-style-description": "Personnalisez l'apparence de l'application ",
|
||||
"com.affine.settings.appearance.date-format-description": "Personnalisez le style de date",
|
||||
"com.affine.settings.appearance.full-width-description": "Afficher un maximum de contenu sur la page",
|
||||
"com.affine.settings.appearance.language-description": "Modifier la langue de l'interface",
|
||||
"com.affine.settings.appearance.start-week-description": "Par défaut, la semaine commence le dimanche",
|
||||
"com.affine.settings.appearance.window-frame-description": "Personnalisez l'apparence de l'application Windows",
|
||||
"com.affine.settings.auto-check-description": "Si activé, l'option cherchera automatiquement pour les nouvelles versions à intervalles réguliers",
|
||||
"com.affine.settings.auto-download-description": "Si activé, les nouvelles versions seront automatiquement téléchargées sur l'appareil actuel",
|
||||
"com.affine.settings.member-tooltip": "Activer AFFiNE Cloud pour collaborer ",
|
||||
"com.affine.settings.noise-style": "Bruit d'arrière-plan de la barre latérale",
|
||||
"com.affine.settings.noise-style-description": "Utiliser l'effet de bruit d'arrière-plan sur la barre latérale",
|
||||
"com.affine.settings.remove-workspace": "Supprimer l'espace de travail",
|
||||
"com.affine.settings.remove-workspace-description": "Supprimer l'espace de travail de cet appareil et éventuellement supprimer toutes les données.\n\n",
|
||||
"com.affine.settings.storage.db-location.change-hint": "Cliquer pour changer l'emplacement du stockage ",
|
||||
"com.affine.settings.storage.description": "Vérifier ou changer l'emplacement du lieu de stockage",
|
||||
"com.affine.settings.storage.description-alt": "Vérifier ou changer l'emplacement du lieu de stockage. Cliquer pour éditer le chemin d'accès.",
|
||||
"com.affine.settings.suggestion": "Besoin de plus de personnalisation ? Vous pouvez nous les proposer via la communauté.",
|
||||
"com.affine.settings.translucent-style": "UI translucide sur la barre latérale",
|
||||
"com.affine.settings.translucent-style-description": "Utiliser l'effet translucide sur la barre latérale",
|
||||
"com.affine.settings.workspace": "Espace de travail",
|
||||
"com.affine.settings.workspace.description": "Vous pouvez personnaliser votre espace ici.",
|
||||
"com.affine.settings.workspace.not-owner": "L'icône et le nom peuvent seulement être modifiés par le propriétaire de l'Espace de groupe. Les modifications seront visibles par tous",
|
||||
"com.affine.settings.workspace.publish-tooltip": "Activer AFFiNE Cloud pour publier cet espace de travail en ligne",
|
||||
"com.affine.settings.workspace.storage.tip": "Cliquer pour changer l'emplacement du stockage ",
|
||||
"com.affine.settingSidebar.settings.general": "Général",
|
||||
"com.affine.settingSidebar.settings.workspace": "Espace de travail",
|
||||
"com.affine.settingSidebar.title": "Paramètres",
|
||||
"com.affine.shortcutsTitle.edgeless": "Mode sans bords",
|
||||
"com.affine.shortcutsTitle.general": "Général",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Syntaxe Markdown",
|
||||
"com.affine.shortcutsTitle.page": "Page",
|
||||
"com.affine.sidebarSwitch.collapse": "Rabattre la barre latérale",
|
||||
"com.affine.sidebarSwitch.expand": "Agrandir la barre latérale",
|
||||
"com.affine.themeSettings.dark": "Sombre",
|
||||
"com.affine.themeSettings.light": "Clair",
|
||||
"com.affine.themeSettings.system": "Système",
|
||||
"com.affine.toastMessage.addedFavorites": "Ajouté aux favoris ",
|
||||
"com.affine.toastMessage.edgelessMode": "Mode sans bords",
|
||||
"com.affine.toastMessage.movedTrash": "Déplacé dans la corbeille ",
|
||||
"com.affine.toastMessage.pageMode": "Mode page",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "Supprimé définitivement ",
|
||||
"com.affine.toastMessage.removedFavorites": "Retiré des Favoris ",
|
||||
"com.affine.toastMessage.restored": "{{title}} a été restauré ",
|
||||
"com.affine.toastMessage.successfullyDeleted": "Supprimé avec succès",
|
||||
"com.affine.today": "Aujourd'hui",
|
||||
"com.affine.updater.downloading": "Téléchargement en cours",
|
||||
"com.affine.updater.open-download-page": "Ouvrir la page de téléchargement",
|
||||
"com.affine.updater.restart-to-update": "Redémarrez pour installer la mise à jour",
|
||||
"com.affine.updater.update-available": "Mise à jour disponible",
|
||||
"com.affine.trashOperation.delete": "Supprimer objet ",
|
||||
"com.affine.trashOperation.delete.description": "Une fois supprimé, vous ne pouvez pas retourner en arrière. Confirmez-vous la suppression ? ",
|
||||
"com.affine.trashOperation.delete.title": "Supprimer définitivement",
|
||||
"com.affine.trashOperation.deletePermanently": "Supprimer définitivement",
|
||||
"com.affine.trashOperation.restoreIt": "Restaurer ",
|
||||
"com.affine.workspace.cannot-delete": "Vous ne pouvez pas supprimer le dernier Espace de travail",
|
||||
"com.affine.workspaceDelete.button.cancel": "Annuler ",
|
||||
"com.affine.workspaceDelete.button.delete": "Supprimer objet ",
|
||||
"com.affine.workspaceDelete.description": "Attention, la suppression de <1>{{workspace}}</1> est irréversible. Le contenu sera perdu.",
|
||||
"com.affine.workspaceDelete.description2": "La suppression de <1>{{workspace}}</1> aura pour effet de supprimer les données locales et les données dans le cloud. Attention, cette opération est irréversible.",
|
||||
"com.affine.workspaceDelete.placeholder": "Entrez le nom de l'espace de travail pour confirmer",
|
||||
"com.affine.workspaceDelete.title": "Supprimer l'espace de travail",
|
||||
"com.affine.workspaceLeave.button.cancel": "Annuler ",
|
||||
"com.affine.workspaceLeave.button.leave": "Quitter",
|
||||
"com.affine.workspaceLeave.description": "Une fois quitté, vous ne pourrez plus accéder au contenu de cet espace de travail.",
|
||||
"com.affine.workspaceSubPath.all": "Toutes les pages",
|
||||
"com.affine.workspaceSubPath.trash": "Corbeille ",
|
||||
"com.affine.workspaceType.cloud": "Espace de travail distant",
|
||||
"com.affine.workspaceType.joined": "L'espace de travail a été rejoint",
|
||||
"com.affine.workspaceType.local": "Espace de travail local",
|
||||
"com.affine.workspaceType.offline": "Disponible hors ligne",
|
||||
"com.affine.write_with_a_blank_page": "Écrire sur une nouvelle page",
|
||||
"com.affine.yesterday": "Hier",
|
||||
"Confirm": "Confirmer",
|
||||
"Connector": "Connecteur (bientôt disponible) ",
|
||||
"Continue with Google": "Se connecter avec Google ",
|
||||
"Convert to ": "Convertir en ",
|
||||
"Copied link to clipboard": "Lien copié dans le presse-papier",
|
||||
"Copy": "Copier",
|
||||
"Copy Link": "Copier le lien",
|
||||
"core": "l'essentiel",
|
||||
"dark": "Sombre",
|
||||
"Create": "Créer ",
|
||||
"Create Or Import": "Créer ou importer",
|
||||
"Create Shared Link Description": "Créez un lien que vous pouvez facilement partager avec n'importe qui.",
|
||||
"Create your own workspace": "Créer votre propre espace de travail",
|
||||
"Created": "Objet créé ",
|
||||
"Created with": "Créé avec",
|
||||
"Data sync mode": "Mode de synchronisation des données",
|
||||
"DB_FILE_ALREADY_LOADED": "Le fichier de base de données a déjà été chargé",
|
||||
"DB_FILE_INVALID": "Fichier de base de données invalide",
|
||||
"DB_FILE_MIGRATION_FAILED": "La migration du fichier de base de données a échoué",
|
||||
"DB_FILE_PATH_INVALID": "Le chemin d'accès du fichier de base de données est invalide",
|
||||
"Delete": "Supprimer objet ",
|
||||
"Delete Member?": "Supprimer le membre ?",
|
||||
"Delete Workspace Label Hint": "Après la suppression de cet espace de travail, vous supprimerez de manière permanente tout le contenu de tous les utilisateurs. En aucun cas le contenu de cet espace de travail ne pourra être restauré.",
|
||||
"Delete Workspace placeholder": "Veuillez écrire \"Delete\" pour confirmer",
|
||||
"Disable": "Désactiver",
|
||||
"Disable Public Link": "Désactiver le lien public",
|
||||
"Disable Public Sharing": "Désactiver le Partage Public ",
|
||||
"Download all data": "Télécharger toutes les données",
|
||||
"Download core data": "Télécharger les données principales",
|
||||
"Download data": "Télécharger les données {{CoreOrAll}}",
|
||||
"Download data Description1": "Cela prend davantage d’espace sur votre appareil.",
|
||||
"Download data Description2": "Cela prend peu d’espace sur votre appareil.",
|
||||
"Edgeless": "Mode sans bords",
|
||||
"Edit": "Éditer",
|
||||
"Edit Filter": "Editer le filtre",
|
||||
"emptyAllPages": "Cet espace de travail est vide. Créez une nouvelle page pour commencer l'édition.",
|
||||
"emptyAllPagesClient": "Cliquez sur le bouton <1>$t(New Page)</1> ou bien, appuyez sur le raccourci clavier <3>{{shortcut}}</3> afin de créer votre première page.",
|
||||
"emptyFavorite": "Cliquez sur Ajouter aux Favoris et la page apparaitra ici.",
|
||||
"emptySharedPages": "Les pages partagées apparaîtront ici",
|
||||
"emptyTrash": "Cliquez sur Ajouter à la corbeille et la page apparaitra ici.",
|
||||
"frameless": "Sans Bords",
|
||||
"Enable": "Activer",
|
||||
"Enable AFFiNE Cloud": "Activer AFFiNE Cloud",
|
||||
"Enable AFFiNE Cloud Description": "Si cette option est activée, les données de cet espace de travail seront sauvegardées et synchronisées via AFFiNE Cloud.",
|
||||
"Enable cloud hint": "Les fonctions suivantes nécessitent AFFiNE Cloud. Toutes les données sont actuellement stockées sur cet appareil. Vous pouvez activer AFFiNE Cloud pour cet espace de travail afin de le garder synchronisé avec le Cloud.",
|
||||
"Enabled success": "Activation réussie",
|
||||
"Exclude from filter": "Exclure du filtre",
|
||||
"Export": "Exporter ",
|
||||
"Export AFFiNE backup file": "Exporter un fichier de sauvegarde AFFiNE",
|
||||
"Export Description": "Vous pouvez exporter l'intégralité des données de l'espace de travail à titre de sauvegarde ; les données ainsi exportées peuvent être réimportées.",
|
||||
"Export Shared Pages Description": "Télécharger une copie de la version actuelle pour la partager avec les autres.",
|
||||
"Export success": "Exporté avec succès",
|
||||
"Export to HTML": "Exporter en HTML",
|
||||
"Export to Markdown": "Exporter en Markdown",
|
||||
"Export to PDF": "Exporter en PDF",
|
||||
"Export to PNG": "Exporter en PNG",
|
||||
"Export Workspace": "L'exportation de l'espace de travail <1>{{workspace}}</1> sera bientôt disponible.",
|
||||
"Failed to publish workspace": "La publication de l'espace de travail a échoué",
|
||||
"Favorite": "Favori",
|
||||
"Favorite pages for easy access": "Pages favorites pour un accès rapide",
|
||||
"Favorited": "Ajouté aux favoris",
|
||||
"FILE_ALREADY_EXISTS": "Fichier déjà existant",
|
||||
"Find 0 result": "Aucun résultat trouvé ",
|
||||
"Find results": "{{number}} résultats trouvés",
|
||||
"Force Sign Out": "Forcer la déconnexion",
|
||||
"Get in touch!": "Contactez-nous ! ",
|
||||
"Get in touch! Join our communities": "Contactez-nous ! Rejoignez nos communautés.",
|
||||
"Get in touch! Join our communities.": "Contactez-nous ! Rejoignez nos communautés.",
|
||||
"Got it": "Compris",
|
||||
"How is AFFiNE Alpha different?": "Quelles sont les différences avec AFFiNE Alpha ?",
|
||||
"Import": "Importer ",
|
||||
"Info": "Information",
|
||||
"Invite": "Inviter",
|
||||
"Invite Members": "Inviter des membres",
|
||||
"Invite placeholder": "Rechercher une adresse mail (compatible uniquement avec Gmail)",
|
||||
"is a Cloud Workspace": "est un espace de travail distant",
|
||||
"is a Local Workspace": "est un espace de travail local",
|
||||
"light": "Clair",
|
||||
"It takes up little space on your device": "Prend peu d’espace sur l'appareil.",
|
||||
"It takes up little space on your device.": "Prend peu d’espace sur l'appareil.",
|
||||
"It takes up more space on your device": "Prend davantage d’espace sur l'appareil.",
|
||||
"It takes up more space on your device.": "Cela prend davantage d’espace sur votre appareil.",
|
||||
"Jump to": "Passer à ",
|
||||
"Loading": "Chargement...",
|
||||
"Local Workspace Description": "Toutes les données sont stockées sur cet appareil. Vous pouvez activer AFFiNE Cloud pour garder les données de cet espace de travail synchronisé dans le cloud.",
|
||||
"login success": "Connexion réussie",
|
||||
"Member": "Membre",
|
||||
"Member has been removed": "{{name}} a été supprimé",
|
||||
"Members": "Membres",
|
||||
"Members hint": "Gérez les membres ici, invitez des nouveaux membres par e-mail.",
|
||||
"mobile device": "Il semblerait que vous naviguiez sur un appareil mobile.",
|
||||
"mobile device description": "Nous travaillons toujours sur le support des appareils mobiles. Ainsi, nous vous recommandons d'utiliser un ordinateur.",
|
||||
"others": "Autres",
|
||||
"Move folder": "Déplacer le dossier",
|
||||
"Move folder hint": "Sélectionnez le nouveau chemin d'accès pour le stockage ",
|
||||
"Move folder success": "Le déplacement du fichier a été réalisé avec succès",
|
||||
"Move page to": "Déplacer la page vers ...",
|
||||
"Move page to...": "Déplacer la page vers ...",
|
||||
"Move to": "Déplacer vers",
|
||||
"Moved to Trash": "Déplacé dans la corbeille ",
|
||||
"My Workspaces": "Mes espaces de travail",
|
||||
"Navigation Path": "Chemin d'accès",
|
||||
"New Keyword Page": "Nouvelle page '{{query}}'",
|
||||
"New Page": "Nouvelle page",
|
||||
"New Workspace": "Nouvel espace de travail ",
|
||||
"No item": "Aucun objet ",
|
||||
"Non-Gmail": "Seul Gmail est supporté",
|
||||
"None yet": "Aucun pour l'instant",
|
||||
"Not now": "Pas maintenant",
|
||||
"Open folder": "Ouvrir le dossier",
|
||||
"Open folder hint": "Vérifiez l'emplacement du dossier de stockage.",
|
||||
"Open Workspace Settings": "Ouvrir les paramètres de l'espace de travail",
|
||||
"Organize pages to build knowledge": "Organisez vos pages pour construire l'entièreté de votre savoir",
|
||||
"Owner": "Propriétaire",
|
||||
"Paper": "Papier",
|
||||
"Pending": "En attente",
|
||||
"Pivots": "Arborescence",
|
||||
"Please make sure you are online": "Vérifiez que vous êtes bien en ligne",
|
||||
"Publish": "Publier",
|
||||
"Publish to web": "Publier sur internet",
|
||||
"Published Description": "L'espace de travail actuel a été publié sur Internet. Toute personne disposant du lien peut consulter le contenu.",
|
||||
"Published hint": "Les visiteurs peuvent prévisualiser le contenu via le lien fourni",
|
||||
"Published to Web": "Publié sur Internet",
|
||||
"Publishing": "Publier sur le web nécessite le service AFFiNE Cloud.",
|
||||
"Publishing Description": "Après avoir publié sur le net, toute personne disposant du lien pourra consulter le contenu.",
|
||||
"Quick search": "Recherche rapide",
|
||||
"Quick search placeholder": "Recherche Rapide ...",
|
||||
"Quick search placeholder2": "Rechercher dans {{workspace}}",
|
||||
"Recent": "Récent",
|
||||
"recommendBrowser": "Pour une expérience optimale, nous vous recommandons le navigateur <1>Chrome</1>.",
|
||||
"restored": "{{title}} a été restauré ",
|
||||
"Remove from Pivots": "Retirer de l'Arborescence",
|
||||
"Remove from workspace": "Retirer de l'espace de travail",
|
||||
"Remove special filter": "Retirer le filtre spécial",
|
||||
"Rename": "Renommer",
|
||||
"Restart Install Client Update": "Redémarrez pour installer la mise à jour",
|
||||
"Retain cached cloud data": "Conserver les données mises en cache dans le cloud",
|
||||
"Retain local cached data": "Conserver les données du cache local",
|
||||
"RFP": "Les pages peuvent librement être rajoutées à/retirées de l'Arborescence, tout en restant accessible depuis \"Toutes les pages\".",
|
||||
"Saved then enable AFFiNE Cloud": "Toutes les modifications sont sauvegardées localement, cliquez ici pour activer la sauvegarde AFFiNE Cloud",
|
||||
"Set up an AFFiNE account to sync data": "Configurer un compte AFFiNE pour synchroniser les données",
|
||||
"Share Menu Public Workspace Description1": "Invitez d'autres personnes à rejoindre cet espace de travail ou publiez-le sur internet.",
|
||||
"Share Menu Public Workspace Description2": "L'espace de travail actuel a été publié sur le web en tant qu'espace de travail public.",
|
||||
"Share with link": "Partager un lien",
|
||||
"Shared Pages": "Pages partagées",
|
||||
"Shared Pages Description": "Le service de partage de page public nécessite AFFiNE Cloud.",
|
||||
"Shared Pages In Public Workspace Description": "L'intégralité de cet espace de travail a été publiée sur internet et peut être modifiée via les <1>Paramètres de l'espace de travail</1>.",
|
||||
"Shortcuts": "Raccourcis",
|
||||
"Sign in": "Se connecter à AFFiNE Cloud",
|
||||
"Sign in and Enable": "Se connecter et activer",
|
||||
"Sign out": "Se déconnecter",
|
||||
"Sign out description": "Se déconnecter provoquera la perte du contenu non synchronisé.",
|
||||
"Skip": "Passer",
|
||||
"Stay logged out": "Rester déconnecté",
|
||||
"Sticky": "Post-it",
|
||||
"still designed": "(Cette page est toujours en cours de conception.)",
|
||||
"system": "Système",
|
||||
"Stop publishing": "Arrêter de publier",
|
||||
"Storage": "Stockage",
|
||||
"Storage and Export": "Stockage et Export",
|
||||
"Storage Folder": "Dossier du stockage ",
|
||||
"Sync": "Synchroniser",
|
||||
"Synced with AFFiNE Cloud": "Synchronisé avec AFFiNE Cloud",
|
||||
"Tags": "Tags",
|
||||
"Title": "Titre ",
|
||||
"UNKNOWN_ERROR": "Erreur inconnue",
|
||||
"Unpin": "Désépingler",
|
||||
"Unpublished hint": "Une fois publié sur internet, les visiteurs peuvent voir le contenu via le lien fourni.",
|
||||
"Untitled": "Sans titre",
|
||||
"Update Available": "Mis à jour disponible",
|
||||
"Update workspace name success": "L'espace de travail à été renommé avec succès",
|
||||
"Updated": "Mis à jour",
|
||||
"upgradeBrowser": "Veuillez installer la dernière version de Chrome pour bénéficier d'une expérience optimale.",
|
||||
"will be moved to Trash": "{{title}} sera déplacé à la corbeille ",
|
||||
"will delete member": "supprimera le membre"
|
||||
"Upload": "Uploader ",
|
||||
"Users": "Utilisateur",
|
||||
"View Navigation Path": "Voir le Chemin d'Accès",
|
||||
"Wait for Sync": "Attendez la synchronisation",
|
||||
"will delete member": "supprimera le membre",
|
||||
"Workspace Avatar": "Avatar de l'espace de travail",
|
||||
"Workspace Icon": "Icône espace de travail",
|
||||
"Workspace Name": "Nom de l'espace de travail",
|
||||
"Workspace Not Found": "L'epace de travail n'a pas été trouvé",
|
||||
"Workspace Owner": "Propriétaire de l’espace de travail ",
|
||||
"Workspace Profile": "Profil de l'Espace de travail",
|
||||
"Workspace saved locally": "{{name}} est sauvegardé localement",
|
||||
"Workspace Settings": "Paramètres de l'espace de travail",
|
||||
"Workspace Settings with name": "Paramètres de {{name}}",
|
||||
"Workspace Type": "Type de l'espace de travail",
|
||||
"You cannot delete the last workspace": "Vous ne pouvez pas supprimer le dernier Espace de travail"
|
||||
}
|
||||
|
||||
+140
-123
@@ -1,144 +1,222 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - ページが見つかりません",
|
||||
"AFFiNE Cloud": "AFFiNEクラウド",
|
||||
"AFFiNE Community": "AFFiNEコミュニティ",
|
||||
"About AFFiNE": "AFFiNEについて",
|
||||
"Access level": "アクセスレベル",
|
||||
"Add a subpage inside": "内部にサブページを追加",
|
||||
"Add Workspace": "ワークスペースの追加",
|
||||
"Add Workspace Hint": "既存のワークスペースを選択",
|
||||
"Add a subpage inside": "内部にサブページを追加",
|
||||
"Add to Favorites": "お気に入りに追加",
|
||||
"Add to favorites": "お気に入りに追加する",
|
||||
"Added Successfully": "正常に追加されました",
|
||||
"Added to Favorites": "お気に入りに追加されました",
|
||||
"All changes are saved locally": "すべての変更はローカルに保存されます",
|
||||
"All data has been stored in the cloud": "すべてのデータはクラウドに保存されています",
|
||||
"All pages": "すべてのページ",
|
||||
"Available Offline": "オフラインで利用可能",
|
||||
"Back Home": "ホームに戻る",
|
||||
"Back to Quick Search": "クイック検索に戻る",
|
||||
"Body text": "本文テキスト",
|
||||
"Bold": "太字",
|
||||
"Cancel": "キャンセル",
|
||||
"Change avatar hint": "メンバー全員のアバターを変更",
|
||||
"Change workspace name hint": "メンバー全員の名前を変更",
|
||||
"Check Our Docs": "ドキュメントを確認しよう",
|
||||
"Cloud Workspace": "クラウドワークスペース",
|
||||
"Cloud Workspace Description": "すべてのデータは、AFFiNEアカウント<1>{{email}}</1>に同期して保存されます",
|
||||
"Code block": "コードブロック",
|
||||
"Collaboration": "コラボレーション",
|
||||
"Collaboration Description": "他のメンバーとコラボレーションするにはAFFiNEクラウドサービスが必要です",
|
||||
"Collapse sidebar": "サイドバーを折りたたむ",
|
||||
"com.affine.aboutAFFiNE.contact.community": "AFFiNEコミュニティ",
|
||||
"com.affine.aboutAFFiNE.contact.website": "公式サイト",
|
||||
"com.affine.aboutAFFiNE.title": "AFFiNEについて",
|
||||
"com.affine.appearanceSettings.sidebar.title": "サイドバ-",
|
||||
"com.affine.appUpdater.downloading": "ダウンロード中",
|
||||
"com.affine.appUpdater.installUpdate": "再起動してアップデートをインストールする",
|
||||
"com.affine.appUpdater.openDownloadPage": "ダウンロードページを開く",
|
||||
"com.affine.appUpdater.updateAvailable": "アップデート可能",
|
||||
"com.affine.appUpdater.whatsNew": "新着情報を見る",
|
||||
"com.affine.backButton": "ホームに戻る",
|
||||
"com.affine.banner.content": "デモをお楽しみですか?完全なエクスペリエンスを得るには<1>AFFiNEクライアントをダウンロード</1>してください。",
|
||||
"com.affine.brand.affineCloud": "AFFiNEクラウド",
|
||||
"com.affine.cloudTempDisable.description": "AFFiNEクラウドサービスのバージョンアップを行っており、クライアント側で一時的に利用できない状態になっています。進捗状況などに関する通知をご希望の方は<1>AFFiNEコミュニティ</1>にご参加ください。",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNEクラウドは現在アップグレード中です。",
|
||||
"com.affine.confirmModal.button.cancel": "キャンセル",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "ワークスペースから退出",
|
||||
"com.affine.editCollection.button.cancel": "キャンセル",
|
||||
"com.affine.editCollection.button.create": "作成",
|
||||
"com.affine.editCollection.save": "保存",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "キャンセル",
|
||||
"com.affine.favoritePageOperation.add": "お気に入りに追加する",
|
||||
"com.affine.favoritePageOperation.remove": "お気に入りから削除",
|
||||
"com.affine.helpIsland.contactUs": "お問い合わせ",
|
||||
"com.affine.helpIsland.gettingStarted": "始めましょう",
|
||||
"com.affine.helpIsland.helpAndFeedback": "ヘルプとフィードバック",
|
||||
"com.affine.inviteModal.button.cancel": "キャンセル",
|
||||
"com.affine.keyboardShortcuts.bodyText": "本文テキスト",
|
||||
"com.affine.keyboardShortcuts.bold": "太字",
|
||||
"com.affine.keyboardShortcuts.cancel": "キャンセル",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "コードブロック",
|
||||
"com.affine.keyboardShortcuts.divider": "区分線",
|
||||
"com.affine.keyboardShortcuts.heading": "見出し {{number}}",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "インデントを増やす",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "インラインコード",
|
||||
"com.affine.keyboardShortcuts.italic": "斜体",
|
||||
"com.affine.keyboardShortcuts.link": "ハイパーリンク (選択したテキストを含む)",
|
||||
"com.affine.keyboardShortcuts.newPage": "新規ページ",
|
||||
"com.affine.keyboardShortcuts.pen": "ペン(近日公開)",
|
||||
"com.affine.keyboardShortcuts.redo": "やり直し",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "インデントを減らす",
|
||||
"com.affine.keyboardShortcuts.select": "選択",
|
||||
"com.affine.keyboardShortcuts.shape": "シェイプ",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "打ち消し線",
|
||||
"com.affine.keyboardShortcuts.text": "テキスト(近日公開)",
|
||||
"com.affine.keyboardShortcuts.title": "キーボードショートカット",
|
||||
"com.affine.keyboardShortcuts.underline": "下線",
|
||||
"com.affine.keyboardShortcuts.undo": "元に戻す",
|
||||
"com.affine.moveToTrash.confirmModal.description": "{{title}}はゴミ箱に移動されます",
|
||||
"com.affine.moveToTrash.confirmModal.title": "ページを削除しますか?",
|
||||
"com.affine.moveToTrash.title": "ゴミ箱に移動",
|
||||
"com.affine.nameWorkspace.button.cancel": "キャンセル",
|
||||
"com.affine.nameWorkspace.button.create": "作成",
|
||||
"com.affine.nameWorkspace.description": "ワークスペースは、一人で、あるいはチームで、創造し、計画するための仮想空間です",
|
||||
"com.affine.nameWorkspace.placeholder": "ワークスペース名を設定",
|
||||
"com.affine.nameWorkspace.title": "ワークスペースに名前をつける",
|
||||
"com.affine.notFoundPage.title": "404 - ページが見つかりません",
|
||||
"com.affine.onboarding.title1": "ハイパーマージされたホワイトボードとドキュメント",
|
||||
"com.affine.onboarding.title2": "直感的で堅牢なブロックベースの編集",
|
||||
"com.affine.onboarding.videoDescription1": "構造化されたドキュメントを作成するためのページモードと、創造的なアイデアを自由な形式で視覚的に表現するためのホワイトボードモードを簡単に切り替えることができます",
|
||||
"com.affine.onboarding.videoDescription2": "モジュール式インターフェイスを使用してテキスト、画像、その他のコンテンツのブロックをドラッグ&ドロップすることで、構造化ドキュメントを簡単に作成できます",
|
||||
"com.affine.openPageOperation.newTab": "新しいタブで開く",
|
||||
"com.affine.pageMode.all": "すべて",
|
||||
"com.affine.pageMode.edgeless": "エッジレス",
|
||||
"com.affine.pageMode.page": "ページ",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "キャンセル",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "無効",
|
||||
"com.affine.publicLinkDisableModal.description": "このパブリック リンクを無効にすると、リンクを知っている誰もがこのページにアクセスできなくなります",
|
||||
"com.affine.publicLinkDisableModal.title": "パブリックリンクを無効にしますか?",
|
||||
"com.affine.rootAppSidebar.favorites": "お気に入り",
|
||||
"com.affine.rootAppSidebar.others": "その他",
|
||||
"com.affine.setDBLocation.button.customize": "カスタマイズ",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "デフォルトの場所",
|
||||
"com.affine.setDBLocation.description": "ワークスペースを作成する場所を選択します。ワークスペースのデータは、デフォルトでローカルに保存されます",
|
||||
"com.affine.setDBLocation.title": "データベースの場所を設定",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "デフォルトでは {{location}} に保存されます",
|
||||
"com.affine.setSyncingMode.button.continue": "続行",
|
||||
"com.affine.setSyncingMode.cloud": "AFFiNEクラウドでデバイス間を同期する",
|
||||
"com.affine.setSyncingMode.deviceOnly": "現在の端末でのみ使用",
|
||||
"com.affine.setSyncingMode.title.added": "正常に追加されました",
|
||||
"com.affine.setSyncingMode.title.created": "正常に作成されました",
|
||||
"com.affine.settingSidebar.settings.general": "一般",
|
||||
"com.affine.settingSidebar.title": "設定",
|
||||
"com.affine.shortcutsTitle.edgeless": "エッジレス",
|
||||
"com.affine.shortcutsTitle.general": "一般",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Markdown構文",
|
||||
"com.affine.shortcutsTitle.page": "ページ",
|
||||
"com.affine.sidebarSwitch.collapse": "サイドバーを折りたたむ",
|
||||
"com.affine.sidebarSwitch.expand": "サイドバーを展開",
|
||||
"com.affine.themeSettings.dark": "ダーク",
|
||||
"com.affine.themeSettings.light": "ライト",
|
||||
"com.affine.themeSettings.system": "システム",
|
||||
"com.affine.toastMessage.addedFavorites": "お気に入りに追加されました",
|
||||
"com.affine.toastMessage.edgelessMode": "エッジレスモード",
|
||||
"com.affine.toastMessage.movedTrash": "ゴミ箱に移動した",
|
||||
"com.affine.toastMessage.pageMode": "ページモード",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "完全に削除されました",
|
||||
"com.affine.toastMessage.removedFavorites": "お気に入りから削除しました",
|
||||
"com.affine.toastMessage.restored": "{{title}}を復元しました",
|
||||
"com.affine.toastMessage.successfullyDeleted": "正常に削除されました",
|
||||
"com.affine.trashOperation.delete": "削除",
|
||||
"com.affine.trashOperation.delete.description": "一度削除すると、この操作を元に戻すことはできません。よろしいですか?",
|
||||
"com.affine.trashOperation.delete.title": "完全に削除",
|
||||
"com.affine.trashOperation.deletePermanently": "完全に削除",
|
||||
"com.affine.trashOperation.restoreIt": "復元",
|
||||
"com.affine.workspaceDelete.button.cancel": "キャンセル",
|
||||
"com.affine.workspaceDelete.button.delete": "削除",
|
||||
"com.affine.workspaceDelete.description": "削除 <1>{{workspace}}</1> は元に戻すことができません。慎重に続行してください。すべての内容が失われます",
|
||||
"com.affine.workspaceDelete.description2": "<1>{{workspace}}</1> を削除すると、ローカルデータとクラウドデータの両方が削除されます。この操作は元に戻すことができません。注意して続行してください",
|
||||
"com.affine.workspaceDelete.placeholder": "確認のためにワークスペース名を入力してください",
|
||||
"com.affine.workspaceDelete.title": "ワークスペースの削除",
|
||||
"com.affine.workspaceLeave.button.cancel": "キャンセル",
|
||||
"com.affine.workspaceLeave.button.leave": "退出",
|
||||
"com.affine.workspaceLeave.description": "退会すると、このワークスペースのコンテンツにアクセスできなくなります",
|
||||
"com.affine.workspaceSubPath.all": "すべてのページ",
|
||||
"com.affine.workspaceSubPath.trash": "ゴミ箱",
|
||||
"com.affine.workspaceType.cloud": "クラウドワークスペース",
|
||||
"com.affine.workspaceType.joined": "ワークスペースに参加",
|
||||
"com.affine.workspaceType.local": "ローカルワークスペース",
|
||||
"com.affine.workspaceType.offline": "オフラインで利用可能",
|
||||
"Confirm": "確認",
|
||||
"Connector": "コネクター(近日公開)",
|
||||
"Contact Us": "お問い合わせ",
|
||||
"Continue": "続行",
|
||||
"Continue with Google": "Googleでログイン",
|
||||
"Convert to ": "変換する",
|
||||
"Copied link to clipboard": "リンクをクリップボードにコピーしました",
|
||||
"Copy": "コピー",
|
||||
"Copy Link": "リンクをコピー",
|
||||
"core": "主要な",
|
||||
"Create": "作成",
|
||||
"Create Or Import": "作成またはインポート",
|
||||
"Create Shared Link Description": "誰とでも簡単に共有できるリンクを作成します",
|
||||
"Create your own workspace": "独自のワークスペースを作成する",
|
||||
"Created": "作成日",
|
||||
"Created Successfully": "正常に作成されました",
|
||||
"Customize": "カスタマイズ",
|
||||
"Data sync mode": "データ同期モード",
|
||||
"DB_FILE_ALREADY_LOADED": "データベースファイルはすでにロードされています",
|
||||
"DB_FILE_INVALID": "無効なデータベースファイル",
|
||||
"DB_FILE_PATH_INVALID": "データベースファイルのパスが無効です",
|
||||
"Data sync mode": "データ同期モード",
|
||||
"Default Location": "デフォルトの場所",
|
||||
"Default db location hint": "デフォルトでは {{location}} に保存されます",
|
||||
"Delete": "削除",
|
||||
"Delete Member?": "メンバーを削除しますか?",
|
||||
"Delete Workspace": "ワークスペースの削除",
|
||||
"Delete Workspace Description": "削除 <1>{{workspace}}</1> は元に戻すことができません。慎重に続行してください。すべての内容が失われます",
|
||||
"Delete Workspace Description2": "<1>{{workspace}}</1> を削除すると、ローカルデータとクラウドデータの両方が削除されます。この操作は元に戻すことができません。注意して続行してください",
|
||||
"Delete Workspace Label Hint": "このワークスペースを削除すると、すべてのユーザーのコンテンツが永久に削除されます。このワークスペースのコンテンツを復元することはできません",
|
||||
"Delete Workspace placeholder": "確認のため、「Delete」と入力してください",
|
||||
"Delete page?": "ページを削除しますか?",
|
||||
"Delete permanently": "完全に削除",
|
||||
"Disable": "無効",
|
||||
"Disable Public Link": "パブリックリンクを無効にする",
|
||||
"Disable Public Link ?": "パブリックリンクを無効にしますか?",
|
||||
"Disable Public Link Description": "このパブリック リンクを無効にすると、リンクを知っている誰もがこのページにアクセスできなくなります",
|
||||
"Disable Public Sharing": "パブリック共有を無効にする",
|
||||
"Discover what's new!": "新着情報を見る",
|
||||
"Divider": "区分線",
|
||||
"Download all data": "すべてのデータをダウンロードする",
|
||||
"Download core data": "主要なデータのダウンロード",
|
||||
"Download data": "{{CoreOrAll}} データのダウンロード",
|
||||
"Download data Description1": "端末の容量を大きく占有します",
|
||||
"Download data Description2": "端末の容量をあまり占有しません",
|
||||
"Edgeless": "エッジレス",
|
||||
"Edit": "編集",
|
||||
"emptyAllPages": "このワークスペースに何もありません。新しいページを作成して編集を開始します",
|
||||
"emptyFavorite": "「お気に入りに追加」をクリックすると、ここにページが表示されます",
|
||||
"emptySharedPages": "共有されたページがここに表示されます",
|
||||
"emptyTrash": "「ゴミ箱に移動」をクリックすると、ここにページが表示されます",
|
||||
"Enable": "有効",
|
||||
"Enable AFFiNE Cloud": "AFFiNEクラウドを有効にする",
|
||||
"Enable AFFiNE Cloud Description": "有効にすると、このワークスペース内のデータがAFFiNEクラウド経由でバックアップおよび同期されます",
|
||||
"Enabled success": "有効化に成功",
|
||||
"Expand sidebar": "サイドバーを展開",
|
||||
"Export": "エクスポート",
|
||||
"Export AFFiNE backup file": "AFFiNEバックアップファイルのエクスポート",
|
||||
"Export Description": "ワークスペースにあるデータ全体をバックアップ用にエクスポートしたり、エクスポートしたデータを再インポートしたりできます",
|
||||
"Export Shared Pages Description": "ページの静的コピーをダウンロードして、他の人と共有することができます",
|
||||
"Export Workspace": "ワークスペースのエクスポート <1>{{workspace}}</1>は近日公開予定です",
|
||||
"Export success": "エクスポートに成功",
|
||||
"Export to HTML": "HTMLにエクスポート",
|
||||
"Export to Markdown": "Markdownにエクスポート",
|
||||
"FILE_ALREADY_EXISTS": "ファイルが既に存在します",
|
||||
"Export Workspace": "ワークスペースのエクスポート <1>{{workspace}}</1>は近日公開予定です",
|
||||
"Failed to publish workspace": "ワークスペースの公開に失敗しました",
|
||||
"Favorite": "お気に入り",
|
||||
"Favorite pages for easy access": "お気に入りのページへ簡単にアクセス",
|
||||
"Favorited": "お気に入りに追加しました",
|
||||
"Favorites": "お気に入り",
|
||||
"FILE_ALREADY_EXISTS": "ファイルが既に存在します",
|
||||
"Find 0 result": "検索結果 0 件",
|
||||
"Find results": "検索結果 {{number}} 件",
|
||||
"Force Sign Out": "強制サインアウト",
|
||||
"General": "一般",
|
||||
"Get in touch!": "ご連絡ください!",
|
||||
"Get in touch! Join our communities": "連絡してください! コミュニティに参加しましょう",
|
||||
"Get in touch! Join our communities.": "連絡してください! コミュニティに参加しましょう",
|
||||
"Got it": "了解",
|
||||
"Heading": "見出し {{number}}",
|
||||
"Help and Feedback": "ヘルプとフィードバック",
|
||||
"How is AFFiNE Alpha different?": "AFFiNE Alphaはどう違うのですか?",
|
||||
"Import": "インポート",
|
||||
"Increase indent": "インデントを増やす",
|
||||
"Inline code": "インラインコード",
|
||||
"Invite": "招待",
|
||||
"Invite Members": "メンバーを招待",
|
||||
"Invite placeholder": "メールの検索(Gmailのみサポート)",
|
||||
"is a Cloud Workspace": "はクラウドワークスペースです",
|
||||
"is a Local Workspace": "はローカルワークスペースです",
|
||||
"It takes up little space on your device": "端末の容量をあまり占有しません",
|
||||
"It takes up little space on your device.": "端末の容量をあまり占有しません",
|
||||
"It takes up more space on your device": "端末の容量を大きく占有します",
|
||||
"It takes up more space on your device.": "端末の容量を大きく占有します",
|
||||
"Italic": "斜体",
|
||||
"Joined Workspace": "ワークスペースに参加",
|
||||
"Jump to": "ジャンプ先",
|
||||
"Keyboard Shortcuts": "キーボードショートカット",
|
||||
"Leave": "退出",
|
||||
"Leave Workspace": "ワークスペースから退出",
|
||||
"Leave Workspace Description": "退会すると、このワークスペースのコンテンツにアクセスできなくなります",
|
||||
"Link": "ハイパーリンク (選択したテキストを含む)",
|
||||
"Loading": "読み込み中...",
|
||||
"Local Workspace": "ローカルワークスペース",
|
||||
"Local Workspace Description": "すべてのデータは現在のデバイスに保存されます。このワークスペースのAFFiNEクラウドを有効にすると、クラウドとデータを同期しておくことができます",
|
||||
"Markdown Syntax": "Markdown構文",
|
||||
"login success": "ログイン成功",
|
||||
"Member": "メンバー",
|
||||
"Member has been removed": "{{name}}は削除されました",
|
||||
"Members": "メンバー",
|
||||
"mobile device": "モバイル端末で閲覧しているようです",
|
||||
"mobile device description": "モバイルへの対応は現在も進めており、デスクトップ端末でのご利用を推奨しています",
|
||||
"Move folder": "フォルダを移動",
|
||||
"Move folder hint": "新しい保存場所を選択",
|
||||
"Move folder success": "フォルダの移動に成功",
|
||||
"Move page to": "ページの移動...",
|
||||
"Move page to...": "ページの移動...",
|
||||
"Move to": "移動先",
|
||||
"Move to Trash": "ゴミ箱に移動",
|
||||
"Moved to Trash": "ゴミ箱に移動した",
|
||||
"My Workspaces": "マイワークスペース",
|
||||
"Name Your Workspace": "ワークスペースに名前をつける",
|
||||
"Navigation Path": "ナビゲーションパス",
|
||||
"New Keyword Page": "新しい「{{query}}」ページ",
|
||||
"New Page": "新規ページ",
|
||||
@@ -146,20 +224,14 @@
|
||||
"No item": "項目なし",
|
||||
"Non-Gmail": "Gmail以外はサポートされていません",
|
||||
"Not now": "あとで登録する",
|
||||
"Official Website": "公式サイト",
|
||||
"Open Workspace Settings": "ワークスペース設定を開く",
|
||||
"Open folder": "フォルダを開く",
|
||||
"Open folder hint": "保存フォルダがどこにあるか確認してください",
|
||||
"Open in new tab": "新しいタブで開く",
|
||||
"Open Workspace Settings": "ワークスペース設定を開く",
|
||||
"Organize pages to build knowledge": "ページを整理して知識を深める",
|
||||
"Owner": "オーナー",
|
||||
"Page": "ページ",
|
||||
"Paper": "用紙",
|
||||
"Pen": "ペン(近日公開)",
|
||||
"Pending": "保留中",
|
||||
"Permanently deleted": "完全に削除されました",
|
||||
"Pivots": "ピボット",
|
||||
"Placeholder of delete workspace": "確認のためにワークスペース名を入力してください",
|
||||
"Please make sure you are online": "オンラインであることを確認してください",
|
||||
"Publish": "公開",
|
||||
"Publish to web": "Webに公開",
|
||||
@@ -170,27 +242,17 @@
|
||||
"Quick search": "クイック検索",
|
||||
"Quick search placeholder": "クイック検索...",
|
||||
"Quick search placeholder2": "{{workspace}} を検索中",
|
||||
"RFP": "ピボットのページは自由に追加・削除することができ、「すべてのページ」からもアクセスできます",
|
||||
"Recent": "最近",
|
||||
"Redo": "やり直し",
|
||||
"Reduce indent": "インデントを減らす",
|
||||
"recommendBrowser": "最適な環境でご利用いただくために、<1>Chrome</1>ブラウザを推奨します",
|
||||
"Remove from Pivots": "ピボットの削除",
|
||||
"Remove from favorites": "お気に入りから削除",
|
||||
"Remove from workspace": "ワークスペースから削除",
|
||||
"Removed from Favorites": "お気に入りから削除しました",
|
||||
"Rename": "名前の変更",
|
||||
"Restart Install Client Update": "再起動してアップデートをインストールする",
|
||||
"Restore it": "復元",
|
||||
"Retain cached cloud data": "ローカルにキャッシュされたデータを保持",
|
||||
"Retain local cached data": "ローカルにキャッシュされたデータを保持",
|
||||
"Save": "保存",
|
||||
"RFP": "ピボットのページは自由に追加・削除することができ、「すべてのページ」からもアクセスできます",
|
||||
"Saved then enable AFFiNE Cloud": "すべての変更はローカルに保存されます。クリックしてAFFiNEクラウドを有効にします。",
|
||||
"Select": "選択",
|
||||
"Set a Workspace name": "ワークスペース名を設定",
|
||||
"Set database location": "データベースの場所を設定",
|
||||
"Set up an AFFiNE account to sync data": "データを同期するためにAFFiNEアカウントを設定する",
|
||||
"Settings": "設定",
|
||||
"Shape": "シェイプ",
|
||||
"Share Menu Public Workspace Description1": "ワークスペースへ他の人を招待したり、Webに公開することができます",
|
||||
"Share Menu Public Workspace Description2": "現在のワークスペースは、公開ワークスペースとしてWebに公開されています",
|
||||
"Share with link": "リンクを共有",
|
||||
@@ -198,7 +260,6 @@
|
||||
"Shared Pages Description": "ページの公開にはAFFiNEクラウドサービスが必要です",
|
||||
"Shared Pages In Public Workspace Description": "ワークスペース全体はWeb上で公開され、<1>ワークスペース設定</1>で編集することができます",
|
||||
"Shortcuts": "ショートカット",
|
||||
"Sidebar": "サイドバ-",
|
||||
"Sign in": "AFFiNEクラウドにサインイン",
|
||||
"Sign in and Enable": "サインインして有効化",
|
||||
"Sign out": "サインアウト",
|
||||
@@ -206,30 +267,23 @@
|
||||
"Skip": "スキップ",
|
||||
"Stay logged out": "ログアウト状態を維持する",
|
||||
"Sticky": "付箋(近日公開)",
|
||||
"still designed": "(このページはまだ設計中です)",
|
||||
"Stop publishing": "公開をやめる",
|
||||
"Storage Folder": "ストレージフォルダー",
|
||||
"Strikethrough": "打ち消し線",
|
||||
"Successfully deleted": "正常に削除されました",
|
||||
"Sync": "同期",
|
||||
"Sync across devices with AFFiNE Cloud": "AFFiNEクラウドでデバイス間を同期する",
|
||||
"Synced with AFFiNE Cloud": "AFFiNEクラウドと同期しています",
|
||||
"Text": "テキスト(近日公開)",
|
||||
"Title": "タイトル",
|
||||
"Trash": "ゴミ箱",
|
||||
"TrashButtonGroupDescription": "一度削除すると、この操作を元に戻すことはできません。よろしいですか?",
|
||||
"TrashButtonGroupTitle": "完全に削除",
|
||||
"UNKNOWN_ERROR": "未知のエラー",
|
||||
"Underline": "下線",
|
||||
"Undo": "元に戻す",
|
||||
"Untitled": "無題",
|
||||
"Update Available": "アップデート可能",
|
||||
"Update workspace name success": "ワークスペース名の更新に成功",
|
||||
"Updated": "更新日",
|
||||
"upgradeBrowser": "快適にご利用いただくために、Chromeの最新バージョンへのアップグレードをお願いします",
|
||||
"Upload": "アップロード",
|
||||
"Use on current device only": "現在の端末でのみ使用",
|
||||
"Users": "ユーザー",
|
||||
"View Navigation Path": "ナビゲーションパスを表示",
|
||||
"Wait for Sync": "同期を待つ",
|
||||
"will delete member": "はメンバーを削除します",
|
||||
"Workspace Avatar": "ワークスペースのアバター",
|
||||
"Workspace Icon": "ワークスペースのアイコン",
|
||||
"Workspace Name": "ワークスペース名",
|
||||
@@ -237,42 +291,5 @@
|
||||
"Workspace Owner": "ワークスペースの所有者",
|
||||
"Workspace Settings": "ワークスペースの設定",
|
||||
"Workspace Type": "ワークスペースのタイプ",
|
||||
"Workspace database storage description": "ワークスペースを作成する場所を選択します。ワークスペースのデータは、デフォルトでローカルに保存されます",
|
||||
"Workspace description": "ワークスペースは、一人で、あるいはチームで、創造し、計画するための仮想空間です",
|
||||
"You cannot delete the last workspace": "最後のワークスペースを削除することはできません",
|
||||
"all": "すべて",
|
||||
"com.affine.banner.content": "デモをお楽しみですか?完全なエクスペリエンスを得るには<1>AFFiNEクライアントをダウンロード</1>してください。",
|
||||
"com.affine.cloudTempDisable.description": "AFFiNEクラウドサービスのバージョンアップを行っており、クライアント側で一時的に利用できない状態になっています。進捗状況などに関する通知をご希望の方は<1>AFFiNEコミュニティ</1>にご参加ください。",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNEクラウドは現在アップグレード中です。",
|
||||
"com.affine.edgelessMode": "エッジレスモード",
|
||||
"com.affine.helpIsland.gettingStarted": "始めましょう",
|
||||
"com.affine.onboarding.title1": "ハイパーマージされたホワイトボードとドキュメント",
|
||||
"com.affine.onboarding.title2": "直感的で堅牢なブロックベースの編集",
|
||||
"com.affine.onboarding.videoDescription1": "構造化されたドキュメントを作成するためのページモードと、創造的なアイデアを自由な形式で視覚的に表現するためのホワイトボードモードを簡単に切り替えることができます",
|
||||
"com.affine.onboarding.videoDescription2": "モジュール式インターフェイスを使用してテキスト、画像、その他のコンテンツのブロックをドラッグ&ドロップすることで、構造化ドキュメントを簡単に作成できます",
|
||||
"com.affine.pageMode": "ページモード",
|
||||
"com.affine.updater.downloading": "ダウンロード中",
|
||||
"com.affine.updater.open-download-page": "ダウンロードページを開く",
|
||||
"com.affine.updater.restart-to-update": "再起動してアップデートをインストールする",
|
||||
"com.affine.updater.update-available": "アップデート可能",
|
||||
"core": "主要な",
|
||||
"dark": "ダーク",
|
||||
"emptyAllPages": "このワークスペースに何もありません。新しいページを作成して編集を開始します",
|
||||
"emptyFavorite": "「お気に入りに追加」をクリックすると、ここにページが表示されます",
|
||||
"emptySharedPages": "共有されたページがここに表示されます",
|
||||
"emptyTrash": "「ゴミ箱に移動」をクリックすると、ここにページが表示されます",
|
||||
"is a Cloud Workspace": "はクラウドワークスペースです",
|
||||
"is a Local Workspace": "はローカルワークスペースです",
|
||||
"light": "ライト",
|
||||
"login success": "ログイン成功",
|
||||
"mobile device": "モバイル端末で閲覧しているようです",
|
||||
"mobile device description": "モバイルへの対応は現在も進めており、デスクトップ端末でのご利用を推奨しています",
|
||||
"others": "その他",
|
||||
"recommendBrowser": "最適な環境でご利用いただくために、<1>Chrome</1>ブラウザを推奨します",
|
||||
"restored": "{{title}}を復元しました",
|
||||
"still designed": "(このページはまだ設計中です)",
|
||||
"system": "システム",
|
||||
"upgradeBrowser": "快適にご利用いただくために、Chromeの最新バージョンへのアップグレードをお願いします",
|
||||
"will be moved to Trash": "{{title}}はゴミ箱に移動されます",
|
||||
"will delete member": "はメンバーを削除します"
|
||||
"You cannot delete the last workspace": "最後のワークスペースを削除することはできません"
|
||||
}
|
||||
|
||||
+132
-115
@@ -1,154 +1,223 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - 발견되지 않음",
|
||||
"AFFiNE Cloud": "AFFiNE 클라우드",
|
||||
"AFFiNE Community": "AFFiNE 커뮤니티",
|
||||
"Access level": "접근 권한",
|
||||
"Add Workspace": "워크스페이스 추가",
|
||||
"Add a subpage inside": "내부에서 하부 페이지 생성",
|
||||
"Add to Favorites": "즐겨찾기에 추가",
|
||||
"Add to favorites": "즐겨찾기에 추가",
|
||||
"Added Successfully": "성공적으로 추가됨",
|
||||
"Added to Favorites": "즐겨찾기에 추가됨",
|
||||
"Add Workspace": "워크스페이스 추가",
|
||||
"All changes are saved locally": "모든 변경사항이 로컬에 저장 완료",
|
||||
"All data has been stored in the cloud": "모든 데이터가 클라우드에 저장됨",
|
||||
"All pages": "모든 페이지",
|
||||
"Available Offline": "오프라인 작업 가능",
|
||||
"Back Home": "홈으로 돌아가기",
|
||||
"Back to Quick Search": "빠른 검색으로 돌아가기",
|
||||
"Body text": "본문",
|
||||
"Bold": "굵은 글꼴",
|
||||
"Cancel": "취소",
|
||||
"Change avatar hint": "새로운 아바타는 모든 사람에게 공개됩니다.",
|
||||
"Change workspace name hint": "새로운 이름은 모든 사람에게 공개됩니다.",
|
||||
"Check Our Docs": "문서를 확인하세요",
|
||||
"Cloud Workspace": "클라우드 워크스페이스",
|
||||
"Cloud Workspace Description": "모든 데이터가 AFFiNE 계정 <1>{{email}}</1>으로 동기화 및 저장됨.",
|
||||
"Code block": "코드 블록",
|
||||
"Collaboration": "협업",
|
||||
"Collaboration Description": "다른 사람과 협업하기 위해서 AFFiNE 클라우드 서비스가 필요합니다.",
|
||||
"Collapse sidebar": "사이드바 닫기",
|
||||
"com.affine.aboutAFFiNE.contact.community": "AFFiNE 커뮤니티",
|
||||
"com.affine.aboutAFFiNE.contact.website": "공식 웹사이트",
|
||||
"com.affine.appUpdater.downloading": "다운로드 진행중",
|
||||
"com.affine.appUpdater.installUpdate": "업데이트 하기 위해 재시작",
|
||||
"com.affine.appUpdater.openDownloadPage": "다운로드 페이지 열기",
|
||||
"com.affine.appUpdater.updateAvailable": "업데이트 가능",
|
||||
"com.affine.appUpdater.whatsNew": "새로운 기능 탐색",
|
||||
"com.affine.backButton": "홈으로 돌아가기",
|
||||
"com.affine.brand.affineCloud": "AFFiNE 클라우드",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNE 클라우드는 현재 개선중입니다.",
|
||||
"com.affine.confirmModal.button.cancel": "취소",
|
||||
"com.affine.currentYear": "올해",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "워크스페이스 떠나기",
|
||||
"com.affine.editCollection.button.cancel": "취소",
|
||||
"com.affine.editCollection.button.create": "생성",
|
||||
"com.affine.editCollection.save": "저장",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "취소",
|
||||
"com.affine.favoritePageOperation.add": "즐겨찾기에 추가",
|
||||
"com.affine.favoritePageOperation.remove": "즐겨찾기에서 제거",
|
||||
"com.affine.helpIsland.contactUs": "우리에게 연락하세요",
|
||||
"com.affine.helpIsland.gettingStarted": "시작하기",
|
||||
"com.affine.helpIsland.helpAndFeedback": "도움과 피드백",
|
||||
"com.affine.import_file": "마크다운(Markdown)/노션(Notion) 지원",
|
||||
"com.affine.inviteModal.button.cancel": "취소",
|
||||
"com.affine.keyboardShortcuts.bodyText": "본문",
|
||||
"com.affine.keyboardShortcuts.bold": "굵은 글꼴",
|
||||
"com.affine.keyboardShortcuts.cancel": "취소",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "코드 블록",
|
||||
"com.affine.keyboardShortcuts.divider": "구분자",
|
||||
"com.affine.keyboardShortcuts.heading": "헤딩 {{number}}",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "들여쓰기",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "인라인 코드",
|
||||
"com.affine.keyboardShortcuts.italic": "이탤릭체",
|
||||
"com.affine.keyboardShortcuts.link": "하이퍼링크 (선택된 텍스트)",
|
||||
"com.affine.keyboardShortcuts.newPage": "새로운 페이지",
|
||||
"com.affine.keyboardShortcuts.pen": "펜 (추가 예정)",
|
||||
"com.affine.keyboardShortcuts.redo": "되돌리기",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "들여쓰기 감소",
|
||||
"com.affine.keyboardShortcuts.select": "선택",
|
||||
"com.affine.keyboardShortcuts.shape": "모양",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "취소선",
|
||||
"com.affine.keyboardShortcuts.title": "키보드 단축키",
|
||||
"com.affine.keyboardShortcuts.underline": "밑줄",
|
||||
"com.affine.keyboardShortcuts.undo": "되돌리기",
|
||||
"com.affine.last30Days": "최근 30일",
|
||||
"com.affine.last7Days": "최근 7일",
|
||||
"com.affine.lastMonth": "지난 달",
|
||||
"com.affine.lastWeek": "지난 주",
|
||||
"com.affine.lastYear": "작년",
|
||||
"com.affine.moveToTrash.confirmModal.title": "페이지 삭제",
|
||||
"com.affine.moveToTrash.title": "휴지통으로 이동",
|
||||
"com.affine.nameWorkspace.button.cancel": "취소",
|
||||
"com.affine.nameWorkspace.button.create": "생성",
|
||||
"com.affine.nameWorkspace.placeholder": "워크스페이스 이름 입력",
|
||||
"com.affine.nameWorkspace.title": "워크스페이스 이름을 입력하세요",
|
||||
"com.affine.new_edgeless": "새로운 엣지리스",
|
||||
"com.affine.new_import": "불러오기",
|
||||
"com.affine.notFoundPage.title": "404 - 발견되지 않음",
|
||||
"com.affine.openPageOperation.newTab": "새로운 탭에서 열기",
|
||||
"com.affine.pageMode.all": "모든",
|
||||
"com.affine.pageMode.edgeless": "엣지리스",
|
||||
"com.affine.pageMode.page": "페이지",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "취소",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "비활성화",
|
||||
"com.affine.publicLinkDisableModal.title": "공개 링크를 비활성화 할까요?",
|
||||
"com.affine.rootAppSidebar.favorites": "즐겨찾기",
|
||||
"com.affine.rootAppSidebar.others": "다른",
|
||||
"com.affine.setDBLocation.button.customize": "커스터마이즈",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "기본 위치",
|
||||
"com.affine.setDBLocation.title": "데이터베이스 위치 선택",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "기본적으로 {{location}}에 저장됨",
|
||||
"com.affine.setSyncingMode.button.continue": "계속",
|
||||
"com.affine.setSyncingMode.cloud": "AFFiNE 클라우드로 장치간 동기화",
|
||||
"com.affine.setSyncingMode.title.added": "성공적으로 추가됨",
|
||||
"com.affine.setSyncingMode.title.created": "성공적으로 생성됨",
|
||||
"com.affine.settingSidebar.settings.general": "일반",
|
||||
"com.affine.settingSidebar.title": "설정",
|
||||
"com.affine.shortcutsTitle.edgeless": "엣지리스",
|
||||
"com.affine.shortcutsTitle.general": "일반",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "마크다운 문법",
|
||||
"com.affine.shortcutsTitle.page": "페이지",
|
||||
"com.affine.sidebarSwitch.collapse": "사이드바 닫기",
|
||||
"com.affine.sidebarSwitch.expand": "사이드바 열기",
|
||||
"com.affine.themeSettings.dark": "다크",
|
||||
"com.affine.themeSettings.light": "밝은",
|
||||
"com.affine.themeSettings.system": "시스템",
|
||||
"com.affine.toastMessage.addedFavorites": "즐겨찾기에 추가됨",
|
||||
"com.affine.toastMessage.edgelessMode": "엣지리스 모드",
|
||||
"com.affine.toastMessage.movedTrash": "휴지통으로 이동됨",
|
||||
"com.affine.toastMessage.pageMode": "페이지 모드",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "영원히 삭제됨",
|
||||
"com.affine.toastMessage.removedFavorites": "즐겨찾기에서 제거됨",
|
||||
"com.affine.toastMessage.restored": "{{title}} 복구됨",
|
||||
"com.affine.toastMessage.successfullyDeleted": "성공적으로 삭제됨",
|
||||
"com.affine.today": "오늘",
|
||||
"com.affine.trashOperation.delete": "삭제",
|
||||
"com.affine.trashOperation.delete.title": "영원히 삭제",
|
||||
"com.affine.trashOperation.deletePermanently": "영원히 삭제",
|
||||
"com.affine.trashOperation.restoreIt": "복구하기",
|
||||
"com.affine.workspace.cannot-delete": "마지막 워크스페이스를 삭제할 수 없습니다",
|
||||
"com.affine.workspaceDelete.button.cancel": "취소",
|
||||
"com.affine.workspaceDelete.button.delete": "삭제",
|
||||
"com.affine.workspaceDelete.description": "<1>{{workspace}}</1> 를 삭제하면 되돌릴 수 없으니 주의해주세요. 모든 항목을 잃게 됩니다.",
|
||||
"com.affine.workspaceDelete.description2": "<1>{{workspace}}</1>를 삭제하면 로컬과 클라우드 데이터 모두 삭제되며, 되돌릴 수 없으므로, 주의해주세요 ",
|
||||
"com.affine.workspaceDelete.placeholder": "워크스페이스 이름을 입력후 확인",
|
||||
"com.affine.workspaceDelete.title": "워크스페이스 삭제",
|
||||
"com.affine.workspaceLeave.button.cancel": "취소",
|
||||
"com.affine.workspaceLeave.button.leave": "떠나기",
|
||||
"com.affine.workspaceLeave.description": "워스크페이스를 떠나게 되면 데이터에 더이상 접근할 수 없습니다.",
|
||||
"com.affine.workspaceSubPath.all": "모든 페이지",
|
||||
"com.affine.workspaceSubPath.trash": "휴지통",
|
||||
"com.affine.workspaceType.cloud": "클라우드 워크스페이스",
|
||||
"com.affine.workspaceType.joined": "참가한 워크스페이스",
|
||||
"com.affine.workspaceType.local": "로컬 워크스페이스",
|
||||
"com.affine.workspaceType.offline": "오프라인 작업 가능",
|
||||
"com.affine.write_with_a_blank_page": "새로운 페이지로 작성",
|
||||
"com.affine.yesterday": "어제",
|
||||
"Confirm": "동의",
|
||||
"Contact Us": "우리에게 연락하세요",
|
||||
"Continue": "계속",
|
||||
"Continue with Google": "구글로 계속하기",
|
||||
"Convert to ": "전환",
|
||||
"Copied link to clipboard": "링크가 클립보드로 복사됨",
|
||||
"Copy Link": "링크 복사",
|
||||
"core": "코어",
|
||||
"Create": "생성",
|
||||
"Create Or Import": "생성하거나 불러오기",
|
||||
"Create Shared Link Description": "다른 사람과 공유할 수 있는 링크 생성하기",
|
||||
"Create your own workspace": "새로운 워크스페이스 생성",
|
||||
"Created": "생성됨",
|
||||
"Created Successfully": "성공적으로 생성됨",
|
||||
"Created with": "와 함께 생성됨",
|
||||
"Customize": "커스터마이즈",
|
||||
"DB_FILE_INVALID": "유요하지 않은 데이터베이스 파일",
|
||||
"DB_FILE_PATH_INVALID": "데이터베이스 파일 경로가 유효하지 않음",
|
||||
"Default Location": "기본 위치",
|
||||
"Default db location hint": "기본적으로 {{location}}에 저장됨",
|
||||
"Delete": "삭제",
|
||||
"Delete Member?": "멤버를 삭제할까요?",
|
||||
"Delete Workspace": "워크스페이스 삭제",
|
||||
"Delete Workspace Description": "<1>{{workspace}}</1> 를 삭제하면 되돌릴 수 없으니 주의해주세요. 모든 항목을 잃게 됩니다.",
|
||||
"Delete Workspace Description2": "<1>{{workspace}}</1>를 삭제하면 로컬과 클라우드 데이터 모두 삭제되며, 되돌릴 수 없으므로, 주의해주세요 ",
|
||||
"Delete Workspace Label Hint": "워크스페이스를 삭제하게 되면, 모든 사용자의 데이터가 영구적으로 삭제됩니다. 워크스페이스의 데이터는 아무도 복구할 수 없습니다.",
|
||||
"Delete Workspace placeholder": "진행하기 위해서 \"Delete\"를 입력",
|
||||
"Delete page?": "페이지 삭제",
|
||||
"Delete permanently": "영원히 삭제",
|
||||
"Disable": "비활성화",
|
||||
"Disable Public Link": "공개 링크 비활성화",
|
||||
"Disable Public Link ?": "공개 링크를 비활성화 할까요?",
|
||||
"Disable Public Sharing": "공유 비활성화",
|
||||
"Discover what's new!": "새로운 기능 탐색",
|
||||
"Divider": "구분자",
|
||||
"Download all data": "모든 데이터 다운로드",
|
||||
"Download core data": "코어 데이터 다운로드",
|
||||
"Download data": "{{CoreOrAll}} 데이터 다운로드",
|
||||
"Edgeless": "엣지리스",
|
||||
"Edit": "수정",
|
||||
"emptyAllPages": "이 워크스페이스는 비어있습니다. 새로운 페이지를 생성하여 이어가세요.",
|
||||
"emptySharedPages": "공유된 페이지는 여기서 확인할 수 있습니다.",
|
||||
"Enable": "활성화",
|
||||
"Enable AFFiNE Cloud": "AFFiNE 클라우드 활성화",
|
||||
"Enable AFFiNE Cloud Description": "만약 활성화 한다면, 워크스페이스 데이터가 AFFiNE 클라우드에 백업 및 싱크 됩니다.",
|
||||
"Enabled success": "활성화 성공",
|
||||
"Expand sidebar": "사이드바 열기",
|
||||
"Export": "내보내기",
|
||||
"Export AFFiNE backup file": "AFFiNE 백업 파일 내보내기",
|
||||
"Export Description": "워크스페이스의 모든 데이터 백업을 내보내기 할 수 있으며, 내보내기 한 데이터는 다시 불러올 수 있습니다.",
|
||||
"Export Shared Pages Description": "다른 사람과 공유하기 위한 페이지의 정적 복사본 다운로드",
|
||||
"Export Workspace": "워크스페이스 <1>{{workspace}}</1> 내보내기는 추가될 예정입니다.",
|
||||
"Export success": "내보내기 ",
|
||||
"Export to HTML": "HTML로 내보내기",
|
||||
"Export to Markdown": "Markdown으로 내보내기",
|
||||
"Export to PDF": "PDF로 내보내기",
|
||||
"Export to PNG": "PNG로 내보내기",
|
||||
"FILE_ALREADY_EXISTS": "파일이 이미 존재함",
|
||||
"Export Workspace": "워크스페이스 <1>{{workspace}}</1> 내보내기는 추가될 예정입니다.",
|
||||
"Failed to publish workspace": "워크스페이스 공개 실패",
|
||||
"Favorite": "즐겨찾기",
|
||||
"Favorite pages for easy access": "쉬운 접근을 위해 즐겨찾기에 추가",
|
||||
"Favorited": "즐겨찾기 됨",
|
||||
"Favorites": "즐겨찾기",
|
||||
"FILE_ALREADY_EXISTS": "파일이 이미 존재함",
|
||||
"Find 0 result": "0개 결과 발견",
|
||||
"Find results": "{{number}}개 결과 발견",
|
||||
"Force Sign Out": "강제 로그아웃",
|
||||
"General": "일반",
|
||||
"Get in touch!": "연락하세요!",
|
||||
"Get in touch! Join our communities": "연락하세요! 우리의 커뮤니티에 가입하세요.",
|
||||
"Get in touch! Join our communities.": "연락하세요! 우리의 커뮤니티에 가입하세요.",
|
||||
"Got it": "확인",
|
||||
"Heading": "헤딩 {{number}}",
|
||||
"Help and Feedback": "도움과 피드백",
|
||||
"Import": "불러오기",
|
||||
"Increase indent": "들여쓰기",
|
||||
"Inline code": "인라인 코드",
|
||||
"Invite": "초대",
|
||||
"Invite Members": "멤버 초대",
|
||||
"Invite placeholder": "메일 검색 (Gmail만 지원)",
|
||||
"is a Cloud Workspace": "는 클라우드 워크스페이스 입니다.",
|
||||
"is a Local Workspace": "는 로컬 워크스페이스 입니다.",
|
||||
"It takes up little space on your device": "당신의 장치의 작은 저장공간을 사용합니다.",
|
||||
"It takes up little space on your device.": "당신의 장치의 작은 저장공간을 사용합니다.",
|
||||
"It takes up more space on your device": "당신의 장치의 많은 저장공간을 사용합니다.",
|
||||
"It takes up more space on your device.": "당신의 장치의 많은 저장공간을 사용합니다.",
|
||||
"Italic": "이탤릭체",
|
||||
"Joined Workspace": "참가한 워크스페이스",
|
||||
"Jump to": "이동",
|
||||
"Keyboard Shortcuts": "키보드 단축키",
|
||||
"Leave": "떠나기",
|
||||
"Leave Workspace": "워크스페이스 떠나기",
|
||||
"Leave Workspace Description": "워스크페이스를 떠나게 되면 데이터에 더이상 접근할 수 없습니다.",
|
||||
"Link": "하이퍼링크 (선택된 텍스트)",
|
||||
"Loading": "불러오는 중...",
|
||||
"Local Workspace": "로컬 워크스페이스",
|
||||
"Markdown Syntax": "마크다운 문법",
|
||||
"login success": "로그인 성공",
|
||||
"Member": "멤버",
|
||||
"Member has been removed": "{{name}}이 삭제됨",
|
||||
"Members": "멤버들",
|
||||
"mobile device": "모바일 기기에서 탐색 중인 것으로 보임.",
|
||||
"Move folder": "폴더 이동",
|
||||
"Move folder hint": "새로운 저장소 위치 선택",
|
||||
"Move folder success": "폴더 이동 성공",
|
||||
"Move page to": "페이지를 이동...",
|
||||
"Move page to...": "페이지를 이동...",
|
||||
"Move to": "이동",
|
||||
"Move to Trash": "휴지통으로 이동",
|
||||
"Moved to Trash": "휴지통으로 이동됨",
|
||||
"My Workspaces": "내 워크스페이스",
|
||||
"Name Your Workspace": "워크스페이스 이름을 입력하세요",
|
||||
"New Keyword Page": "새로운 '{{query}}' 페이지",
|
||||
"New Page": "새로운 페이지",
|
||||
"New Workspace": "새로운 워크스페이스",
|
||||
"No item": "새로운 아이템",
|
||||
"Non-Gmail": "Gmail 외에는 지원되지 않습니다",
|
||||
"Not now": "나중에",
|
||||
"Official Website": "공식 웹사이트",
|
||||
"Open Workspace Settings": "워크스페이스 설정 열기",
|
||||
"Open folder": "폴더 열기",
|
||||
"Open folder hint": "저장소의 위치 확인",
|
||||
"Open in new tab": "새로운 탭에서 열기",
|
||||
"Open Workspace Settings": "워크스페이스 설정 열기",
|
||||
"Organize pages to build knowledge": "페이지를 구성하여 지식을 쌓으세요",
|
||||
"Owner": "소유자",
|
||||
"Page": "페이지",
|
||||
"Pen": "펜 (추가 예정)",
|
||||
"Permanently deleted": "영원히 삭제됨",
|
||||
"Pivots": "피봇",
|
||||
"Placeholder of delete workspace": "워크스페이스 이름을 입력후 확인",
|
||||
"Please make sure you are online": "온라인 인것을 확인하세요",
|
||||
"Publish": "공개",
|
||||
"Publish to web": "웹에서 공개",
|
||||
@@ -160,22 +229,11 @@
|
||||
"Quick search placeholder": "빠른 검색...",
|
||||
"Quick search placeholder2": "{{workspace}}에서 검색",
|
||||
"Recent": "최근",
|
||||
"Redo": "되돌리기",
|
||||
"Reduce indent": "들여쓰기 감소",
|
||||
"Remove from favorites": "즐겨찾기에서 제거",
|
||||
"Remove from workspace": "워크스페이스에서 삭제",
|
||||
"Removed from Favorites": "즐겨찾기에서 제거됨",
|
||||
"Rename": "이름 변경",
|
||||
"Restart Install Client Update": "업데이트 하기 위해 재시작",
|
||||
"Restore it": "복구하기",
|
||||
"Save": "저장",
|
||||
"Saved then enable AFFiNE Cloud": "모든 변경사항이 로컬에 저장되었습니다, 클릭하여 AFFiNE 클라우드를 활성화 하세요.",
|
||||
"Select": "선택",
|
||||
"Set a Workspace name": "워크스페이스 이름 입력",
|
||||
"Set database location": "데이터베이스 위치 선택",
|
||||
"Set up an AFFiNE account to sync data": "AFFiNE 계정을 지정하여 데이터 동기화",
|
||||
"Settings": "설정",
|
||||
"Shape": "모양",
|
||||
"Share Menu Public Workspace Description1": "다른사람을 워크스페이스로 초대하거나 웹을 통하여 공유.",
|
||||
"Share Menu Public Workspace Description2": "현재 워크스페이스는 웹을 통해 공유된 공유 워크스페이스입니다.",
|
||||
"Share with link": "링크로 공유",
|
||||
@@ -188,25 +246,21 @@
|
||||
"Skip": "넘기기",
|
||||
"Stay logged out": "로그아웃 상태 유지",
|
||||
"Sticky": "스티키 노트 (추가 예정)",
|
||||
"still designed": "(현재 페이지는 지속적으로 수정되고 있습니다.)",
|
||||
"Stop publishing": "공유 중지",
|
||||
"Storage Folder": "저장 폴더",
|
||||
"Strikethrough": "취소선",
|
||||
"Successfully deleted": "성공적으로 삭제됨",
|
||||
"Sync": "싱크",
|
||||
"Sync across devices with AFFiNE Cloud": "AFFiNE 클라우드로 장치간 동기화",
|
||||
"Synced with AFFiNE Cloud": "AFFiNE 클라우드로 동기화됨",
|
||||
"Title": "제목",
|
||||
"Trash": "휴지통",
|
||||
"TrashButtonGroupTitle": "영원히 삭제",
|
||||
"UNKNOWN_ERROR": "알수 없는 에러",
|
||||
"Underline": "밑줄",
|
||||
"Undo": "되돌리기",
|
||||
"Untitled": "제목 없음",
|
||||
"Update Available": "업데이트 가능",
|
||||
"Updated": "업데이트됨",
|
||||
"upgradeBrowser": "최상의 경험을 위해 크롬을 최신 버전으로 업테이트 해주세요.",
|
||||
"Upload": "업로드",
|
||||
"Users": "유저들",
|
||||
"Wait for Sync": "싱크 대기중",
|
||||
"will delete member": "멤버를 삭제합니다",
|
||||
"Workspace Avatar": "워크스페이스 아바타",
|
||||
"Workspace Icon": "워크스페이스 아이콘",
|
||||
"Workspace Name": "워크스페이스 이름",
|
||||
@@ -214,42 +268,5 @@
|
||||
"Workspace Owner": "워크스페이스 주인",
|
||||
"Workspace Settings": "워크스페이스 설정",
|
||||
"Workspace Type": "워크스페이스 종류",
|
||||
"You cannot delete the last workspace": "모든",
|
||||
"all": "모든",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNE 클라우드는 현재 개선중입니다.",
|
||||
"com.affine.currentYear": "올해",
|
||||
"com.affine.edgelessMode": "엣지리스 모드",
|
||||
"com.affine.helpIsland.gettingStarted": "시작하기",
|
||||
"com.affine.import_file": "마크다운(Markdown)/노션(Notion) 지원",
|
||||
"com.affine.last30Days": "최근 30일",
|
||||
"com.affine.last7Days": "최근 7일",
|
||||
"com.affine.lastMonth": "지난 달",
|
||||
"com.affine.lastWeek": "지난 주",
|
||||
"com.affine.lastYear": "작년",
|
||||
"com.affine.new_edgeless": "새로운 엣지리스",
|
||||
"com.affine.new_import": "불러오기",
|
||||
"com.affine.pageMode": "페이지 모드",
|
||||
"com.affine.today": "오늘",
|
||||
"com.affine.updater.downloading": "다운로드 진행중",
|
||||
"com.affine.updater.open-download-page": "다운로드 페이지 열기",
|
||||
"com.affine.updater.restart-to-update": "업데이트 하기 위해 재시작",
|
||||
"com.affine.updater.update-available": "업데이트 가능",
|
||||
"com.affine.workspace.cannot-delete": "마지막 워크스페이스를 삭제할 수 없습니다",
|
||||
"com.affine.write_with_a_blank_page": "새로운 페이지로 작성",
|
||||
"com.affine.yesterday": "어제",
|
||||
"core": "코어",
|
||||
"dark": "다크",
|
||||
"emptyAllPages": "이 워크스페이스는 비어있습니다. 새로운 페이지를 생성하여 이어가세요.",
|
||||
"emptySharedPages": "공유된 페이지는 여기서 확인할 수 있습니다.",
|
||||
"is a Cloud Workspace": "는 클라우드 워크스페이스 입니다.",
|
||||
"is a Local Workspace": "는 로컬 워크스페이스 입니다.",
|
||||
"light": "밝은",
|
||||
"login success": "로그인 성공",
|
||||
"mobile device": "모바일 기기에서 탐색 중인 것으로 보임.",
|
||||
"others": "다른",
|
||||
"restored": "{{title}} 복구됨",
|
||||
"still designed": "(현재 페이지는 지속적으로 수정되고 있습니다.)",
|
||||
"system": "시스템",
|
||||
"upgradeBrowser": "최상의 경험을 위해 크롬을 최신 버전으로 업테이트 해주세요.",
|
||||
"will delete member": "멤버를 삭제합니다"
|
||||
"You cannot delete the last workspace": "모든"
|
||||
}
|
||||
|
||||
+157
-140
@@ -1,206 +1,266 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - Страница не найдена",
|
||||
"AFFiNE Cloud": "AFFiNE Cloud",
|
||||
"AFFiNE Community": "Сообщество AFFiNE",
|
||||
"About AFFiNE": "Об AFFiNE",
|
||||
"Access level": "Уровень доступа",
|
||||
"Add Workspace": "Добавить пространство",
|
||||
"Add to Favorites": "Добавить в Избранное",
|
||||
"Add to favorites": "Добавить в избранное",
|
||||
"Added Successfully": "Успешно добавлено",
|
||||
"Added to Favorites": "Добавлено в Избранное",
|
||||
"All changes are saved locally": "Все изменения сохраняются локально",
|
||||
"All data has been stored in the cloud": "Все данные хранятся в облаке.",
|
||||
"All pages": "Все страницы",
|
||||
"App Version": "Версия приложения",
|
||||
"Appearance Settings": "Настройки оформления",
|
||||
"Available Offline": "Доступно оффлайн",
|
||||
"Back Home": "Вернуться на Главную",
|
||||
"Back to Quick Search": "Назад к Быстрому поиску",
|
||||
"Body text": "Основной текст",
|
||||
"Bold": "Жирный",
|
||||
"Cancel": "Отмена",
|
||||
"Change avatar hint": "Новый аватар будет отображаться для всех пользователей.",
|
||||
"Change workspace name hint": "Новое название будет отображаться для всех пользователей.",
|
||||
"Check Keyboard Shortcuts quickly": "Быстрая проверка горячих клавиш",
|
||||
"Check Our Docs": "Проверьте нашу документацию",
|
||||
"Check for updates": "Проверить обновления",
|
||||
"Check for updates automatically": "Проверять обновления автоматически",
|
||||
"Choose your color scheme": "Выберите цветовую схему",
|
||||
"Choose your font style": "Выберите стиль шрифта",
|
||||
"Cloud Workspace": "Облачное рабочее пространство",
|
||||
"Cloud Workspace Description": "Все данные будут синхронизированы и сохранены в AFFiNE аккаунт <1>{{email}}</1>",
|
||||
"Code block": "Блок кода",
|
||||
"Collaboration": "Совместная работа",
|
||||
"Collaboration Description": "Для совместной работы с другими участниками требуется сервис AFFiNE Cloud.",
|
||||
"Collapse sidebar": "Свернуть боковую панель",
|
||||
"Collections": "Коллекции",
|
||||
"Color Scheme": "Цветовая схема",
|
||||
"Communities": "Сообщества",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.title": "Проверять обновления автоматически",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.description": "Загружать обновления автоматически (на данное устройство).",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.title": "Загружать обновления автоматически",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.description": "Доступна новая версия",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.title": "Проверить обновления",
|
||||
"com.affine.aboutAFFiNE.community.title": "Сообщества",
|
||||
"com.affine.aboutAFFiNE.contact.community": "Сообщество AFFiNE",
|
||||
"com.affine.aboutAFFiNE.contact.title": "Связаться с нами",
|
||||
"com.affine.aboutAFFiNE.contact.website": "Официальный Сайт",
|
||||
"com.affine.aboutAFFiNE.legal.privacy": "Конфиденциальность",
|
||||
"com.affine.aboutAFFiNE.legal.title": "Юридическая информация",
|
||||
"com.affine.aboutAFFiNE.subtitle": "Информация об AFFiNE",
|
||||
"com.affine.aboutAFFiNE.title": "Об AFFiNE",
|
||||
"com.affine.aboutAFFiNE.version.app": "Версия приложения",
|
||||
"com.affine.appearanceSettings.clientBorder.description": "Настроить внешний вид клиента.",
|
||||
"com.affine.appearanceSettings.color.description": "Выберите цветовую схему",
|
||||
"com.affine.appearanceSettings.color.title": "Цветовая схема",
|
||||
"com.affine.appearanceSettings.date.title": "Дата",
|
||||
"com.affine.appearanceSettings.dateFormat.description": "Настроить формат даты.",
|
||||
"com.affine.appearanceSettings.dateFormat.title": "Формат даты",
|
||||
"com.affine.appearanceSettings.font.description": "Выберите стиль шрифта",
|
||||
"com.affine.appearanceSettings.font.title": "Стиль шрифта",
|
||||
"com.affine.appearanceSettings.language.title": "Язык интерфейса",
|
||||
"com.affine.appearanceSettings.startWeek.description": "По умолчанию неделя начинается с воскресенья.",
|
||||
"com.affine.appearanceSettings.title": "Настройки оформления",
|
||||
"com.affine.appUpdater.downloading": "Загрузка",
|
||||
"com.affine.appUpdater.installUpdate": "Перезапустить для установки обновления",
|
||||
"com.affine.appUpdater.updateAvailable": "Доступно обновление",
|
||||
"com.affine.backButton": "Вернуться на Главную",
|
||||
"com.affine.brand.affineCloud": "AFFiNE Cloud",
|
||||
"com.affine.confirmModal.button.cancel": "Отмена",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "Выйти из рабочего пространства",
|
||||
"com.affine.editCollection.button.cancel": "Отмена",
|
||||
"com.affine.editCollection.button.create": "Создать",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "Отмена",
|
||||
"com.affine.export.success.title": "Экспорт прошел успешно",
|
||||
"com.affine.favoritePageOperation.add": "Добавить в избранное",
|
||||
"com.affine.favoritePageOperation.remove": "Удалить из Избранного",
|
||||
"com.affine.filter": "Фильтр",
|
||||
"com.affine.helpIsland.contactUs": "Связаться с нами",
|
||||
"com.affine.helpIsland.helpAndFeedback": "Помощь и обратная связь",
|
||||
"com.affine.inviteModal.button.cancel": "Отмена",
|
||||
"com.affine.keyboardShortcuts.bodyText": "Основной текст",
|
||||
"com.affine.keyboardShortcuts.bold": "Жирный",
|
||||
"com.affine.keyboardShortcuts.cancel": "Отмена",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "Блок кода",
|
||||
"com.affine.keyboardShortcuts.divider": "Разделитель",
|
||||
"com.affine.keyboardShortcuts.expandOrCollapseSidebar": "Развернуть/Свернуть Боковую панель",
|
||||
"com.affine.keyboardShortcuts.group": "Группировать",
|
||||
"com.affine.keyboardShortcuts.hand": "Рука",
|
||||
"com.affine.keyboardShortcuts.heading": "Заголовок {{number}}",
|
||||
"com.affine.keyboardShortcuts.image": "Изображение",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "Увеличить отступ",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "Встроенный код",
|
||||
"com.affine.keyboardShortcuts.italic": "Курсив",
|
||||
"com.affine.keyboardShortcuts.link": "Гиперссылка (с выделенным текстом)",
|
||||
"com.affine.keyboardShortcuts.moveDown": "Переместить вниз",
|
||||
"com.affine.keyboardShortcuts.moveUp": "Переместить вверх",
|
||||
"com.affine.keyboardShortcuts.newPage": "Новая страница",
|
||||
"com.affine.keyboardShortcuts.pen": "Ручка (скоро)",
|
||||
"com.affine.keyboardShortcuts.quickSearch": "Быстрый поиск",
|
||||
"com.affine.keyboardShortcuts.redo": "Повторно выполнить",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "Уменьшить отступ",
|
||||
"com.affine.keyboardShortcuts.select": "Выбор",
|
||||
"com.affine.keyboardShortcuts.shape": "Фигура",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "Перечеркнутый",
|
||||
"com.affine.keyboardShortcuts.subtitle": "Быстрая проверка горячих клавиш",
|
||||
"com.affine.keyboardShortcuts.text": "Текст (скоро)",
|
||||
"com.affine.keyboardShortcuts.title": "Горячие Клавиши",
|
||||
"com.affine.keyboardShortcuts.underline": "Подчеркнутый",
|
||||
"com.affine.keyboardShortcuts.undo": "Отменить",
|
||||
"com.affine.last30Days": "Последние 30 дней",
|
||||
"com.affine.last7Days": "Последние 7 дней",
|
||||
"com.affine.lastMonth": "Последний месяц",
|
||||
"com.affine.moveToTrash.confirmModal.description": "{{title}} будет перемещен в Корзину",
|
||||
"com.affine.moveToTrash.confirmModal.title": "Удалить страницу?",
|
||||
"com.affine.moveToTrash.title": "Переместить в корзину",
|
||||
"com.affine.nameWorkspace.button.cancel": "Отмена",
|
||||
"com.affine.nameWorkspace.button.create": "Создать",
|
||||
"com.affine.nameWorkspace.description": "Рабочее пространство - это ваше виртуальное пространство для фиксации, создания и планирования в одиночку или в команде. ",
|
||||
"com.affine.nameWorkspace.placeholder": "Задайте имя рабочего пространства",
|
||||
"com.affine.notFoundPage.title": "404 - Страница не найдена",
|
||||
"com.affine.openPageOperation.newTab": "Открыть в новой вкладке",
|
||||
"com.affine.pageMode.all": "все",
|
||||
"com.affine.pageMode.edgeless": "Без полей",
|
||||
"com.affine.pageMode.page": "Страница",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "Отмена",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "Отключить",
|
||||
"com.affine.publicLinkDisableModal.description": "Отключение этой публичной ссылки запретит доступ к этой странице всем, у кого есть эта ссылка.",
|
||||
"com.affine.publicLinkDisableModal.title": "Отключить публичную ссылку ?",
|
||||
"com.affine.rootAppSidebar.collections": "Коллекции",
|
||||
"com.affine.rootAppSidebar.favorites": "Избранное",
|
||||
"com.affine.setDBLocation.button.customize": "Настроить",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "Расположение по умолчанию",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "По умолчанию будет сохранена в {{location}}.",
|
||||
"com.affine.setSyncingMode.button.continue": "Продолжить",
|
||||
"com.affine.setSyncingMode.title.added": "Успешно добавлено",
|
||||
"com.affine.setSyncingMode.title.created": "Успешно создано",
|
||||
"com.affine.settings.appearance": "Внешний вид",
|
||||
"com.affine.settings.remove-workspace": "Удалить рабочее пространство",
|
||||
"com.affine.settings.workspace.storage.tip": "Щелкните, чтобы переместить место хранения.",
|
||||
"com.affine.settingSidebar.settings.general": "Общие",
|
||||
"com.affine.settingSidebar.title": "Настройки",
|
||||
"com.affine.shortcutsTitle.edgeless": "Без полей",
|
||||
"com.affine.shortcutsTitle.general": "Общие",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Markdown Синтаксис",
|
||||
"com.affine.shortcutsTitle.page": "Страница",
|
||||
"com.affine.sidebarSwitch.collapse": "Свернуть боковую панель",
|
||||
"com.affine.sidebarSwitch.expand": "Развернуть боковую панель",
|
||||
"com.affine.themeSettings.dark": "Темная",
|
||||
"com.affine.themeSettings.light": "Светлая",
|
||||
"com.affine.toastMessage.addedFavorites": "Добавлено в Избранное",
|
||||
"com.affine.toastMessage.movedTrash": "Перемещено в корзину",
|
||||
"com.affine.toastMessage.pageMode": "Режим страницы",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "Удалено навсегда",
|
||||
"com.affine.toastMessage.removedFavorites": "Удалено из Избранного",
|
||||
"com.affine.toastMessage.restored": "{{title}} восстановлен",
|
||||
"com.affine.today": "Сегодня",
|
||||
"com.affine.trashOperation.delete": "Удалить",
|
||||
"com.affine.trashOperation.delete.description": "После удаления вы не сможете отменить это действие. Уверены?",
|
||||
"com.affine.trashOperation.delete.title": "Удалить навсегда",
|
||||
"com.affine.trashOperation.deletePermanently": "Удалить навсегда",
|
||||
"com.affine.trashOperation.restoreIt": "Восстановить",
|
||||
"com.affine.workspaceDelete.button.cancel": "Отмена",
|
||||
"com.affine.workspaceDelete.button.delete": "Удалить",
|
||||
"com.affine.workspaceDelete.description": "Удаление <1>{{workspace}}</1> нельзя отменить, пожалуйста, действуйте с осторожностью. Все содержимое будет потеряно.",
|
||||
"com.affine.workspaceDelete.description2": "Удаление <1>{{workspace}}</1> приведет к удалению как локальных, так и облачных данных, эта операция не может быть отменена, пожалуйста действуйте с осторожностью.",
|
||||
"com.affine.workspaceDelete.placeholder": "Пожалуйста, введите имя рабочего пространства для подтверждения",
|
||||
"com.affine.workspaceDelete.title": "Удалить рабочее пространство",
|
||||
"com.affine.workspaceLeave.button.cancel": "Отмена",
|
||||
"com.affine.workspaceLeave.button.leave": "Выйти",
|
||||
"com.affine.workspaceLeave.description": "После выхода вы больше не сможете получить доступ к содержимому этого рабочего пространства.",
|
||||
"com.affine.workspaceSubPath.all": "Все страницы",
|
||||
"com.affine.workspaceSubPath.trash": "Корзина",
|
||||
"com.affine.workspaceType.cloud": "Облачное рабочее пространство",
|
||||
"com.affine.workspaceType.joined": "Присоединенное рабочее пространство",
|
||||
"com.affine.workspaceType.local": "Локальное рабочее пространство",
|
||||
"com.affine.workspaceType.offline": "Доступно оффлайн",
|
||||
"com.affine.yesterday": "Вчера",
|
||||
"Confirm": "Подтвердить",
|
||||
"Connector": "Коннектор (скоро)",
|
||||
"Contact Us": "Связаться с нами",
|
||||
"Contact with us": "Связаться с нами",
|
||||
"Continue": "Продолжить",
|
||||
"Continue with Google": "Войти через Google",
|
||||
"Convert to ": "Конвертировать в режим",
|
||||
"Copied link to clipboard": "Ссылка скопирована в буфер обмена",
|
||||
"Copy": "Копировать",
|
||||
"Copy Link": "Копировать ссылку",
|
||||
"core": "основных",
|
||||
"Create": "Создать",
|
||||
"Create Or Import": "Создать или Импортировать",
|
||||
"Create Shared Link Description": "Создайте ссылку, которой можно легко поделиться с кем угодно.",
|
||||
"Created": "Создано",
|
||||
"Created Successfully": "Успешно создано",
|
||||
"Customize": "Настроить",
|
||||
"Data sync mode": "Режим синхронизации данных",
|
||||
"DB_FILE_INVALID": "Неверный файл базы данных",
|
||||
"DB_FILE_MIGRATION_FAILED": "Не удалось выполнить перенос файлов базы данных",
|
||||
"Data sync mode": "Режим синхронизации данных",
|
||||
"Date": "Дата",
|
||||
"Date Format": "Формат даты",
|
||||
"Default Location": "Расположение по умолчанию",
|
||||
"Default db location hint": "По умолчанию будет сохранена в {{location}}.",
|
||||
"Delete": "Удалить",
|
||||
"Delete Member?": "Удалить участника?",
|
||||
"Delete Workspace": "Удалить рабочее пространство",
|
||||
"Delete Workspace Description": "Удаление <1>{{workspace}}</1> нельзя отменить, пожалуйста, действуйте с осторожностью. Все содержимое будет потеряно.",
|
||||
"Delete Workspace Description2": "Удаление <1>{{workspace}}</1> приведет к удалению как локальных, так и облачных данных, эта операция не может быть отменена, пожалуйста действуйте с осторожностью.",
|
||||
"Delete Workspace Label Hint": "После удаления этого рабочего пространства вы навсегда удалите все его содержимое для всех. Никто не сможет восстановить содержимое этого рабочего пространства.",
|
||||
"Delete Workspace placeholder": "Пожалуйста, введите \"Delete\" для подтверждения",
|
||||
"Delete page?": "Удалить страницу?",
|
||||
"Delete permanently": "Удалить навсегда",
|
||||
"Disable": "Отключить",
|
||||
"Disable Public Link": "Отключить публичную ссылку",
|
||||
"Disable Public Link ?": "Отключить публичную ссылку ?",
|
||||
"Disable Public Link Description": "Отключение этой публичной ссылки запретит доступ к этой странице всем, у кого есть эта ссылка.",
|
||||
"Disable Public Sharing": "Отключить общий доступ",
|
||||
"Display Language": "Язык интерфейса",
|
||||
"Divider": "Разделитель",
|
||||
"Download all data": "Скачать все данные",
|
||||
"Download core data": "Скачать основные данные",
|
||||
"Download data": "Скачать {{CoreOrAll}} данные",
|
||||
"Download data Description1": "Это занимает больше места на вашем устройстве.",
|
||||
"Download data Description2": "Это занимает мало места на вашем устройстве.",
|
||||
"Download updates automatically": "Загружать обновления автоматически",
|
||||
"Edgeless": "Без полей",
|
||||
"Edit": "Редактировать",
|
||||
"emptyAllPages": "Это рабочее пространство пусто. Создайте новую страницу, чтобы начать редактирование.",
|
||||
"emptyAllPagesClient": "Нажмите на <1>$t(New Page)</1> или <3>{{shortcut}}</3>, чтобы создать свою первую страницу.",
|
||||
"emptyFavorite": "Нажмите «Добавить в избранное», и страница появится здесь.",
|
||||
"emptyTrash": "Нажмите «Добавить в корзину», и страница появится здесь.",
|
||||
"Enable": "Включить",
|
||||
"Enable AFFiNE Cloud": "Включить AFFiNE Cloud",
|
||||
"Enable AFFiNE Cloud Description": "Если этот параметр включен, данные в этом рабочем пространстве будут скопированы и синхронизированы с помощью AFFiNE Cloud.",
|
||||
"Enable cloud hint": "Данные функции работают на базе AFFiNE Cloud. Все данные хранятся на данном устройстве. Для синхронизации данных с облаком вы можете включить AFFiNE Cloud для этого рабочего пространства.",
|
||||
"Enabled success": "Успешно",
|
||||
"Expand sidebar": "Развернуть боковую панель",
|
||||
"Expand/Collapse Sidebar": "Развернуть/Свернуть Боковую панель",
|
||||
"Export": "Экспорт",
|
||||
"Export AFFiNE backup file": "Экспорт файла резервной копии AFFiNE",
|
||||
"Export Description": "Вы можете экспортировать все данные рабочего пространства, потом эти данные можно повторно импортировать.",
|
||||
"Export Workspace": "Экспорт рабочего пространства <1>{{workspace}}</1> скоро будет доступен",
|
||||
"Export success": "Экспорт прошел успешно",
|
||||
"Export to HTML": "Экспортировать в HTML",
|
||||
"Export to Markdown": "Экспортировать в Markdown",
|
||||
"Export to PDF": "Экспортировать в PDF",
|
||||
"Export to PNG": "Экспортировать в PNG",
|
||||
"FILE_ALREADY_EXISTS": "Файл уже существует",
|
||||
"Export Workspace": "Экспорт рабочего пространства <1>{{workspace}}</1> скоро будет доступен",
|
||||
"Failed to publish workspace": "Не удалось опубликовать рабочее пространство",
|
||||
"Favorite": "В Избранное",
|
||||
"Favorite pages for easy access": "Избранные страницы для быстрого доступа",
|
||||
"Favorited": "В Избранном",
|
||||
"Favorites": "Избранное",
|
||||
"FILE_ALREADY_EXISTS": "Файл уже существует",
|
||||
"Find 0 result": "Найдено 0 результатов",
|
||||
"Find results": "Найдено {{number}} результатов",
|
||||
"Font Style": "Стиль шрифта",
|
||||
"Force Sign Out": "Принудительный выход",
|
||||
"General": "Общие",
|
||||
"Get in touch!": "Связаться!",
|
||||
"Get in touch! Join our communities": "Свяжитесь с нами! Присоединяйтесь к нашим сообществам.",
|
||||
"Get in touch! Join our communities.": "Свяжитесь с нами! Присоединяйтесь к нашим сообществам.",
|
||||
"Got it": "Понятно",
|
||||
"Group": "Группировать",
|
||||
"Hand": "Рука",
|
||||
"Heading": "Заголовок {{number}}",
|
||||
"Help and Feedback": "Помощь и обратная связь",
|
||||
"How is AFFiNE Alpha different?": "Чем отличается AFFiNE Alpha?",
|
||||
"Image": "Изображение",
|
||||
"Import": "Импортировать",
|
||||
"Increase indent": "Увеличить отступ",
|
||||
"Info": "Информация",
|
||||
"Info of legal": "Юридическая информация",
|
||||
"Inline code": "Встроенный код",
|
||||
"Invite": "Пригласить",
|
||||
"Invite Members": "Пригласить участников",
|
||||
"Invite placeholder": "Поиск почты (поддерживается только Gmail)",
|
||||
"is a Cloud Workspace": "это облачное рабочее пространство.",
|
||||
"is a Local Workspace": "это локальное рабочее пространство",
|
||||
"It takes up little space on your device": "Занимает мало места на вашем устройстве.",
|
||||
"It takes up little space on your device.": "Занимает мало места на вашем устройстве.",
|
||||
"It takes up more space on your device": "Занимает много места на вашем устройстве.",
|
||||
"It takes up more space on your device.": "Занимает много места на вашем устройстве.",
|
||||
"Italic": "Курсив",
|
||||
"Joined Workspace": "Присоединенное рабочее пространство",
|
||||
"Jump to": "Перейти к",
|
||||
"Keyboard Shortcuts": "Горячие Клавиши",
|
||||
"Leave": "Выйти",
|
||||
"Leave Workspace": "Выйти из рабочего пространства",
|
||||
"Leave Workspace Description": "После выхода вы больше не сможете получить доступ к содержимому этого рабочего пространства.",
|
||||
"Link": "Гиперссылка (с выделенным текстом)",
|
||||
"Loading": "Загрузка...",
|
||||
"Local Workspace": "Локальное рабочее пространство",
|
||||
"Local Workspace Description": "Все данные хранятся на текущем устройстве. Для синхронизации данных с облаком вы можете включить AFFiNE Cloud для этого рабочего пространства.",
|
||||
"Markdown Syntax": "Markdown Синтаксис",
|
||||
"login success": "Успешный вход в систему",
|
||||
"Member": "Участник",
|
||||
"Member has been removed": "{{name}} был удален",
|
||||
"Members": "Участники",
|
||||
"Members hint": "Здесь можно управлять участниками, приглашать новых участников по электронной почте.",
|
||||
"Move Down": "Переместить вниз",
|
||||
"Move Up": "Переместить вверх",
|
||||
"mobile device": "Похоже, что вы просматриваете страницу на мобильном устройстве.",
|
||||
"mobile device description": "Мы все еще работаем над поддержкой мобильных устройств и рекомендуем использовать настольное устройство.",
|
||||
"Move folder hint": "Выберите новое место хранения.",
|
||||
"Move folder success": "Перемещение папки успешно",
|
||||
"Move page to": "Переместить страницу в...",
|
||||
"Move page to...": "Переместить страницу в...",
|
||||
"Move to Trash": "Переместить в корзину",
|
||||
"Moved to Trash": "Перемещено в корзину",
|
||||
"My Workspaces": "Мои рабочие пространства",
|
||||
"New Keyword Page": "Новая '{{query}}' страница",
|
||||
"New Page": "Новая страница",
|
||||
"New Workspace": "Новое рабочее пространство",
|
||||
"New version is ready": "Доступна новая версия",
|
||||
"No item": "Нет элементов",
|
||||
"Non-Gmail": "Поддерживается только Gmail",
|
||||
"Not now": "Не сейчас",
|
||||
"Official Website": "Официальный Сайт",
|
||||
"Open folder": "Открыть папку",
|
||||
"Open in new tab": "Открыть в новой вкладке",
|
||||
"Owner": "Владелец",
|
||||
"Page": "Страница",
|
||||
"Paper": "Лист",
|
||||
"Pen": "Ручка (скоро)",
|
||||
"Pending": "В ожидании",
|
||||
"Permanently deleted": "Удалено навсегда",
|
||||
"Placeholder of delete workspace": "Пожалуйста, введите имя рабочего пространства для подтверждения",
|
||||
"Please make sure you are online": "Пожалуйста, убедитесь, что вы онлайн",
|
||||
"Privacy": "Конфиденциальность",
|
||||
"Publish": "Публикация",
|
||||
"Publish to web": "Опубликовать в Интернете",
|
||||
"Published Description": "Текущее рабочее пространство было опубликовано в Интернете. Любой может просматривать содержимое по ссылке. ",
|
||||
"Published to Web": "Опубликовано в Интернете",
|
||||
"Publishing": "Для публикации в интернете требуется сервис AFFiNE Cloud",
|
||||
"Publishing Description": "После публикации в Интернете любой сможет просматривать содержимое этого рабочего пространства по ссылке.",
|
||||
"Quick Search": "Быстрый поиск",
|
||||
"Quick search": "Быстрый поиск",
|
||||
"Quick search placeholder": "Быстрый поиск...",
|
||||
"Quick search placeholder2": "Поиск в {{workspace}}",
|
||||
"Redo": "Повторно выполнить",
|
||||
"Reduce indent": "Уменьшить отступ",
|
||||
"Remove from favorites": "Удалить из Избранного",
|
||||
"recommendBrowser": "Для оптимальной работы мы рекомендуем использовать браузер <1>Chrome</1>.",
|
||||
"Remove from workspace": "Удалить из рабочего пространства",
|
||||
"Removed from Favorites": "Удалено из Избранного",
|
||||
"Restore it": "Восстановить",
|
||||
"Retain cached cloud data": "Сохраняйте кэшированные облачные данные",
|
||||
"Retain local cached data": "Сохранять локальные кэшированные данные",
|
||||
"Saved then enable AFFiNE Cloud": "Все изменения сохраняются локально, нажмите чтобы включить AFFiNE Cloud.",
|
||||
"Select": "Выбор",
|
||||
"Set a Workspace name": "Задайте имя рабочего пространства",
|
||||
"Set up an AFFiNE account to sync data": "Настройте учетную запись AFFiNE для синхронизации данных",
|
||||
"Settings": "Настройки",
|
||||
"Shape": "Фигура",
|
||||
"Share with link": "Поделиться ссылкой",
|
||||
"Shortcuts": "Ярлыки",
|
||||
"Sign in": "Войти в AFFiNE Cloud",
|
||||
@@ -210,64 +270,21 @@
|
||||
"Skip": "Пропустить",
|
||||
"Stay logged out": "Не выходить из системы",
|
||||
"Sticky": "Стикер (скоро)",
|
||||
"still designed": "(Эта страница все еще находится в разработке.)",
|
||||
"Stop publishing": "Остановить публикацию",
|
||||
"Strikethrough": "Перечеркнутый",
|
||||
"Sync": "Синхронизация",
|
||||
"Text": "Текст (скоро)",
|
||||
"Title": "Название",
|
||||
"Trash": "Корзина",
|
||||
"TrashButtonGroupDescription": "После удаления вы не сможете отменить это действие. Уверены?",
|
||||
"TrashButtonGroupTitle": "Удалить навсегда",
|
||||
"Underline": "Подчеркнутый",
|
||||
"Undo": "Отменить",
|
||||
"Untitled": "Без названия",
|
||||
"Updated": "Обновлено",
|
||||
"upgradeBrowser": "Пожалуйста, обновите Chrome до последней версии для лучшего взаимодействия.",
|
||||
"Upload": "Загрузить",
|
||||
"Users": "Пользователи",
|
||||
"Wait for Sync": "Дождитесь синхронизации",
|
||||
"will delete member": "удалит участника",
|
||||
"Workspace Avatar": "Аватар рабочего пространства",
|
||||
"Workspace Icon": "Иконка рабочего пространства",
|
||||
"Workspace Name": "Имя рабочего пространства",
|
||||
"Workspace Owner": "Владелец рабочего пространства",
|
||||
"Workspace Settings": "Настройки рабочего пространства",
|
||||
"Workspace Type": "Тип рабочего пространства",
|
||||
"Workspace description": "Рабочее пространство - это ваше виртуальное пространство для фиксации, создания и планирования в одиночку или в команде. ",
|
||||
"all": "все",
|
||||
"com.affine.export.success.title": "Экспорт прошел успешно",
|
||||
"com.affine.filter": "Фильтр",
|
||||
"com.affine.last30Days": "Последние 30 дней",
|
||||
"com.affine.last7Days": "Последние 7 дней",
|
||||
"com.affine.lastMonth": "Последний месяц",
|
||||
"com.affine.pageMode": "Режим страницы",
|
||||
"com.affine.settings.about.message": "Информация об AFFiNE",
|
||||
"com.affine.settings.about.update.download.message": "Загружать обновления автоматически (на данное устройство).",
|
||||
"com.affine.settings.appearance": "Внешний вид",
|
||||
"com.affine.settings.appearance.border-style-description": "Настроить внешний вид клиента.",
|
||||
"com.affine.settings.appearance.date-format-description": "Настроить формат даты.",
|
||||
"com.affine.settings.appearance.start-week-description": "По умолчанию неделя начинается с воскресенья.",
|
||||
"com.affine.settings.remove-workspace": "Удалить рабочее пространство",
|
||||
"com.affine.settings.workspace.storage.tip": "Щелкните, чтобы переместить место хранения.",
|
||||
"com.affine.today": "Сегодня",
|
||||
"com.affine.updater.downloading": "Загрузка",
|
||||
"com.affine.updater.restart-to-update": "Перезапустить для установки обновления",
|
||||
"com.affine.updater.update-available": "Доступно обновление",
|
||||
"com.affine.yesterday": "Вчера",
|
||||
"core": "основных",
|
||||
"dark": "Темная",
|
||||
"emptyAllPages": "Это рабочее пространство пусто. Создайте новую страницу, чтобы начать редактирование.",
|
||||
"emptyAllPagesClient": "Нажмите на <1>$t(New Page)</1> или <3>{{shortcut}}</3>, чтобы создать свою первую страницу.",
|
||||
"emptyFavorite": "Нажмите «Добавить в избранное», и страница появится здесь.",
|
||||
"emptyTrash": "Нажмите «Добавить в корзину», и страница появится здесь.",
|
||||
"is a Cloud Workspace": "это облачное рабочее пространство.",
|
||||
"is a Local Workspace": "это локальное рабочее пространство",
|
||||
"light": "Светлая",
|
||||
"login success": "Успешный вход в систему",
|
||||
"mobile device": "Похоже, что вы просматриваете страницу на мобильном устройстве.",
|
||||
"mobile device description": "Мы все еще работаем над поддержкой мобильных устройств и рекомендуем использовать настольное устройство.",
|
||||
"recommendBrowser": "Для оптимальной работы мы рекомендуем использовать браузер <1>Chrome</1>.",
|
||||
"restored": "{{title}} восстановлен",
|
||||
"still designed": "(Эта страница все еще находится в разработке.)",
|
||||
"upgradeBrowser": "Пожалуйста, обновите Chrome до последней версии для лучшего взаимодействия.",
|
||||
"will be moved to Trash": "{{title}} будет перемещен в Корзину",
|
||||
"will delete member": "удалит участника"
|
||||
"Workspace Type": "Тип рабочего пространства"
|
||||
}
|
||||
|
||||
@@ -1,322 +1,89 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - 页面不见了",
|
||||
"AFFiNE Cloud": "AFFiNE Cloud",
|
||||
"AFFiNE Community": "AFFiNE 社区",
|
||||
"About AFFiNE": "关于 AFFiNE",
|
||||
"Access level": "访问权限",
|
||||
"Add a subpage inside": "添加一个子页面",
|
||||
"Add Workspace": "导入工作区",
|
||||
"Add Workspace Hint": "请选择已有的数据库文件",
|
||||
"Add a subpage inside": "添加一个子页面",
|
||||
"Add to Favorites": "加入收藏",
|
||||
"Add to favorites": "加入收藏",
|
||||
"Added Successfully": "导入成功",
|
||||
"Added to Favorites": "已收藏",
|
||||
"All changes are saved locally": "所有改动已保存到本地",
|
||||
"All data has been stored in the cloud": "所有数据已被保存在云端。",
|
||||
"All pages": "全部页面",
|
||||
"App Version": "应用版本",
|
||||
"Appearance Settings": "外观设置",
|
||||
"Append to Daily Note": "附加到随笔",
|
||||
"Available Offline": "可供离线使用",
|
||||
"Back Home": "返回首页",
|
||||
"Back to Quick Search": "返回快速搜索",
|
||||
"Body text": "正文",
|
||||
"Bold": "粗体",
|
||||
"Cancel": "取消",
|
||||
"Change avatar hint": "新的头像将对所有人显示。",
|
||||
"Change workspace name hint": "新的名称将对所有人显示。",
|
||||
"Changelog description": "查看 AFFiNE 更新日志。",
|
||||
"Check Keyboard Shortcuts quickly": "快速查看快捷键",
|
||||
"Check Our Docs": "查看我们的文档",
|
||||
"Check for updates": "检查更新",
|
||||
"Check for updates automatically": "自动检查更新",
|
||||
"Choose your color scheme": "选择你的配色方案",
|
||||
"Client Border Style": "客户端边框样式",
|
||||
"Cloud Workspace": "云端工作区",
|
||||
"Cloud Workspace Description": "所有数据将被同步并保存在 AFFiNE 账户(<1>{{email}}</1>)中",
|
||||
"Code block": "代码块",
|
||||
"Collaboration": "协作",
|
||||
"Collaboration Description": "与其他成员协作需要 AFFiNE Cloud 服务支持。",
|
||||
"Collapse sidebar": "折叠侧边栏",
|
||||
"Collections": "精选",
|
||||
"Color Scheme": "配色方案",
|
||||
"Communities": "社区",
|
||||
"Confirm": "确认",
|
||||
"Connector": "链接",
|
||||
"Contact Us": "联系我们",
|
||||
"Contact with us": "联系我们",
|
||||
"Continue": "继续",
|
||||
"Continue with Google": "谷歌登录以继续",
|
||||
"Convert to ": "转换为",
|
||||
"Copied link to clipboard": "复制链接到剪贴板",
|
||||
"Copy": "复制",
|
||||
"Copy Link": "复制链接",
|
||||
"Create": "创建",
|
||||
"Create Or Import": "创建或导入",
|
||||
"Create Shared Link Description": "创建一个可以轻松分享给任何人的链接",
|
||||
"Create your own workspace": "创建属于你的工作区",
|
||||
"Created": "创建时间",
|
||||
"Created Successfully": "创建成功",
|
||||
"Created with": "创建于",
|
||||
"Curve Connector": "曲线连接",
|
||||
"Customize": "自定义",
|
||||
"Customize your AFFiNE Appearance": "定制您的 AFFiNE 外观",
|
||||
"DB_FILE_ALREADY_LOADED": "数据库文件已加载",
|
||||
"DB_FILE_INVALID": "无效的数据库文件",
|
||||
"DB_FILE_PATH_INVALID": "数据库文件路径无效",
|
||||
"Data sync mode": "数据同步模式",
|
||||
"Date": "日期",
|
||||
"Date Format": "日期格式",
|
||||
"Default Location": "默认位置",
|
||||
"Default db location hint": "默认情况下将保存到 {{location}}",
|
||||
"Delete": "删除",
|
||||
"Delete Member?": "删除成员?",
|
||||
"Delete Workspace": "删除工作空间",
|
||||
"Delete Workspace Description": "正在删除 <1>{{workspace}}</1> ,此操作无法撤销,所有内容将会丢失。",
|
||||
"Delete Workspace Description2": "正在删除<1>{{workspace}}</1> ,将同时删除本地和云端数据。此操作无法撤消,请谨慎操作。",
|
||||
"Delete Workspace Label Hint": "在删除此工作区后,您将永久删除所有内容,任何人都无法恢复此工作区的内容。",
|
||||
"Delete Workspace placeholder": "请输入”Delete“以确认",
|
||||
"Delete page?": "确定要删除页面?",
|
||||
"Delete permanently": "永久删除",
|
||||
"Disable": "禁用",
|
||||
"Disable Public Link": "禁用公共链接",
|
||||
"Disable Public Link ?": "禁用公共链接 ?",
|
||||
"Disable Public Link Description": "禁用此公共链接将阻止任何拥有此链接的人访问此页面。",
|
||||
"Disable Public Sharing": "禁用公开分享",
|
||||
"Discover what's new": "发现新动态",
|
||||
"Discover what's new!": "发现最近更新!",
|
||||
"Display Language": "显示语言",
|
||||
"Divider": "分割线",
|
||||
"Download all data": "下载所有数据",
|
||||
"Download core data": "下载核心数据",
|
||||
"Download data": "下载 {{CoreOrAll}} 数据",
|
||||
"Download data Description1": "此操作会在你的设备上占用更多空间。",
|
||||
"Download data Description2": "此操作会在你的设备上占用少许空间。",
|
||||
"Download updates automatically": "自动下载更新",
|
||||
"Edgeless": "无界",
|
||||
"Edit": "编辑",
|
||||
"Editor Version": "编辑器版本",
|
||||
"Elbowed Connector": "弯曲连接",
|
||||
"Enable": "启用",
|
||||
"Enable AFFiNE Cloud": "启用 AFFiNE Cloud 服务",
|
||||
"Enable AFFiNE Cloud Description": "如启用,此工作区中的数据将通过 AFFiNE Cloud 进行备份和同步。",
|
||||
"Enable cloud hint": "以下功能依赖于 AFFiNE Cloud。 所有数据都存储在当前设备上。 您可以为此工作区启用 AFFiNE Cloud,以保持数据与云同步。",
|
||||
"Enabled success": "启用成功",
|
||||
"Expand sidebar": "展开侧边栏",
|
||||
"Expand/Collapse Sidebar": "展开/折叠侧边栏",
|
||||
"Export": "导出",
|
||||
"Export AFFiNE backup file": "导出 AFFiNE 备份文件",
|
||||
"Export Description": "您可以导出整个工作区数据进行备份,导出的数据可以重新被导入。",
|
||||
"Export Shared Pages Description": "下载页面的静态副本以与他人分享。",
|
||||
"Export Workspace": "导出工作区 <1>{{workspace}}</1> 即将上线",
|
||||
"Export success": "导出成功",
|
||||
"Export to HTML": "导出为 HTML",
|
||||
"Export to Markdown": "导出为 Markdown",
|
||||
"Export to PDF": "导出为 PDF",
|
||||
"Export to PNG": "导出为 PNG",
|
||||
"FILE_ALREADY_EXISTS": "文件已存在",
|
||||
"Failed to publish workspace": "工作区发布失败",
|
||||
"Favorite": "收藏",
|
||||
"Favorite pages for easy access": "将页面添加到收藏夹以便轻松访问",
|
||||
"Favorited": "已收藏",
|
||||
"Favorites": "收藏夹",
|
||||
"Find 0 result": "找到 0 个结果",
|
||||
"Find results": "找到 {{number}} 个结果",
|
||||
"Force Sign Out": "强制登出",
|
||||
"Full width Layout": "全宽布局",
|
||||
"General": "常规",
|
||||
"Get in touch!": "保持联络!",
|
||||
"Get in touch! Join our communities": "保持联系!加入我们的社区。",
|
||||
"Get in touch! Join our communities.": "加入社区,保持联络!",
|
||||
"Go Back": "返回",
|
||||
"Go Forward": "前进",
|
||||
"Got it": "知道了",
|
||||
"Group": "分组",
|
||||
"Group as Database": "作为数据库分组",
|
||||
"Hand": "拖放",
|
||||
"Heading": "标题 {{number}}",
|
||||
"Help and Feedback": "帮助与反馈",
|
||||
"How is AFFiNE Alpha different?": "AFFiNE Alpha 有何不同?",
|
||||
"Image": "图像",
|
||||
"Import": "导入",
|
||||
"Increase indent": "增加缩进",
|
||||
"Info": "信息",
|
||||
"Info of legal": "法律信息",
|
||||
"Inline code": "行内代码",
|
||||
"Invite": "邀请",
|
||||
"Invite Members": "邀请成员",
|
||||
"Invite placeholder": "搜索邮件(仅支持Gmail)",
|
||||
"It takes up little space on your device": "它会在你的设备上占用少许空间。",
|
||||
"It takes up little space on your device.": "此操作会在你的设备上占用少许空间。",
|
||||
"It takes up more space on your device": "它会在你的设备上占用更多空间。",
|
||||
"It takes up more space on your device.": "此操作会在你的设备上占用更多空间。",
|
||||
"Italic": "斜体",
|
||||
"Joined Workspace": "加入工作区",
|
||||
"Jump to": "跳转到",
|
||||
"Keyboard Shortcuts": "键盘快捷键",
|
||||
"Leave": "退出",
|
||||
"Leave Workspace": "退出工作区",
|
||||
"Leave Workspace Description": "退出后,您将无法再访问此工作区的内容。",
|
||||
"Link": "超链接(选定文本)",
|
||||
"Loading": "加载中...",
|
||||
"Local Workspace": "本地工作区",
|
||||
"Local Workspace Description": "所有数据都本地存储在当前设备。您可以为此工作区启用 AFFiNE Cloud,以保证数据时刻被云端同步。",
|
||||
"Markdown Syntax": "Markdown 语法",
|
||||
"Member": "成员",
|
||||
"Member has been removed": "{{name}} 已被移除。",
|
||||
"Members": "成员",
|
||||
"Members hint": "在这里管理成员,通过电子邮件邀请新成员。",
|
||||
"Move Down": "下移",
|
||||
"Move Up": "上移",
|
||||
"Move folder": "移动文件夹",
|
||||
"Move folder hint": "选择新的存储位置",
|
||||
"Move folder success": "移动文件夹成功",
|
||||
"Move page to": "将此页面移动到...",
|
||||
"Move page to...": "将此页面移动...",
|
||||
"Move to": "移动到",
|
||||
"Move to Trash": "移到垃圾箱",
|
||||
"Moved to Trash": "已移到垃圾箱",
|
||||
"My Workspaces": "我的工作区",
|
||||
"Name Your Workspace": "给您的工作区命名",
|
||||
"NativeTitleBar": "原生标题栏",
|
||||
"Navigation Path": "导航路径",
|
||||
"New Keyword Page": "新建 “{{query}}“ 为标题的页面 ",
|
||||
"New Page": "新建页面",
|
||||
"New Workspace": "新建工作区",
|
||||
"New version is ready": "新版本已准备就绪",
|
||||
"No item": "无项目",
|
||||
"Non-Gmail": "不支持非 Gmail 邮箱",
|
||||
"None yet": "还没有",
|
||||
"Not now": "稍后再说",
|
||||
"Note": "笔记",
|
||||
"Official Website": "官网",
|
||||
"Open Workspace Settings": "打开工作区设置",
|
||||
"Open folder": "打开文件夹",
|
||||
"Open folder hint": "检查存储文件夹的位置。",
|
||||
"Open in new tab": "在新标签页打开",
|
||||
"Organize pages to build knowledge": "组织页面以建立知识库。",
|
||||
"Owner": "所有者",
|
||||
"Page": "页面",
|
||||
"Paper": "文档",
|
||||
"Pen": "笔",
|
||||
"Pending": "待定",
|
||||
"Permanently deleted": "已永久删除",
|
||||
"Pivots": "枢纽",
|
||||
"Placeholder of delete workspace": "请输入工作区名字以确认",
|
||||
"Please make sure you are online": "请确保你在线",
|
||||
"Privacy": "隐私",
|
||||
"Publish": "发布",
|
||||
"Publish to web": "发布到web",
|
||||
"Published Description": "当前工作区已被发布到 Web,所有人都可以通过链接来查看此工作区内容。",
|
||||
"Published hint": "访客可以通过提供的链接查看内容。",
|
||||
"Published to Web": "公开到互联网",
|
||||
"Publishing": "发布到 web 需要 AFFiNE Cloud 服务。",
|
||||
"Publishing Description": "发布到 web 后,所有人都可以通过链接查看此工作区的内容。",
|
||||
"Quick Search": "快速搜索",
|
||||
"Quick search": "快速搜索",
|
||||
"Quick search placeholder": "快速搜索...",
|
||||
"Quick search placeholder2": "在{{workspace}} 中搜索",
|
||||
"RFP": "页面可以从枢纽上被自由添加或删除,但仍然可以在“所有页面”中访问。",
|
||||
"Recent": "最近",
|
||||
"Redo": "重做",
|
||||
"Reduce indent": "减少缩进",
|
||||
"Remove from Pivots": "从枢纽中删除",
|
||||
"Remove from favorites": "从收藏中移除",
|
||||
"Remove from workspace": "从工作区移除",
|
||||
"Removed from Favorites": "已从收藏中移除",
|
||||
"Rename": "重命名",
|
||||
"Restart Install Client Update": "重启以安装更新",
|
||||
"Restore it": "恢复TA",
|
||||
"Retain cached cloud data": "保留缓存的云数据",
|
||||
"Retain local cached data": "保留本地缓存数据",
|
||||
"Save": "保存",
|
||||
"Saved then enable AFFiNE Cloud": "所有改动已保存在本地,点击启用 AFFiNE Cloud 服务。",
|
||||
"Select": "选择",
|
||||
"Select All": "全选",
|
||||
"Set a Workspace name": "设置工作区名字",
|
||||
"Set database location": "设置数据库位置",
|
||||
"Set up an AFFiNE account to sync data": "设置AFFiNE帐户以同步数据",
|
||||
"Settings": "设置",
|
||||
"Shape": "图形",
|
||||
"Share Menu Public Workspace Description1": "邀请其他人加入工作区或将其发布到网络。",
|
||||
"Share Menu Public Workspace Description2": "当前工作区已被发布到网络作为公共工作区。",
|
||||
"Share with link": "通过链接分享",
|
||||
"Shared Pages": "已分享页面",
|
||||
"Shared Pages Description": "公开分享页面需要 AFFiNE Cloud 服务。",
|
||||
"Shared Pages In Public Workspace Description": "整个工作区已在网络上发布,可以通过<1>工作区设置</1>进行编辑。",
|
||||
"Shortcuts": "快捷键",
|
||||
"Sidebar": "侧边栏",
|
||||
"Sign in": "登录 AFFiNE Cloud",
|
||||
"Sign in and Enable": "登录并启用",
|
||||
"Sign out": "登出 AFFiNE 云",
|
||||
"Sign out description": "登出会导致未同步的内容丢失",
|
||||
"Skip": "跳过",
|
||||
"Start Week On Monday": "一周从周一开始",
|
||||
"Stay logged out": "保持登出状态",
|
||||
"Sticky": "便利贴",
|
||||
"Stop publishing": "中止发布",
|
||||
"Storage": "储存",
|
||||
"Storage Folder": "存储文件夹",
|
||||
"Storage and Export": "储存与导出",
|
||||
"Straight Connector": "直线连接",
|
||||
"Strikethrough": "删除线",
|
||||
"Successfully deleted": "成功删除。",
|
||||
"Sync": "同步",
|
||||
"Sync across devices with AFFiNE Cloud": "使用 AFFiNE Cloud 在多个设备间进行同步",
|
||||
"Synced with AFFiNE Cloud": "AFFiNE Cloud 同步完成",
|
||||
"Terms of Use": "使用条款",
|
||||
"Text": "文本",
|
||||
"Theme": "主题",
|
||||
"Title": "标题",
|
||||
"Trash": "垃圾箱",
|
||||
"TrashButtonGroupDescription": "一旦删除,将无法撤消此操作。确定吗?",
|
||||
"TrashButtonGroupTitle": "永久删除",
|
||||
"UNKNOWN_ERROR": "未知错误",
|
||||
"Underline": "下划线",
|
||||
"Undo": "撤销",
|
||||
"Ungroup": "取消分组",
|
||||
"Unpublished hint": "发布到网络后,访问者可以通过提供的链接查看内容。",
|
||||
"Untitled": "未命名",
|
||||
"Update Available": "有可用的更新",
|
||||
"Update workspace name success": "成功更新工作区名称",
|
||||
"Updated": "更新时间",
|
||||
"Upload": "上传",
|
||||
"Use on current device only": "仅在当前设备上使用",
|
||||
"Users": "用户",
|
||||
"Version": "版本",
|
||||
"View Navigation Path": "查看导航路径",
|
||||
"Wait for Sync": "等待同步",
|
||||
"Window frame style": "视窗样式",
|
||||
"Workspace Avatar": "工作区头像",
|
||||
"Workspace Icon": "工作区图标",
|
||||
"Workspace Name": "工作区名称",
|
||||
"Workspace Not Found": "未找到工作区",
|
||||
"Workspace Owner": "工作区所有者",
|
||||
"Workspace Profile": "工作区配置文件",
|
||||
"Workspace Settings": "工作区设置",
|
||||
"Workspace Settings with name": "{{name}} 的设置",
|
||||
"Workspace Type": "工作区类型",
|
||||
"Workspace database storage description": "选择您要创建工作区的位置。工作区的数据默认情况下会保存在本地。",
|
||||
"Workspace description": "工作区是为个人和团队进行引用、创建和规划的虚拟空间。",
|
||||
"Workspace saved locally": "{{name}} 已保存在本地",
|
||||
"You cannot delete the last workspace": "您不能删除最后一个工作区",
|
||||
"Zoom in": "放大",
|
||||
"Zoom out": "缩小",
|
||||
"Zoom to 100%": "缩放至 100%",
|
||||
"Zoom to fit": "缩放至适当尺寸",
|
||||
"all": "全部",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.description": "定期自动检查更新。",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.title": "自动检查更新",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.description": "自动下载更新(到此设备)。",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.title": "自动下载更新",
|
||||
"com.affine.aboutAFFiNE.changelog.description": "查看 AFFiNE 更新日志。",
|
||||
"com.affine.aboutAFFiNE.changelog.title": "发现新动态",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.description": "新版本已准备就绪",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.title": "检查更新",
|
||||
"com.affine.aboutAFFiNE.community.title": "社区",
|
||||
"com.affine.aboutAFFiNE.contact.community": "AFFiNE 社区",
|
||||
"com.affine.aboutAFFiNE.contact.title": "联系我们",
|
||||
"com.affine.aboutAFFiNE.contact.website": "官网",
|
||||
"com.affine.aboutAFFiNE.legal.privacy": "隐私",
|
||||
"com.affine.aboutAFFiNE.legal.title": "法律信息",
|
||||
"com.affine.aboutAFFiNE.legal.tos": "使用条款",
|
||||
"com.affine.aboutAFFiNE.subtitle": "关于AFFiNE的资讯",
|
||||
"com.affine.aboutAFFiNE.title": "关于 AFFiNE",
|
||||
"com.affine.aboutAFFiNE.version.app": "应用版本",
|
||||
"com.affine.aboutAFFiNE.version.editor.title": "编辑器版本",
|
||||
"com.affine.aboutAFFiNE.version.title": "版本",
|
||||
"com.affine.appearanceSettings.clientBorder.description": "自定义客户端外观。",
|
||||
"com.affine.appearanceSettings.clientBorder.title": "客户端边框样式",
|
||||
"com.affine.appearanceSettings.color.description": "选择你的配色方案",
|
||||
"com.affine.appearanceSettings.color.title": "配色方案",
|
||||
"com.affine.appearanceSettings.date.title": "日期",
|
||||
"com.affine.appearanceSettings.dateFormat.description": "定制您的日期格式。",
|
||||
"com.affine.appearanceSettings.dateFormat.title": "日期格式",
|
||||
"com.affine.appearanceSettings.fullWidth.description": "页面内容的最大显示量。",
|
||||
"com.affine.appearanceSettings.fullWidth.title": "全宽布局",
|
||||
"com.affine.appearanceSettings.language.description": "选择界面语言。",
|
||||
"com.affine.appearanceSettings.language.title": "显示语言",
|
||||
"com.affine.appearanceSettings.noisyBackground.description": "在侧边栏使用噪点背景效果。",
|
||||
"com.affine.appearanceSettings.noisyBackground.title": "侧边栏的噪点背景",
|
||||
"com.affine.appearanceSettings.sidebar.title": "侧边栏",
|
||||
"com.affine.appearanceSettings.startWeek.description": "默认情况下,一周从星期日开始。",
|
||||
"com.affine.appearanceSettings.startWeek.title": "一周从周一开始",
|
||||
"com.affine.appearanceSettings.subtitle": "定制您的 AFFiNE 外观",
|
||||
"com.affine.appearanceSettings.theme.title": "主题",
|
||||
"com.affine.appearanceSettings.title": "外观设置",
|
||||
"com.affine.appearanceSettings.translucentUI.description": "在侧边栏使用半透明效果。",
|
||||
"com.affine.appearanceSettings.translucentUI.title": "侧边栏的透明效果",
|
||||
"com.affine.appearanceSettings.windowFrame.description": "自定义 Windows 客户端外观。",
|
||||
"com.affine.appearanceSettings.windowFrame.frameless": "无边框",
|
||||
"com.affine.appearanceSettings.windowFrame.NativeTitleBar": "原生标题栏",
|
||||
"com.affine.appearanceSettings.windowFrame.title": "视窗样式",
|
||||
"com.affine.appUpdater.downloading": "下载中",
|
||||
"com.affine.appUpdater.installUpdate": "重新启动以安装更新",
|
||||
"com.affine.appUpdater.openDownloadPage": "打开下载页面",
|
||||
"com.affine.appUpdater.updateAvailable": "有可用的更新",
|
||||
"com.affine.appUpdater.whatsNew": "发现最近更新!",
|
||||
"com.affine.backButton": "返回首页",
|
||||
"com.affine.banner.content": "此演示有限。<1>下载 AFFiNE 客户端</1>以获取最新功能和表现。",
|
||||
"com.affine.brand.affineCloud": "AFFiNE Cloud",
|
||||
"com.affine.cloudTempDisable.description": "我们正在升级 AFFiNE Cloud 服务,客户端暂时不可启用它。如果您希望随时了解进度并收到关于云服务的可用性通知,您可以填写我们的<1>表单</1>。",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNE Cloud 正在进行升级。",
|
||||
"com.affine.confirmModal.button.cancel": "取消",
|
||||
"com.affine.currentYear": "今年",
|
||||
"com.affine.deleteLeaveWorkspace.description": "从此设备中删除工作区,并可选择删除所有数据。",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "退出工作区",
|
||||
"com.affine.draw_with_a_blank_whiteboard": "在空白白板画画",
|
||||
"com.affine.earlier": "更早",
|
||||
"com.affine.edgelessMode": "无界模式",
|
||||
"com.affine.editCollection.button.cancel": "取消",
|
||||
"com.affine.editCollection.button.create": "创建",
|
||||
"com.affine.editCollection.save": "保存",
|
||||
"com.affine.emptyDesc": "这里还没有页面",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "取消",
|
||||
"com.affine.export.error.message": "请稍后再试。",
|
||||
"com.affine.export.error.title": "未知错误引发导出失败",
|
||||
"com.affine.export.success.message": "请打开下载文件夹以查看。",
|
||||
"com.affine.export.success.title": "导出成功",
|
||||
"com.affine.favoritePageOperation.add": "加入收藏",
|
||||
"com.affine.favoritePageOperation.remove": "从收藏中移除",
|
||||
"com.affine.filter": "筛选",
|
||||
"com.affine.filter.after": "晚于",
|
||||
"com.affine.filter.before": "早于",
|
||||
@@ -325,73 +92,323 @@
|
||||
"com.affine.filter.is-favourited": "已收藏",
|
||||
"com.affine.filter.save-view": "保存视图",
|
||||
"com.affine.filter.true": "是",
|
||||
"com.affine.helpIsland.contactUs": "联系我们",
|
||||
"com.affine.helpIsland.gettingStarted": "开始使用",
|
||||
"com.affine.helpIsland.helpAndFeedback": "帮助与反馈",
|
||||
"com.affine.import_file": "支持 Markdown/Notion",
|
||||
"com.affine.inviteModal.button.cancel": "取消",
|
||||
"com.affine.keyboardShortcuts.appendDailyNote": "附加到随笔",
|
||||
"com.affine.keyboardShortcuts.bodyText": "正文",
|
||||
"com.affine.keyboardShortcuts.bold": "粗体",
|
||||
"com.affine.keyboardShortcuts.cancel": "取消",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "代码块",
|
||||
"com.affine.keyboardShortcuts.curveConnector": "曲线连接",
|
||||
"com.affine.keyboardShortcuts.divider": "分割线",
|
||||
"com.affine.keyboardShortcuts.elbowedConnector": "弯曲连接",
|
||||
"com.affine.keyboardShortcuts.expandOrCollapseSidebar": "展开/折叠侧边栏",
|
||||
"com.affine.keyboardShortcuts.goBack": "返回",
|
||||
"com.affine.keyboardShortcuts.goForward": "前进",
|
||||
"com.affine.keyboardShortcuts.group": "分组",
|
||||
"com.affine.keyboardShortcuts.groupDatabase": "作为数据库分组",
|
||||
"com.affine.keyboardShortcuts.hand": "拖放",
|
||||
"com.affine.keyboardShortcuts.heading": "标题 {{number}}",
|
||||
"com.affine.keyboardShortcuts.image": "图像",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "增加缩进",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "行内代码",
|
||||
"com.affine.keyboardShortcuts.italic": "斜体",
|
||||
"com.affine.keyboardShortcuts.link": "超链接(选定文本)",
|
||||
"com.affine.keyboardShortcuts.moveDown": "下移",
|
||||
"com.affine.keyboardShortcuts.moveUp": "上移",
|
||||
"com.affine.keyboardShortcuts.newPage": "新建页面",
|
||||
"com.affine.keyboardShortcuts.note": "笔记",
|
||||
"com.affine.keyboardShortcuts.pen": "笔",
|
||||
"com.affine.keyboardShortcuts.quickSearch": "快速搜索",
|
||||
"com.affine.keyboardShortcuts.redo": "重做",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "减少缩进",
|
||||
"com.affine.keyboardShortcuts.select": "选择",
|
||||
"com.affine.keyboardShortcuts.selectAll": "全选",
|
||||
"com.affine.keyboardShortcuts.shape": "图形",
|
||||
"com.affine.keyboardShortcuts.straightConnector": "直线连接",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "删除线",
|
||||
"com.affine.keyboardShortcuts.subtitle": "快速查看快捷键",
|
||||
"com.affine.keyboardShortcuts.text": "文本",
|
||||
"com.affine.keyboardShortcuts.title": "键盘快捷键",
|
||||
"com.affine.keyboardShortcuts.underline": "下划线",
|
||||
"com.affine.keyboardShortcuts.undo": "撤销",
|
||||
"com.affine.keyboardShortcuts.unGroup": "取消分组",
|
||||
"com.affine.keyboardShortcuts.zoomIn": "放大",
|
||||
"com.affine.keyboardShortcuts.zoomOut": "缩小",
|
||||
"com.affine.keyboardShortcuts.zoomTo100": "缩放至 100%",
|
||||
"com.affine.keyboardShortcuts.zoomToFit": "缩放至适当尺寸",
|
||||
"com.affine.last30Days": "过去 30 天",
|
||||
"com.affine.last7Days": "过去 7 天",
|
||||
"com.affine.lastMonth": "上个月",
|
||||
"com.affine.lastWeek": "上周",
|
||||
"com.affine.lastYear": "去年",
|
||||
"com.affine.moveToTrash.confirmModal.description": "{{title}} 将被移到垃圾箱",
|
||||
"com.affine.moveToTrash.confirmModal.title": "确定要删除页面?",
|
||||
"com.affine.moveToTrash.title": "移到垃圾箱",
|
||||
"com.affine.nameWorkspace.button.cancel": "取消",
|
||||
"com.affine.nameWorkspace.button.create": "创建",
|
||||
"com.affine.nameWorkspace.description": "工作区是为个人和团队进行引用、创建和规划的虚拟空间。",
|
||||
"com.affine.nameWorkspace.placeholder": "设置工作区名字",
|
||||
"com.affine.nameWorkspace.title": "给您的工作区命名",
|
||||
"com.affine.new_edgeless": "新的无边页面",
|
||||
"com.affine.new_import": "导入",
|
||||
"com.affine.notFoundPage.title": "404 - 页面不见了",
|
||||
"com.affine.onboarding.title1": "白板和文档的超融合",
|
||||
"com.affine.onboarding.title2": "直观且强大的块级编辑",
|
||||
"com.affine.onboarding.videoDescription1": "在页面模式和白板模式之间轻松切换,你可以在页面模式下创建结构化文档,并在白板模式下自由表达创意思想。",
|
||||
"com.affine.onboarding.videoDescription2": "轻松创建结构化文档,使用模块化界面将文本块、图像和其他内容拖放到页面中。",
|
||||
"com.affine.pageMode": "页面模式",
|
||||
"com.affine.settings.about.message": "关于AFFiNE的资讯",
|
||||
"com.affine.settings.about.update.check.message": "定期自动检查更新。",
|
||||
"com.affine.settings.about.update.download.message": "自动下载更新(到此设备)。",
|
||||
"com.affine.openPageOperation.newTab": "在新标签页打开",
|
||||
"com.affine.pageMode.all": "全部",
|
||||
"com.affine.pageMode.edgeless": "无界",
|
||||
"com.affine.pageMode.page": "页面",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "取消",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "禁用",
|
||||
"com.affine.publicLinkDisableModal.description": "禁用此公共链接将阻止任何拥有此链接的人访问此页面。",
|
||||
"com.affine.publicLinkDisableModal.title": "禁用公共链接 ?",
|
||||
"com.affine.rootAppSidebar.collections": "精选",
|
||||
"com.affine.rootAppSidebar.favorites": "收藏夹",
|
||||
"com.affine.rootAppSidebar.others": "其他",
|
||||
"com.affine.setDBLocation.button.customize": "自定义",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "默认位置",
|
||||
"com.affine.setDBLocation.description": "选择您要创建工作区的位置。工作区的数据默认情况下会保存在本地。",
|
||||
"com.affine.setDBLocation.title": "设置数据库位置",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "默认情况下将保存到 {{location}}",
|
||||
"com.affine.setSyncingMode.button.continue": "继续",
|
||||
"com.affine.setSyncingMode.cloud": "使用 AFFiNE Cloud 在多个设备间进行同步",
|
||||
"com.affine.setSyncingMode.deviceOnly": "仅在当前设备上使用",
|
||||
"com.affine.setSyncingMode.title.added": "导入成功",
|
||||
"com.affine.setSyncingMode.title.created": "创建成功",
|
||||
"com.affine.settings.appearance": "外观",
|
||||
"com.affine.settings.appearance.border-style-description": "自定义客户端外观。",
|
||||
"com.affine.settings.appearance.date-format-description": "定制您的日期格式。",
|
||||
"com.affine.settings.appearance.full-width-description": "页面内容的最大显示量。",
|
||||
"com.affine.settings.appearance.language-description": "选择界面语言。",
|
||||
"com.affine.settings.appearance.start-week-description": "默认情况下,一周从星期日开始。",
|
||||
"com.affine.settings.appearance.window-frame-description": "自定义 Windows 客户端外观。",
|
||||
"com.affine.settings.auto-check-description": "如果启用,它将定期自动检查新版本。",
|
||||
"com.affine.settings.auto-download-description": "如果启用,新版本将自动下载到当前设备。",
|
||||
"com.affine.settings.member-tooltip": "启用 AFFiNE Cloud 以与他人协作",
|
||||
"com.affine.settings.noise-style": "侧边栏的噪点背景",
|
||||
"com.affine.settings.noise-style-description": "在侧边栏使用噪点背景效果。",
|
||||
"com.affine.settings.remove-workspace": "删除工作区",
|
||||
"com.affine.settings.remove-workspace-description": "从此设备中删除工作区,并可选择删除所有数据。",
|
||||
"com.affine.settings.suggestion": "需要更多定制选项?您可以在社区中向我们推荐它们。",
|
||||
"com.affine.settings.translucent-style": "侧边栏的透明效果",
|
||||
"com.affine.settings.translucent-style-description": "在侧边栏使用半透明效果。",
|
||||
"com.affine.settings.workspace": "工作区",
|
||||
"com.affine.settings.workspace.description": "您可以在此处自定义您的工作区。",
|
||||
"com.affine.settings.workspace.not-owner": "只有所有者才能编辑工作区头像和名称。更改将向所有人显示。",
|
||||
"com.affine.settings.workspace.publish-tooltip": "启用 AFFiNE Cloud 以发布此 Workspace",
|
||||
"com.affine.settings.workspace.storage.tip": "点击可移动存储位置。",
|
||||
"com.affine.settingSidebar.settings.general": "常规",
|
||||
"com.affine.settingSidebar.settings.workspace": "工作区",
|
||||
"com.affine.settingSidebar.title": "设置",
|
||||
"com.affine.shortcutsTitle.edgeless": "无界",
|
||||
"com.affine.shortcutsTitle.general": "常规",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Markdown 语法",
|
||||
"com.affine.shortcutsTitle.page": "页面",
|
||||
"com.affine.sidebarSwitch.collapse": "折叠侧边栏",
|
||||
"com.affine.sidebarSwitch.expand": "展开侧边栏",
|
||||
"com.affine.themeSettings.dark": "深色",
|
||||
"com.affine.themeSettings.light": "浅色",
|
||||
"com.affine.themeSettings.system": "跟随系统",
|
||||
"com.affine.toastMessage.addedFavorites": "已收藏",
|
||||
"com.affine.toastMessage.edgelessMode": "无界模式",
|
||||
"com.affine.toastMessage.movedTrash": "已移到垃圾箱",
|
||||
"com.affine.toastMessage.pageMode": "页面模式",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "已永久删除",
|
||||
"com.affine.toastMessage.removedFavorites": "已从收藏中移除",
|
||||
"com.affine.toastMessage.restored": "{{title}} 已恢复",
|
||||
"com.affine.toastMessage.successfullyDeleted": "成功删除。",
|
||||
"com.affine.today": "今天",
|
||||
"com.affine.updater.downloading": "下载中",
|
||||
"com.affine.updater.open-download-page": "打开下载页面",
|
||||
"com.affine.updater.restart-to-update": "重新启动以安装更新",
|
||||
"com.affine.updater.update-available": "有可用的更新",
|
||||
"com.affine.trashOperation.delete": "删除",
|
||||
"com.affine.trashOperation.delete.description": "一旦删除,将无法撤消此操作。确定吗?",
|
||||
"com.affine.trashOperation.delete.title": "永久删除",
|
||||
"com.affine.trashOperation.deletePermanently": "永久删除",
|
||||
"com.affine.trashOperation.restoreIt": "恢复TA",
|
||||
"com.affine.workspace.cannot-delete": "您无法删除最后一个工作区",
|
||||
"com.affine.workspaceDelete.button.cancel": "取消",
|
||||
"com.affine.workspaceDelete.button.delete": "删除",
|
||||
"com.affine.workspaceDelete.description": "正在删除 <1>{{workspace}}</1> ,此操作无法撤销,所有内容将会丢失。",
|
||||
"com.affine.workspaceDelete.description2": "正在删除<1>{{workspace}}</1> ,将同时删除本地和云端数据。此操作无法撤消,请谨慎操作。",
|
||||
"com.affine.workspaceDelete.placeholder": "请输入工作区名字以确认",
|
||||
"com.affine.workspaceDelete.title": "删除工作空间",
|
||||
"com.affine.workspaceLeave.button.cancel": "取消",
|
||||
"com.affine.workspaceLeave.button.leave": "退出",
|
||||
"com.affine.workspaceLeave.description": "退出后,您将无法再访问此工作区的内容。",
|
||||
"com.affine.workspaceSubPath.all": "全部页面",
|
||||
"com.affine.workspaceSubPath.trash": "垃圾箱",
|
||||
"com.affine.workspaceType.cloud": "云端工作区",
|
||||
"com.affine.workspaceType.joined": "加入工作区",
|
||||
"com.affine.workspaceType.local": "本地工作区",
|
||||
"com.affine.workspaceType.offline": "可供离线使用",
|
||||
"com.affine.write_with_a_blank_page": "在空白页面书写",
|
||||
"com.affine.yesterday": "昨天",
|
||||
"Confirm": "确认",
|
||||
"Connector": "链接",
|
||||
"Continue with Google": "谷歌登录以继续",
|
||||
"Convert to ": "转换为",
|
||||
"Copied link to clipboard": "复制链接到剪贴板",
|
||||
"Copy": "复制",
|
||||
"Copy Link": "复制链接",
|
||||
"core": "核心",
|
||||
"dark": "深色",
|
||||
"Create": "创建",
|
||||
"Create Or Import": "创建或导入",
|
||||
"Create Shared Link Description": "创建一个可以轻松分享给任何人的链接",
|
||||
"Create your own workspace": "创建属于你的工作区",
|
||||
"Created": "创建时间",
|
||||
"Created with": "创建于",
|
||||
"Data sync mode": "数据同步模式",
|
||||
"DB_FILE_ALREADY_LOADED": "数据库文件已加载",
|
||||
"DB_FILE_INVALID": "无效的数据库文件",
|
||||
"DB_FILE_PATH_INVALID": "数据库文件路径无效",
|
||||
"Delete": "删除",
|
||||
"Delete Member?": "删除成员?",
|
||||
"Delete Workspace Label Hint": "在删除此工作区后,您将永久删除所有内容,任何人都无法恢复此工作区的内容。",
|
||||
"Delete Workspace placeholder": "请输入”Delete“以确认",
|
||||
"Disable": "禁用",
|
||||
"Disable Public Link": "禁用公共链接",
|
||||
"Disable Public Sharing": "禁用公开分享",
|
||||
"Download all data": "下载所有数据",
|
||||
"Download core data": "下载核心数据",
|
||||
"Download data": "下载 {{CoreOrAll}} 数据",
|
||||
"Download data Description1": "此操作会在你的设备上占用更多空间。",
|
||||
"Download data Description2": "此操作会在你的设备上占用少许空间。",
|
||||
"Edit": "编辑",
|
||||
"emptyAllPages": "此工作区为空。创建新页面并开始编辑。",
|
||||
"emptyAllPagesClient": "点击 <1>$t(New Page)</1> 按钮或按 <3>{{shortcut}}</3> 以创建您的第一个页面。",
|
||||
"emptyFavorite": "单击“添加到收藏夹”,页面将显示在此处。",
|
||||
"emptySharedPages": "共享的页面将显示在此处。",
|
||||
"emptyTrash": "单击“添加到垃圾箱”,页面将显示在此处。",
|
||||
"frameless": "无边框",
|
||||
"Enable": "启用",
|
||||
"Enable AFFiNE Cloud": "启用 AFFiNE Cloud 服务",
|
||||
"Enable AFFiNE Cloud Description": "如启用,此工作区中的数据将通过 AFFiNE Cloud 进行备份和同步。",
|
||||
"Enable cloud hint": "以下功能依赖于 AFFiNE Cloud。 所有数据都存储在当前设备上。 您可以为此工作区启用 AFFiNE Cloud,以保持数据与云同步。",
|
||||
"Enabled success": "启用成功",
|
||||
"Export": "导出",
|
||||
"Export AFFiNE backup file": "导出 AFFiNE 备份文件",
|
||||
"Export Description": "您可以导出整个工作区数据进行备份,导出的数据可以重新被导入。",
|
||||
"Export Shared Pages Description": "下载页面的静态副本以与他人分享。",
|
||||
"Export success": "导出成功",
|
||||
"Export to HTML": "导出为 HTML",
|
||||
"Export to Markdown": "导出为 Markdown",
|
||||
"Export to PDF": "导出为 PDF",
|
||||
"Export to PNG": "导出为 PNG",
|
||||
"Export Workspace": "导出工作区 <1>{{workspace}}</1> 即将上线",
|
||||
"Failed to publish workspace": "工作区发布失败",
|
||||
"Favorite": "收藏",
|
||||
"Favorite pages for easy access": "将页面添加到收藏夹以便轻松访问",
|
||||
"Favorited": "已收藏",
|
||||
"FILE_ALREADY_EXISTS": "文件已存在",
|
||||
"Find 0 result": "找到 0 个结果",
|
||||
"Find results": "找到 {{number}} 个结果",
|
||||
"Force Sign Out": "强制登出",
|
||||
"Get in touch!": "保持联络!",
|
||||
"Get in touch! Join our communities": "保持联系!加入我们的社区。",
|
||||
"Get in touch! Join our communities.": "加入社区,保持联络!",
|
||||
"Got it": "知道了",
|
||||
"How is AFFiNE Alpha different?": "AFFiNE Alpha 有何不同?",
|
||||
"Import": "导入",
|
||||
"Info": "信息",
|
||||
"Invite": "邀请",
|
||||
"Invite Members": "邀请成员",
|
||||
"Invite placeholder": "搜索邮件(仅支持Gmail)",
|
||||
"is a Cloud Workspace": "是云端工作区",
|
||||
"is a Local Workspace": "是本地工作区",
|
||||
"light": "浅色",
|
||||
"It takes up little space on your device": "它会在你的设备上占用少许空间。",
|
||||
"It takes up little space on your device.": "此操作会在你的设备上占用少许空间。",
|
||||
"It takes up more space on your device": "它会在你的设备上占用更多空间。",
|
||||
"It takes up more space on your device.": "此操作会在你的设备上占用更多空间。",
|
||||
"Jump to": "跳转到",
|
||||
"Loading": "加载中...",
|
||||
"Local Workspace Description": "所有数据都本地存储在当前设备。您可以为此工作区启用 AFFiNE Cloud,以保证数据时刻被云端同步。",
|
||||
"login success": "登录成功",
|
||||
"Member": "成员",
|
||||
"Member has been removed": "{{name}} 已被移除。",
|
||||
"Members": "成员",
|
||||
"Members hint": "在这里管理成员,通过电子邮件邀请新成员。",
|
||||
"mobile device": "貌似你正在移动设备上浏览。",
|
||||
"mobile device description": "我们仍在进行移动端的支持工作,建议使用桌面设备。",
|
||||
"others": "其他",
|
||||
"Move folder": "移动文件夹",
|
||||
"Move folder hint": "选择新的存储位置",
|
||||
"Move folder success": "移动文件夹成功",
|
||||
"Move page to": "将此页面移动到...",
|
||||
"Move page to...": "将此页面移动...",
|
||||
"Move to": "移动到",
|
||||
"Moved to Trash": "已移到垃圾箱",
|
||||
"My Workspaces": "我的工作区",
|
||||
"Navigation Path": "导航路径",
|
||||
"New Keyword Page": "新建 “{{query}}“ 为标题的页面 ",
|
||||
"New Page": "新建页面",
|
||||
"New Workspace": "新建工作区",
|
||||
"No item": "无项目",
|
||||
"Non-Gmail": "不支持非 Gmail 邮箱",
|
||||
"None yet": "还没有",
|
||||
"Not now": "稍后再说",
|
||||
"Open folder": "打开文件夹",
|
||||
"Open folder hint": "检查存储文件夹的位置。",
|
||||
"Open Workspace Settings": "打开工作区设置",
|
||||
"Organize pages to build knowledge": "组织页面以建立知识库。",
|
||||
"Owner": "所有者",
|
||||
"Paper": "文档",
|
||||
"Pending": "待定",
|
||||
"Pivots": "枢纽",
|
||||
"Please make sure you are online": "请确保你在线",
|
||||
"Publish": "发布",
|
||||
"Publish to web": "发布到web",
|
||||
"Published Description": "当前工作区已被发布到 Web,所有人都可以通过链接来查看此工作区内容。",
|
||||
"Published hint": "访客可以通过提供的链接查看内容。",
|
||||
"Published to Web": "公开到互联网",
|
||||
"Publishing": "发布到 web 需要 AFFiNE Cloud 服务。",
|
||||
"Publishing Description": "发布到 web 后,所有人都可以通过链接查看此工作区的内容。",
|
||||
"Quick search": "快速搜索",
|
||||
"Quick search placeholder": "快速搜索...",
|
||||
"Quick search placeholder2": "在{{workspace}} 中搜索",
|
||||
"Recent": "最近",
|
||||
"recommendBrowser": "建议使用 <1>Chrome</1> 浏览器以获得最佳体验。",
|
||||
"restored": "{{title}} 已恢复",
|
||||
"Remove from Pivots": "从枢纽中删除",
|
||||
"Remove from workspace": "从工作区移除",
|
||||
"Rename": "重命名",
|
||||
"Restart Install Client Update": "重启以安装更新",
|
||||
"Retain cached cloud data": "保留缓存的云数据",
|
||||
"Retain local cached data": "保留本地缓存数据",
|
||||
"RFP": "页面可以从枢纽上被自由添加或删除,但仍然可以在“所有页面”中访问。",
|
||||
"Saved then enable AFFiNE Cloud": "所有改动已保存在本地,点击启用 AFFiNE Cloud 服务。",
|
||||
"Set up an AFFiNE account to sync data": "设置AFFiNE帐户以同步数据",
|
||||
"Share Menu Public Workspace Description1": "邀请其他人加入工作区或将其发布到网络。",
|
||||
"Share Menu Public Workspace Description2": "当前工作区已被发布到网络作为公共工作区。",
|
||||
"Share with link": "通过链接分享",
|
||||
"Shared Pages": "已分享页面",
|
||||
"Shared Pages Description": "公开分享页面需要 AFFiNE Cloud 服务。",
|
||||
"Shared Pages In Public Workspace Description": "整个工作区已在网络上发布,可以通过<1>工作区设置</1>进行编辑。",
|
||||
"Shortcuts": "快捷键",
|
||||
"Sign in": "登录 AFFiNE Cloud",
|
||||
"Sign in and Enable": "登录并启用",
|
||||
"Sign out": "登出 AFFiNE 云",
|
||||
"Sign out description": "登出会导致未同步的内容丢失",
|
||||
"Skip": "跳过",
|
||||
"Stay logged out": "保持登出状态",
|
||||
"Sticky": "便利贴",
|
||||
"still designed": "(此页面仍在设计中。)",
|
||||
"system": "跟随系统",
|
||||
"Stop publishing": "中止发布",
|
||||
"Storage": "储存",
|
||||
"Storage and Export": "储存与导出",
|
||||
"Storage Folder": "存储文件夹",
|
||||
"Sync": "同步",
|
||||
"Synced with AFFiNE Cloud": "AFFiNE Cloud 同步完成",
|
||||
"Title": "标题",
|
||||
"UNKNOWN_ERROR": "未知错误",
|
||||
"Unpublished hint": "发布到网络后,访问者可以通过提供的链接查看内容。",
|
||||
"Untitled": "未命名",
|
||||
"Update Available": "有可用的更新",
|
||||
"Update workspace name success": "成功更新工作区名称",
|
||||
"Updated": "更新时间",
|
||||
"upgradeBrowser": "请升级到最新版本的 Chrome 以获得最佳体验。",
|
||||
"will be moved to Trash": "{{title}} 将被移到垃圾箱",
|
||||
"will delete member": "将删除成员"
|
||||
"Upload": "上传",
|
||||
"Users": "用户",
|
||||
"View Navigation Path": "查看导航路径",
|
||||
"Wait for Sync": "等待同步",
|
||||
"will delete member": "将删除成员",
|
||||
"Workspace Avatar": "工作区头像",
|
||||
"Workspace Icon": "工作区图标",
|
||||
"Workspace Name": "工作区名称",
|
||||
"Workspace Not Found": "未找到工作区",
|
||||
"Workspace Owner": "工作区所有者",
|
||||
"Workspace Profile": "工作区配置文件",
|
||||
"Workspace saved locally": "{{name}} 已保存在本地",
|
||||
"Workspace Settings": "工作区设置",
|
||||
"Workspace Settings with name": "{{name}} 的设置",
|
||||
"Workspace Type": "工作区类型",
|
||||
"You cannot delete the last workspace": "您不能删除最后一个工作区"
|
||||
}
|
||||
|
||||
@@ -1,338 +1,99 @@
|
||||
{
|
||||
"404 - Page Not Found": "404 - 搵唔到搜尋的網頁",
|
||||
"AFFiNE Cloud": "\nAFFiNE Cloud",
|
||||
"AFFiNE Community": "AFFiNE 社群",
|
||||
"About AFFiNE": "關於 AFFiNE",
|
||||
"Access level": "訪問權限",
|
||||
"Add a subpage inside": "建立子頁面",
|
||||
"Add Workspace": "建立 Workspace",
|
||||
"Add Workspace Hint": "選擇已有數據庫檔",
|
||||
"Add a subpage inside": "建立子頁面",
|
||||
"Add to Favorites": "收藏",
|
||||
"Add to favorites": "加入收藏",
|
||||
"Added Successfully": "匯入成功",
|
||||
"Added to Favorites": "已收藏",
|
||||
"All changes are saved locally": "所有修訂已儲存在本機",
|
||||
"All data has been stored in the cloud": "所有修訂已儲存在雲端",
|
||||
"All pages": "所有頁面",
|
||||
"App Version": "App 版本",
|
||||
"Appearance Settings": "外觀設定",
|
||||
"Append to Daily Note": "附加到隨筆",
|
||||
"Available Offline": "離線時可用",
|
||||
"Back Home": "回到主頁",
|
||||
"Back to Quick Search": "回到快速搜尋",
|
||||
"Back to all": "回到全部",
|
||||
"Body text": "正文",
|
||||
"Bold": "粗體",
|
||||
"Cancel": "取消",
|
||||
"Change avatar hint": "新頭像將公開。",
|
||||
"Change workspace name hint": "新名稱將公開。",
|
||||
"Changelog description": "查看 AFFiNE 更新日誌。",
|
||||
"Check Keyboard Shortcuts quickly": "快速睇返快捷鍵",
|
||||
"Check Our Docs": "查閱我哋嘅文檔",
|
||||
"Check for updates": "檢查更新",
|
||||
"Check for updates automatically": "自動檢查更新",
|
||||
"Choose your color scheme": "選擇你的配色",
|
||||
"Choose your font style": "選擇你的字體風格",
|
||||
"Client Border Style": "用戶端邊框樣式",
|
||||
"Cloud Workspace": "\nCloud Workspace",
|
||||
"Cloud Workspace Description": "全部數據都會保存並透過AFFINE帳戶同步 <1>{{email}}</1>",
|
||||
"Code block": "代碼塊",
|
||||
"Collaboration": "協作",
|
||||
"Collaboration Description": "同其他成員協作需要 AFFiNE Cloud 服務。",
|
||||
"Collapse sidebar": "收起側欄",
|
||||
"Collections": "收藏集",
|
||||
"Color Scheme": "配色",
|
||||
"Communities": "社群",
|
||||
"Confirm": "確認",
|
||||
"Connector": "連接",
|
||||
"Contact Us": "聯絡我哋",
|
||||
"Contact with us": "聯絡我哋",
|
||||
"Continue": "繼續",
|
||||
"Continue with Google": "以 Google 登入",
|
||||
"Convert to ": "轉換為",
|
||||
"Copied link to clipboard": "複製連結到剪貼簿",
|
||||
"Copy": "複製",
|
||||
"Copy Link": "複製連結",
|
||||
"Create": "建立",
|
||||
"Create Or Import": "建立或匯入",
|
||||
"Create Shared Link Description": "建立一個可共享連結。",
|
||||
"Create your own workspace": "建立你的 workspace",
|
||||
"Created": "建立時間",
|
||||
"Created Successfully": "建立成功",
|
||||
"Created with": "建立於",
|
||||
"Curve Connector": "曲線連接",
|
||||
"Customize": "定製",
|
||||
"Customize your AFFiNE Appearance": "訂製你的 AFFiNE 外觀",
|
||||
"DB_FILE_ALREADY_LOADED": "數據庫已載入",
|
||||
"DB_FILE_INVALID": "無效數據庫文檔",
|
||||
"DB_FILE_MIGRATION_FAILED": "數據庫併入失敗",
|
||||
"DB_FILE_PATH_INVALID": "數據庫路徑無效",
|
||||
"Data sync mode": "數據同步模式",
|
||||
"Date": "日期",
|
||||
"Date Format": "日期格式",
|
||||
"Default Location": "預設位置",
|
||||
"Default db location hint": "預設下将存儲到 {{location}}",
|
||||
"Delete": "刪除",
|
||||
"Delete Member?": "刪除成員?",
|
||||
"Delete Workspace": "刪除 Workspace",
|
||||
"Delete Workspace Description": "刪除 <1>{{workspace}}</1> ,此步驟無法重做,全部內容將丟失。",
|
||||
"Delete Workspace Description2": "刪除<1>{{workspace}}</1> ,將同時刪除本機同雲端資料。此步驟無法重做,請慎重考慮。",
|
||||
"Delete Workspace Label Hint": "刪除此 Workspace 後,所有內容將永久清除,任何人都無法恢復。",
|
||||
"Delete Workspace placeholder": "鍵入 “Delete” 以確認",
|
||||
"Delete page?": "確認刪除頁面?",
|
||||
"Delete permanently": "永久刪除",
|
||||
"Disable": "停用",
|
||||
"Disable Public Link": "停用公開連結",
|
||||
"Disable Public Link ?": "確認停用公開連結?",
|
||||
"Disable Public Link Description": "停用此公開連結,將阻止擁有連結者登入此頁面。",
|
||||
"Disable Public Sharing": "停用公開分享",
|
||||
"Discover what's new": "探索 What's new",
|
||||
"Discover what's new!": "探索 What's new!",
|
||||
"Display Language": "外觀語言",
|
||||
"Divider": "分割線",
|
||||
"Download all data": "下載全部數據",
|
||||
"Download core data": "下載核心數據",
|
||||
"Download data": "下載 {{CoreOrAll}} 數據",
|
||||
"Download data Description1": "這將佔用更多存儲空間。",
|
||||
"Download data Description2": "這只佔用較小存儲空間。",
|
||||
"Download updates automatically": "自動下載更新",
|
||||
"Edgeless": "無界",
|
||||
"Edit": "編輯",
|
||||
"Edit Filter": "編輯篩選器",
|
||||
"Editor Version": "編輯器版本",
|
||||
"Elbowed Connector": "彎曲連接器",
|
||||
"Enable": "啟用",
|
||||
"Enable AFFiNE Cloud": "啟用 AFFiNE Cloud",
|
||||
"Enable AFFiNE Cloud Description": "啓用後 Workspace 數據將透過 AFFiNE Cloud 備份及同步。",
|
||||
"Enable cloud hint": "以下功能依賴於 AFFiNE Cloud。 所有數據都存儲在當前設備上。 您可以為此 Workspace 啓用 AFFiNE Cloud,以保持數據與雲同步。",
|
||||
"Enabled success": "啟用成功",
|
||||
"Exclude from filter": "從篩選器中排除",
|
||||
"Expand sidebar": "展開側欄",
|
||||
"Expand/Collapse Sidebar": "展開/收起邊欄",
|
||||
"Export": "匯出",
|
||||
"Export AFFiNE backup file": "匯出 AFFiNE 備份檔",
|
||||
"Export Description": "您可以匯出整個 Workspace 數據進行備份,匯出的數據亦可重新匯入。",
|
||||
"Export Shared Pages Description": "下載此頁的靜態副本以與他人共享。",
|
||||
"Export Workspace": "匯出 Workspace <1>{{workspace}}</1> 即將推出",
|
||||
"Export success": "匯出成功",
|
||||
"Export to HTML": "匯出為 HTML",
|
||||
"Export to Markdown": "匯出為 Markdown",
|
||||
"Export to PDF": "匯出為 PDF",
|
||||
"Export to PNG": "匯出為 PNG",
|
||||
"FILE_ALREADY_EXISTS": "檔已存在",
|
||||
"Failed to publish workspace": "Workspace 發佈失敗",
|
||||
"Favorite": "收藏",
|
||||
"Favorite pages for easy access": "收藏頁面以便訪問",
|
||||
"Favorited": "已收藏",
|
||||
"Favorites": "我的收藏",
|
||||
"Find 0 result": "發現 0 個結果",
|
||||
"Find results": "發現 {{number}} 個結果",
|
||||
"Font Style": "字形",
|
||||
"Force Sign Out": "強制登出",
|
||||
"Full width Layout": "全寬佈局",
|
||||
"General": "一般",
|
||||
"Get in touch!": "聯絡我哋!",
|
||||
"Get in touch! Join our communities": "聯絡我哋!加入我們的社群。",
|
||||
"Get in touch! Join our communities.": "聯絡我哋!加入我們的社群。",
|
||||
"Go Back": "返回",
|
||||
"Go Forward": "前進",
|
||||
"Got it": "明白了",
|
||||
"Group": "分組",
|
||||
"Group as Database": "分組為資料庫",
|
||||
"Hand": "拖放",
|
||||
"Heading": "標題 {{number}}",
|
||||
"Help and Feedback": "幫助和反饋",
|
||||
"How is AFFiNE Alpha different?": "AFFiNE Alpha 有何不同?",
|
||||
"Image": "圖像",
|
||||
"Import": "匯入",
|
||||
"Increase indent": "增加縮進",
|
||||
"Info": "資訊",
|
||||
"Info of legal": "法律資訊",
|
||||
"Inline code": "內聯代碼",
|
||||
"Invite": "邀請",
|
||||
"Invite Members": "邀請成員",
|
||||
"Invite placeholder": "搜尋郵件(只支援 Gmail)",
|
||||
"It takes up little space on your device": "這只佔用較小存儲空間。",
|
||||
"It takes up little space on your device.": "這只佔用較小存儲空間。",
|
||||
"It takes up more space on your device": "這將佔用更多存儲空間。",
|
||||
"It takes up more space on your device.": "這將佔用更多存儲空間。",
|
||||
"Italic": "斜體",
|
||||
"Joined Workspace": "加入的 Workspace",
|
||||
"Jump to": "跳轉到",
|
||||
"Keyboard Shortcuts": "鍵盤快捷鍵",
|
||||
"Leave": "離開",
|
||||
"Leave Workspace": "離開 Workspace",
|
||||
"Leave Workspace Description": "離開後,您將無法再訪問此 Workspace 的內容。",
|
||||
"Link": "超連結(帶有所選文字)",
|
||||
"Loading": "載入中⋯⋯",
|
||||
"Local Workspace": "本機 Workspace",
|
||||
"Local Workspace Description": "所有數據都存儲在當前設備上。 您可以為此 Workspace 啓用 AFFiNE Cloud,以保持數據與雲同步。",
|
||||
"Markdown Syntax": "Markdown 語法",
|
||||
"Member": "成員",
|
||||
"Member has been removed": "{{name}} 已被移除。",
|
||||
"Members": "成員",
|
||||
"Members hint": "在這裡管理成員,透過電子郵件邀請新成員。",
|
||||
"Move Down": "下移",
|
||||
"Move Up": "上移",
|
||||
"Move folder": "移動資料夾",
|
||||
"Move folder hint": "選取新的檔案位置",
|
||||
"Move folder success": "移動資料夾成功",
|
||||
"Move page to": "將頁面移動到⋯⋯",
|
||||
"Move page to...": "將頁面移動到⋯⋯",
|
||||
"Move to": "移至",
|
||||
"Move to Trash": "移至廢紙簍",
|
||||
"Moved to Trash": "已移至廢紙簍",
|
||||
"My Workspaces": "我的 Workspace",
|
||||
"Name Your Workspace": "為 Workspace 命名",
|
||||
"NativeTitleBar": "原生標題列",
|
||||
"Navigation Path": "導航路徑",
|
||||
"New Keyword Page": "新建 “{{query}}” 頁面",
|
||||
"New Page": "新頁面",
|
||||
"New Workspace": "新建 Workspace",
|
||||
"New version is ready": "新版本已準備就緒",
|
||||
"No item": "無項目",
|
||||
"Non-Gmail": "不支援非 Gmail",
|
||||
"None yet": "暫未",
|
||||
"Not now": "稍後",
|
||||
"Note": "筆記",
|
||||
"Official Website": "官方網站",
|
||||
"Open Workspace Settings": "打開 Workspace 設定",
|
||||
"Open folder": "打開資料夾",
|
||||
"Open folder hint": "檢查存儲資料夾的位置。",
|
||||
"Open in new tab": "在新標籤頁中打開",
|
||||
"Organize pages to build knowledge": "整理頁面以構建知識庫",
|
||||
"Owner": "擁有者",
|
||||
"Page": "頁面",
|
||||
"Paper": "文檔",
|
||||
"Pen": "筆",
|
||||
"Pending": "待定",
|
||||
"Permanently deleted": "已永久刪除",
|
||||
"Pivots": "樞紐",
|
||||
"Placeholder of delete workspace": "請鍵入 Workspace 名稱以確認",
|
||||
"Please make sure you are online": "請確保您在線",
|
||||
"Privacy": "隱私",
|
||||
"Publish": "發佈",
|
||||
"Publish to web": "發佈到網絡",
|
||||
"Published Description": "此 Workspace 已發佈到網絡,所有人均可透過連結查看內容。",
|
||||
"Published hint": "訪問者可透過提供的連結查看內容。",
|
||||
"Published to Web": "已發佈到網絡",
|
||||
"Publishing": "發佈到網絡需要 AFFiNE Cloud 服務。",
|
||||
"Publishing Description": "發佈到網絡後,所有人均可透過連結查看內容。",
|
||||
"Quick Search": "快速搜尋",
|
||||
"Quick search": "快速搜尋",
|
||||
"Quick search placeholder": "快速搜尋⋯⋯",
|
||||
"Quick search placeholder2": "在 {{workspace}} 中搜尋",
|
||||
"RFP": "頁面可在樞紐中自由添加或刪除,但仍可從「所有頁面」訪問。",
|
||||
"Recent": "最近",
|
||||
"Redo": "重做",
|
||||
"Reduce indent": "減少縮進",
|
||||
"Remove from Pivots": "從樞紐中刪除",
|
||||
"Remove from favorites": "從我的收藏中刪除",
|
||||
"Remove from workspace": "從 Workspace 中刪除",
|
||||
"Remove special filter": "移除特殊篩選器",
|
||||
"Removed from Favorites": "已從我的收藏中刪除",
|
||||
"Rename": "重新命名",
|
||||
"Restart Install Client Update": "重啟以安裝更新",
|
||||
"Restore it": "恢復它",
|
||||
"Retain cached cloud data": "保留緩衝的雲數據",
|
||||
"Retain local cached data": "保留本機緩衝數據",
|
||||
"Save": "保存",
|
||||
"Save as New Collection": "另存為新收藏集",
|
||||
"Saved then enable AFFiNE Cloud": "所有修訂已儲存在本機,點按以啟用 AFFiNE Cloud。",
|
||||
"Select": "選擇",
|
||||
"Select All": "全選",
|
||||
"Set a Workspace name": "為 Workspace 命名",
|
||||
"Set database location": "設定資料庫位置",
|
||||
"Set up an AFFiNE account to sync data": "設定 AFFiNE 帳戶以同步數據",
|
||||
"Settings": "設置",
|
||||
"Shape": "圖形",
|
||||
"Share Menu Public Workspace Description1": "邀請他人加入 Workshop 或將其發佈到網絡。",
|
||||
"Share Menu Public Workspace Description2": "當前 Workspace 已作為公共 Workspace 發佈到網絡。",
|
||||
"Share with link": "透過連結分享",
|
||||
"Shared Pages": "已分享頁面",
|
||||
"Shared Pages Description": "公開分享頁面需要 AFFiNE Cloud 服務。",
|
||||
"Shared Pages In Public Workspace Description": "整個 Workspace 已在網絡發布,可透過<1> Workspace 設置</1>進行編輯。",
|
||||
"Shortcuts": "快速鍵",
|
||||
"Sidebar": "側欄",
|
||||
"Sign in": "登入 AFFiNE Cloud",
|
||||
"Sign in and Enable": "登入並啟用",
|
||||
"Sign out": "登出",
|
||||
"Sign out description": "登出將使未同步內容丟失。",
|
||||
"Skip": "略過",
|
||||
"Start Week On Monday": "每週從周一開始",
|
||||
"Stay logged out": "保持登出狀態",
|
||||
"Sticky": "Memo紙",
|
||||
"Stop publishing": "中止發佈",
|
||||
"Storage": "儲存",
|
||||
"Storage Folder": "存儲資料夾",
|
||||
"Storage and Export": "存儲和匯出",
|
||||
"Straight Connector": "直線連接",
|
||||
"Strikethrough": "刪除線",
|
||||
"Successfully deleted": "已成功刪除",
|
||||
"Switch": "開閂掣",
|
||||
"Sync": "同步",
|
||||
"Sync across devices with AFFiNE Cloud": "使用 AFFiNE Cloud 跨設備同步",
|
||||
"Synced with AFFiNE Cloud": "AFFiNE Cloud 同步完成",
|
||||
"Tags": "標籤",
|
||||
"Terms of Use": "使用條款",
|
||||
"Text": "文本",
|
||||
"Theme": "主題",
|
||||
"Title": "標題",
|
||||
"Trash": "廢紙簍",
|
||||
"TrashButtonGroupDescription": "刪除後,您將無法撤消此操作。您確認嗎?",
|
||||
"TrashButtonGroupTitle": "永久刪除",
|
||||
"UNKNOWN_ERROR": "未知錯誤",
|
||||
"Underline": "下劃線",
|
||||
"Undo": "撤銷",
|
||||
"Ungroup": "取消分組",
|
||||
"Unpin": "取消固定",
|
||||
"Unpublished hint": "發布到網絡後,訪問者可透過提供的連結查看內容。",
|
||||
"Untitled": "未命名",
|
||||
"Update Available": "更新可用",
|
||||
"Update Collection": "更新收藏集",
|
||||
"Update workspace name success": "成功更新 Workspace 名稱",
|
||||
"Updated": "更新時間",
|
||||
"Upload": "上傳",
|
||||
"Use on current device only": "僅在本機使用",
|
||||
"Users": "使用者",
|
||||
"Version": "版本",
|
||||
"View Navigation Path": "查看導航路徑",
|
||||
"Wait for Sync": "等待同步",
|
||||
"Window frame style": "視窗樣式",
|
||||
"Workspace Avatar": "Workspace 頭像",
|
||||
"Workspace Icon": "Workspace 圖示",
|
||||
"Workspace Name": "Workspace 名稱",
|
||||
"Workspace Not Found": "未找到 Workspace",
|
||||
"Workspace Owner": "Workspace 擁有者",
|
||||
"Workspace Profile": "Workspace 配置檔",
|
||||
"Workspace Settings": "Workspace 設定",
|
||||
"Workspace Settings with name": "{{name}} 的設定",
|
||||
"Workspace Type": "Workspace 類型",
|
||||
"Workspace database storage description": "選擇欲創建 Workspace 之位置。預設下,Workspace 數據存儲在本機。",
|
||||
"Workspace description": "Workspace 是您的虛擬空間,無論對於個人或是團隊,均可用於引用、創建與規劃。",
|
||||
"Workspace saved locally": "{{name}} 已保存在本機",
|
||||
"You cannot delete the last workspace": "您不能刪除僅剩的 Workspace",
|
||||
"Zoom in": "放大",
|
||||
"Zoom out": "縮小",
|
||||
"Zoom to 100%": "縮放至 100%",
|
||||
"Zoom to fit": "縮放至適當尺寸",
|
||||
"all": "全部",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.description": "定期自動檢查更新。",
|
||||
"com.affine.aboutAFFiNE.autoCheckUpdate.title": "自動檢查更新",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.description": "自動下載更新(到本機)。",
|
||||
"com.affine.aboutAFFiNE.autoDownloadUpdate.title": "自動下載更新",
|
||||
"com.affine.aboutAFFiNE.changelog.description": "查看 AFFiNE 更新日誌。",
|
||||
"com.affine.aboutAFFiNE.changelog.title": "探索 What's new",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.description": "新版本已準備就緒",
|
||||
"com.affine.aboutAFFiNE.checkUpdate.title": "檢查更新",
|
||||
"com.affine.aboutAFFiNE.community.title": "社群",
|
||||
"com.affine.aboutAFFiNE.contact.community": "AFFiNE 社群",
|
||||
"com.affine.aboutAFFiNE.contact.title": "聯絡我哋",
|
||||
"com.affine.aboutAFFiNE.contact.website": "官方網站",
|
||||
"com.affine.aboutAFFiNE.legal.privacy": "隱私",
|
||||
"com.affine.aboutAFFiNE.legal.title": "法律資訊",
|
||||
"com.affine.aboutAFFiNE.legal.tos": "使用條款",
|
||||
"com.affine.aboutAFFiNE.subtitle": "關於 AFFiNE 的資訊",
|
||||
"com.affine.aboutAFFiNE.title": "關於 AFFiNE",
|
||||
"com.affine.aboutAFFiNE.version.app": "App 版本",
|
||||
"com.affine.aboutAFFiNE.version.editor.title": "編輯器版本",
|
||||
"com.affine.aboutAFFiNE.version.title": "版本",
|
||||
"com.affine.appearanceSettings.clientBorder.description": "訂製用戶端外觀。",
|
||||
"com.affine.appearanceSettings.clientBorder.title": "用戶端邊框樣式",
|
||||
"com.affine.appearanceSettings.color.description": "選擇你的配色",
|
||||
"com.affine.appearanceSettings.color.title": "配色",
|
||||
"com.affine.appearanceSettings.date.title": "日期",
|
||||
"com.affine.appearanceSettings.dateFormat.description": "訂製你的日期樣式",
|
||||
"com.affine.appearanceSettings.dateFormat.title": "日期格式",
|
||||
"com.affine.appearanceSettings.font.description": "選擇你的字體風格",
|
||||
"com.affine.appearanceSettings.font.title": "字形",
|
||||
"com.affine.appearanceSettings.fullWidth.description": "頁面內內容的最大顯示量。",
|
||||
"com.affine.appearanceSettings.fullWidth.title": "全寬佈局",
|
||||
"com.affine.appearanceSettings.language.description": "選擇介面語言。",
|
||||
"com.affine.appearanceSettings.language.title": "外觀語言",
|
||||
"com.affine.appearanceSettings.noisyBackground.description": "在側欄背景使用雜訊效果。",
|
||||
"com.affine.appearanceSettings.noisyBackground.title": "側欄背景雜訊效果",
|
||||
"com.affine.appearanceSettings.sidebar.title": "側欄",
|
||||
"com.affine.appearanceSettings.startWeek.description": "預設下一星期的第一日為週日。",
|
||||
"com.affine.appearanceSettings.startWeek.title": "每週從周一開始",
|
||||
"com.affine.appearanceSettings.subtitle": "訂製你的 AFFiNE 外觀",
|
||||
"com.affine.appearanceSettings.theme.title": "主題",
|
||||
"com.affine.appearanceSettings.title": "外觀設定",
|
||||
"com.affine.appearanceSettings.translucentUI.description": "在側欄使用透明效果。",
|
||||
"com.affine.appearanceSettings.translucentUI.title": "側欄半透明用戶介面",
|
||||
"com.affine.appearanceSettings.windowFrame.description": "定製 Windows 用戶端外觀。",
|
||||
"com.affine.appearanceSettings.windowFrame.frameless": "無框",
|
||||
"com.affine.appearanceSettings.windowFrame.NativeTitleBar": "原生標題列",
|
||||
"com.affine.appearanceSettings.windowFrame.title": "視窗樣式",
|
||||
"com.affine.appUpdater.downloading": "下載中",
|
||||
"com.affine.appUpdater.installUpdate": "重啟以安裝更新",
|
||||
"com.affine.appUpdater.openDownloadPage": "打開下載頁面",
|
||||
"com.affine.appUpdater.updateAvailable": "更新可用",
|
||||
"com.affine.appUpdater.whatsNew": "探索 What's new!",
|
||||
"com.affine.backButton": "回到主頁",
|
||||
"com.affine.banner.content": "此演示有限。<1>下載 AFFiNE 客戶端</1>以獲取最新功能和表現。",
|
||||
"com.affine.brand.affineCloud": "\nAFFiNE Cloud",
|
||||
"com.affine.cloudTempDisable.description": "我們正在升級 AFFiNE Cloud 服務,客戶端暫時不可用。 如果您希望隨時了解進度並收到可用性通知,您可以填寫我們的<1>表單</1>。",
|
||||
"com.affine.cloudTempDisable.title": "AFFiNE Cloud 正進行升級。",
|
||||
"com.affine.collection-bar.action.tooltip.delete": "刪除",
|
||||
"com.affine.collection-bar.action.tooltip.edit": "編輯",
|
||||
"com.affine.collection-bar.action.tooltip.pin": "固定到側欄",
|
||||
"com.affine.collection-bar.action.tooltip.unpin": "取消固定",
|
||||
"com.affine.collectionBar.backToAll": "回到全部",
|
||||
"com.affine.confirmModal.button.cancel": "取消",
|
||||
"com.affine.currentYear": "本年度",
|
||||
"com.affine.deleteLeaveWorkspace.description": "從本機刪除 Workspace,並可選擇刪除所有數據。",
|
||||
"com.affine.deleteLeaveWorkspace.leave": "離開 Workspace",
|
||||
"com.affine.draw_with_a_blank_whiteboard": "使用空白白板繪圖",
|
||||
"com.affine.earlier": "早些時候",
|
||||
"com.affine.edgelessMode": "無界模式",
|
||||
"com.affine.editCollection.button.cancel": "取消",
|
||||
"com.affine.editCollection.button.create": "建立",
|
||||
"com.affine.editCollection.save": "保存",
|
||||
"com.affine.editCollection.saveCollection": "另存為新收藏集",
|
||||
"com.affine.editCollection.updateCollection": "更新收藏集",
|
||||
"com.affine.editorModeSwitch.tooltip": "開閂掣",
|
||||
"com.affine.emptyDesc": "仲未有頁面",
|
||||
"com.affine.enableAffineCloudModal.button.cancel": "取消",
|
||||
"com.affine.export.error.message": "請稍後再試。",
|
||||
"com.affine.export.error.title": "由於意外錯誤,匯出失敗",
|
||||
"com.affine.export.success.message": "請打開下載資料夾以檢查。",
|
||||
"com.affine.export.success.title": "匯出成功",
|
||||
"com.affine.favoritePageOperation.add": "加入收藏",
|
||||
"com.affine.favoritePageOperation.remove": "從我的收藏中刪除",
|
||||
"com.affine.filter": "篩選器",
|
||||
"com.affine.filter.after": "晚於",
|
||||
"com.affine.filter.before": "早於",
|
||||
@@ -349,76 +110,334 @@
|
||||
"com.affine.filter.true": "是",
|
||||
"com.affine.header.option.add-tag": "添加標籤",
|
||||
"com.affine.header.option.duplicate": "製作替身",
|
||||
"com.affine.helpIsland.contactUs": "聯絡我哋",
|
||||
"com.affine.helpIsland.gettingStarted": "開始使用",
|
||||
"com.affine.helpIsland.helpAndFeedback": "幫助和反饋",
|
||||
"com.affine.import_file": "支援 Markdown/Notion",
|
||||
"com.affine.inviteModal.button.cancel": "取消",
|
||||
"com.affine.keyboardShortcuts.appendDailyNote": "附加到隨筆",
|
||||
"com.affine.keyboardShortcuts.bodyText": "正文",
|
||||
"com.affine.keyboardShortcuts.bold": "粗體",
|
||||
"com.affine.keyboardShortcuts.cancel": "取消",
|
||||
"com.affine.keyboardShortcuts.codeBlock": "代碼塊",
|
||||
"com.affine.keyboardShortcuts.curveConnector": "曲線連接",
|
||||
"com.affine.keyboardShortcuts.divider": "分割線",
|
||||
"com.affine.keyboardShortcuts.elbowedConnector": "彎曲連接器",
|
||||
"com.affine.keyboardShortcuts.expandOrCollapseSidebar": "展開/收起邊欄",
|
||||
"com.affine.keyboardShortcuts.goBack": "返回",
|
||||
"com.affine.keyboardShortcuts.goForward": "前進",
|
||||
"com.affine.keyboardShortcuts.group": "分組",
|
||||
"com.affine.keyboardShortcuts.groupDatabase": "分組為資料庫",
|
||||
"com.affine.keyboardShortcuts.hand": "拖放",
|
||||
"com.affine.keyboardShortcuts.heading": "標題 {{number}}",
|
||||
"com.affine.keyboardShortcuts.image": "圖像",
|
||||
"com.affine.keyboardShortcuts.increaseIndent": "增加縮進",
|
||||
"com.affine.keyboardShortcuts.inlineCode": "內聯代碼",
|
||||
"com.affine.keyboardShortcuts.italic": "斜體",
|
||||
"com.affine.keyboardShortcuts.link": "超連結(帶有所選文字)",
|
||||
"com.affine.keyboardShortcuts.moveDown": "下移",
|
||||
"com.affine.keyboardShortcuts.moveUp": "上移",
|
||||
"com.affine.keyboardShortcuts.newPage": "新頁面",
|
||||
"com.affine.keyboardShortcuts.note": "筆記",
|
||||
"com.affine.keyboardShortcuts.pen": "筆",
|
||||
"com.affine.keyboardShortcuts.quickSearch": "快速搜尋",
|
||||
"com.affine.keyboardShortcuts.redo": "重做",
|
||||
"com.affine.keyboardShortcuts.reduceIndent": "減少縮進",
|
||||
"com.affine.keyboardShortcuts.select": "選擇",
|
||||
"com.affine.keyboardShortcuts.selectAll": "全選",
|
||||
"com.affine.keyboardShortcuts.shape": "圖形",
|
||||
"com.affine.keyboardShortcuts.straightConnector": "直線連接",
|
||||
"com.affine.keyboardShortcuts.strikethrough": "刪除線",
|
||||
"com.affine.keyboardShortcuts.subtitle": "快速睇返快捷鍵",
|
||||
"com.affine.keyboardShortcuts.switch": "開閂掣",
|
||||
"com.affine.keyboardShortcuts.text": "文本",
|
||||
"com.affine.keyboardShortcuts.title": "鍵盤快捷鍵",
|
||||
"com.affine.keyboardShortcuts.underline": "下劃線",
|
||||
"com.affine.keyboardShortcuts.undo": "撤銷",
|
||||
"com.affine.keyboardShortcuts.unGroup": "取消分組",
|
||||
"com.affine.keyboardShortcuts.zoomIn": "放大",
|
||||
"com.affine.keyboardShortcuts.zoomOut": "縮小",
|
||||
"com.affine.keyboardShortcuts.zoomTo100": "縮放至 100%",
|
||||
"com.affine.keyboardShortcuts.zoomToFit": "縮放至適當尺寸",
|
||||
"com.affine.last30Days": "最近 30 天",
|
||||
"com.affine.last7Days": "最近 7 天",
|
||||
"com.affine.lastMonth": "上個月",
|
||||
"com.affine.lastWeek": "上個星期",
|
||||
"com.affine.lastYear": "去年",
|
||||
"com.affine.moveToTrash.confirmModal.description": " {{title}} 將被移至廢紙簍",
|
||||
"com.affine.moveToTrash.confirmModal.title": "確認刪除頁面?",
|
||||
"com.affine.moveToTrash.title": "移至廢紙簍",
|
||||
"com.affine.nameWorkspace.button.cancel": "取消",
|
||||
"com.affine.nameWorkspace.button.create": "建立",
|
||||
"com.affine.nameWorkspace.description": "Workspace 是您的虛擬空間,無論對於個人或是團隊,均可用於引用、創建與規劃。",
|
||||
"com.affine.nameWorkspace.placeholder": "為 Workspace 命名",
|
||||
"com.affine.nameWorkspace.title": "為 Workspace 命名",
|
||||
"com.affine.new_edgeless": "新的無界頁面",
|
||||
"com.affine.new_import": "匯入",
|
||||
"com.affine.notFoundPage.title": "404 - 搵唔到搜尋的網頁",
|
||||
"com.affine.onboarding.title1": "超合併白板和文檔",
|
||||
"com.affine.onboarding.title2": "直觀而強大的基於塊的編輯",
|
||||
"com.affine.onboarding.videoDescription1": "在頁面模式(用於結構化文檔創建)和白板模式(用於自由形式直觀地表達創意)之間輕鬆切換。",
|
||||
"com.affine.onboarding.videoDescription2": "使用模組化介面拖放文本、圖像和其他內容塊,輕鬆創建結構化文檔。",
|
||||
"com.affine.pageMode": "頁面模式",
|
||||
"com.affine.settings.about.message": "關於 AFFiNE 的資訊",
|
||||
"com.affine.settings.about.update.check.message": "定期自動檢查更新。",
|
||||
"com.affine.settings.about.update.download.message": "自動下載更新(到本機)。",
|
||||
"com.affine.openPageOperation.newTab": "在新標籤頁中打開",
|
||||
"com.affine.pageMode.all": "全部",
|
||||
"com.affine.pageMode.edgeless": "無界",
|
||||
"com.affine.pageMode.page": "頁面",
|
||||
"com.affine.publicLinkDisableModal.button.cancel": "取消",
|
||||
"com.affine.publicLinkDisableModal.button.disable": "停用",
|
||||
"com.affine.publicLinkDisableModal.description": "停用此公開連結,將阻止擁有連結者登入此頁面。",
|
||||
"com.affine.publicLinkDisableModal.title": "確認停用公開連結?",
|
||||
"com.affine.rootAppSidebar.collections": "收藏集",
|
||||
"com.affine.rootAppSidebar.favorites": "我的收藏",
|
||||
"com.affine.rootAppSidebar.others": "其他",
|
||||
"com.affine.setDBLocation.button.customize": "定製",
|
||||
"com.affine.setDBLocation.button.defaultLocation": "預設位置",
|
||||
"com.affine.setDBLocation.description": "選擇欲創建 Workspace 之位置。預設下,Workspace 數據存儲在本機。",
|
||||
"com.affine.setDBLocation.title": "設定資料庫位置",
|
||||
"com.affine.setDBLocation.tooltip.defaultLocation": "預設下将存儲到 {{location}}",
|
||||
"com.affine.setSyncingMode.button.continue": "繼續",
|
||||
"com.affine.setSyncingMode.cloud": "使用 AFFiNE Cloud 跨設備同步",
|
||||
"com.affine.setSyncingMode.deviceOnly": "僅在本機使用",
|
||||
"com.affine.setSyncingMode.title.added": "匯入成功",
|
||||
"com.affine.setSyncingMode.title.created": "建立成功",
|
||||
"com.affine.settings.appearance": "外觀",
|
||||
"com.affine.settings.appearance.border-style-description": "訂製用戶端外觀。",
|
||||
"com.affine.settings.appearance.date-format-description": "訂製你的日期樣式",
|
||||
"com.affine.settings.appearance.full-width-description": "頁面內內容的最大顯示量。",
|
||||
"com.affine.settings.appearance.language-description": "選擇介面語言。",
|
||||
"com.affine.settings.appearance.start-week-description": "預設下一星期的第一日為週日。",
|
||||
"com.affine.settings.appearance.window-frame-description": "定製 Windows 用戶端外觀。",
|
||||
"com.affine.settings.auto-check-description": "若啟用,將定期自動檢測新版本。",
|
||||
"com.affine.settings.auto-download-description": "若啟用,將自動下載新版本。",
|
||||
"com.affine.settings.member-tooltip": "啟用 AFFiNE Cloud 以與他人協作",
|
||||
"com.affine.settings.noise-style": "側欄背景雜訊效果",
|
||||
"com.affine.settings.noise-style-description": "在側欄背景使用雜訊效果。",
|
||||
"com.affine.settings.remove-workspace": "刪除 Workspace",
|
||||
"com.affine.settings.remove-workspace-description": "從本機刪除 Workspace,並可選擇刪除所有數據。",
|
||||
"com.affine.settings.storage.db-location.change-hint": "點按以更改儲存位置。",
|
||||
"com.affine.settings.storage.description": "檢查或更改存儲位置",
|
||||
"com.affine.settings.storage.description-alt": "檢查或更改存儲位置。按下路徑以編輯。",
|
||||
"com.affine.settings.suggestion": "需要更多定製選項?您可以在社區中提意見。",
|
||||
"com.affine.settings.translucent-style": "側欄半透明用戶介面",
|
||||
"com.affine.settings.translucent-style-description": "在側欄使用透明效果。",
|
||||
"com.affine.settings.workspace": "Workspace",
|
||||
"com.affine.settings.workspace.description": "您可在此自訂您的 Workspace",
|
||||
"com.affine.settings.workspace.not-owner": "只有擁有者才能編輯 Workspace 頭像與名稱。 更改將向所有人顯示。",
|
||||
"com.affine.settings.workspace.publish-tooltip": "啟用 AFFiNE Cloud 以發布此 Workspace",
|
||||
"com.affine.settings.workspace.storage.tip": "點按以更改儲存位置。",
|
||||
"com.affine.settingSidebar.settings.general": "一般",
|
||||
"com.affine.settingSidebar.settings.workspace": "Workspace",
|
||||
"com.affine.settingSidebar.title": "設置",
|
||||
"com.affine.shortcutsTitle.edgeless": "無界",
|
||||
"com.affine.shortcutsTitle.general": "一般",
|
||||
"com.affine.shortcutsTitle.markdownSyntax": "Markdown 語法",
|
||||
"com.affine.shortcutsTitle.page": "頁面",
|
||||
"com.affine.sidebarSwitch.collapse": "收起側欄",
|
||||
"com.affine.sidebarSwitch.expand": "展開側欄",
|
||||
"com.affine.themeSettings.dark": "深色",
|
||||
"com.affine.themeSettings.light": "淺色",
|
||||
"com.affine.themeSettings.system": "跟隨系統",
|
||||
"com.affine.toastMessage.addedFavorites": "已收藏",
|
||||
"com.affine.toastMessage.edgelessMode": "無界模式",
|
||||
"com.affine.toastMessage.movedTrash": "已移至廢紙簍",
|
||||
"com.affine.toastMessage.pageMode": "頁面模式",
|
||||
"com.affine.toastMessage.permanentlyDeleted": "已永久刪除",
|
||||
"com.affine.toastMessage.removedFavorites": "已從我的收藏中刪除",
|
||||
"com.affine.toastMessage.restored": "{{title}} 已恢復",
|
||||
"com.affine.toastMessage.successfullyDeleted": "已成功刪除",
|
||||
"com.affine.today": "今天",
|
||||
"com.affine.updater.downloading": "下載中",
|
||||
"com.affine.updater.open-download-page": "打開下載頁面",
|
||||
"com.affine.updater.restart-to-update": "重啟以安裝更新",
|
||||
"com.affine.updater.update-available": "更新可用",
|
||||
"com.affine.trashOperation.delete": "刪除",
|
||||
"com.affine.trashOperation.delete.description": "刪除後,您將無法撤消此操作。您確認嗎?",
|
||||
"com.affine.trashOperation.delete.title": "永久刪除",
|
||||
"com.affine.trashOperation.deletePermanently": "永久刪除",
|
||||
"com.affine.trashOperation.restoreIt": "恢復它",
|
||||
"com.affine.workspace.cannot-delete": "您不能刪除僅剩的 Workspace",
|
||||
"com.affine.workspaceDelete.button.cancel": "取消",
|
||||
"com.affine.workspaceDelete.button.delete": "刪除",
|
||||
"com.affine.workspaceDelete.description": "刪除 <1>{{workspace}}</1> ,此步驟無法重做,全部內容將丟失。",
|
||||
"com.affine.workspaceDelete.description2": "刪除<1>{{workspace}}</1> ,將同時刪除本機同雲端資料。此步驟無法重做,請慎重考慮。",
|
||||
"com.affine.workspaceDelete.placeholder": "請鍵入 Workspace 名稱以確認",
|
||||
"com.affine.workspaceDelete.title": "刪除 Workspace",
|
||||
"com.affine.workspaceLeave.button.cancel": "取消",
|
||||
"com.affine.workspaceLeave.button.leave": "離開",
|
||||
"com.affine.workspaceLeave.description": "離開後,您將無法再訪問此 Workspace 的內容。",
|
||||
"com.affine.workspaceSubPath.all": "所有頁面",
|
||||
"com.affine.workspaceSubPath.trash": "廢紙簍",
|
||||
"com.affine.workspaceType.cloud": "\nCloud Workspace",
|
||||
"com.affine.workspaceType.joined": "加入的 Workspace",
|
||||
"com.affine.workspaceType.local": "本機 Workspace",
|
||||
"com.affine.workspaceType.offline": "離線時可用",
|
||||
"com.affine.write_with_a_blank_page": "在空白頁書寫",
|
||||
"com.affine.yesterday": "昨天",
|
||||
"Confirm": "確認",
|
||||
"Connector": "連接",
|
||||
"Continue with Google": "以 Google 登入",
|
||||
"Convert to ": "轉換為",
|
||||
"Copied link to clipboard": "複製連結到剪貼簿",
|
||||
"Copy": "複製",
|
||||
"Copy Link": "複製連結",
|
||||
"core": "核心",
|
||||
"dark": "深色",
|
||||
"Create": "建立",
|
||||
"Create Or Import": "建立或匯入",
|
||||
"Create Shared Link Description": "建立一個可共享連結。",
|
||||
"Create your own workspace": "建立你的 workspace",
|
||||
"Created": "建立時間",
|
||||
"Created with": "建立於",
|
||||
"Data sync mode": "數據同步模式",
|
||||
"DB_FILE_ALREADY_LOADED": "數據庫已載入",
|
||||
"DB_FILE_INVALID": "無效數據庫文檔",
|
||||
"DB_FILE_MIGRATION_FAILED": "數據庫併入失敗",
|
||||
"DB_FILE_PATH_INVALID": "數據庫路徑無效",
|
||||
"Delete": "刪除",
|
||||
"Delete Member?": "刪除成員?",
|
||||
"Delete Workspace Label Hint": "刪除此 Workspace 後,所有內容將永久清除,任何人都無法恢復。",
|
||||
"Delete Workspace placeholder": "鍵入 “Delete” 以確認",
|
||||
"Disable": "停用",
|
||||
"Disable Public Link": "停用公開連結",
|
||||
"Disable Public Sharing": "停用公開分享",
|
||||
"Download all data": "下載全部數據",
|
||||
"Download core data": "下載核心數據",
|
||||
"Download data": "下載 {{CoreOrAll}} 數據",
|
||||
"Download data Description1": "這將佔用更多存儲空間。",
|
||||
"Download data Description2": "這只佔用較小存儲空間。",
|
||||
"Edgeless": "無界",
|
||||
"Edit": "編輯",
|
||||
"Edit Filter": "編輯篩選器",
|
||||
"emptyAllPages": "點擊<1>$t(New Page)</1>按鈕創建您的第一個頁面。",
|
||||
"emptyAllPagesClient": "點擊<1>$t(New Page)</1>或按下<3>{{shortcut}}</3>按鈕創建您的第一個頁面。",
|
||||
"emptyFavorite": "按下添加到我的收藏,頁面將顯示在此處。",
|
||||
"emptySharedPages": "共用頁面將顯示在此處。",
|
||||
"emptyTrash": "按下添加到廢紙簍,頁面將顯示在此處。",
|
||||
"frameless": "無框",
|
||||
"Enable": "啟用",
|
||||
"Enable AFFiNE Cloud": "啟用 AFFiNE Cloud",
|
||||
"Enable AFFiNE Cloud Description": "啓用後 Workspace 數據將透過 AFFiNE Cloud 備份及同步。",
|
||||
"Enable cloud hint": "以下功能依賴於 AFFiNE Cloud。 所有數據都存儲在當前設備上。 您可以為此 Workspace 啓用 AFFiNE Cloud,以保持數據與雲同步。",
|
||||
"Enabled success": "啟用成功",
|
||||
"Exclude from filter": "從篩選器中排除",
|
||||
"Export": "匯出",
|
||||
"Export AFFiNE backup file": "匯出 AFFiNE 備份檔",
|
||||
"Export Description": "您可以匯出整個 Workspace 數據進行備份,匯出的數據亦可重新匯入。",
|
||||
"Export Shared Pages Description": "下載此頁的靜態副本以與他人共享。",
|
||||
"Export success": "匯出成功",
|
||||
"Export to HTML": "匯出為 HTML",
|
||||
"Export to Markdown": "匯出為 Markdown",
|
||||
"Export to PDF": "匯出為 PDF",
|
||||
"Export to PNG": "匯出為 PNG",
|
||||
"Export Workspace": "匯出 Workspace <1>{{workspace}}</1> 即將推出",
|
||||
"Failed to publish workspace": "Workspace 發佈失敗",
|
||||
"Favorite": "收藏",
|
||||
"Favorite pages for easy access": "收藏頁面以便訪問",
|
||||
"Favorited": "已收藏",
|
||||
"FILE_ALREADY_EXISTS": "檔已存在",
|
||||
"Find 0 result": "發現 0 個結果",
|
||||
"Find results": "發現 {{number}} 個結果",
|
||||
"Force Sign Out": "強制登出",
|
||||
"Get in touch!": "聯絡我哋!",
|
||||
"Get in touch! Join our communities": "聯絡我哋!加入我們的社群。",
|
||||
"Get in touch! Join our communities.": "聯絡我哋!加入我們的社群。",
|
||||
"Got it": "明白了",
|
||||
"How is AFFiNE Alpha different?": "AFFiNE Alpha 有何不同?",
|
||||
"Import": "匯入",
|
||||
"Info": "資訊",
|
||||
"Invite": "邀請",
|
||||
"Invite Members": "邀請成員",
|
||||
"Invite placeholder": "搜尋郵件(只支援 Gmail)",
|
||||
"is a Cloud Workspace": "是一個 Cloud Workspace。",
|
||||
"is a Local Workspace": "是本機 Workspace。",
|
||||
"light": "淺色",
|
||||
"It takes up little space on your device": "這只佔用較小存儲空間。",
|
||||
"It takes up little space on your device.": "這只佔用較小存儲空間。",
|
||||
"It takes up more space on your device": "這將佔用更多存儲空間。",
|
||||
"It takes up more space on your device.": "這將佔用更多存儲空間。",
|
||||
"Jump to": "跳轉到",
|
||||
"Loading": "載入中⋯⋯",
|
||||
"Local Workspace Description": "所有數據都存儲在當前設備上。 您可以為此 Workspace 啓用 AFFiNE Cloud,以保持數據與雲同步。",
|
||||
"login success": "登入成功",
|
||||
"Member": "成員",
|
||||
"Member has been removed": "{{name}} 已被移除。",
|
||||
"Members": "成員",
|
||||
"Members hint": "在這裡管理成員,透過電子郵件邀請新成員。",
|
||||
"mobile device": "看起來您正在手提電話上流覽。",
|
||||
"mobile device description": "我們仍在適配手提電話,現階段建議您使用電腦。",
|
||||
"others": "其他",
|
||||
"Move folder": "移動資料夾",
|
||||
"Move folder hint": "選取新的檔案位置",
|
||||
"Move folder success": "移動資料夾成功",
|
||||
"Move page to": "將頁面移動到⋯⋯",
|
||||
"Move page to...": "將頁面移動到⋯⋯",
|
||||
"Move to": "移至",
|
||||
"Moved to Trash": "已移至廢紙簍",
|
||||
"My Workspaces": "我的 Workspace",
|
||||
"Navigation Path": "導航路徑",
|
||||
"New Keyword Page": "新建 “{{query}}” 頁面",
|
||||
"New Page": "新頁面",
|
||||
"New Workspace": "新建 Workspace",
|
||||
"No item": "無項目",
|
||||
"Non-Gmail": "不支援非 Gmail",
|
||||
"None yet": "暫未",
|
||||
"Not now": "稍後",
|
||||
"Open folder": "打開資料夾",
|
||||
"Open folder hint": "檢查存儲資料夾的位置。",
|
||||
"Open Workspace Settings": "打開 Workspace 設定",
|
||||
"Organize pages to build knowledge": "整理頁面以構建知識庫",
|
||||
"Owner": "擁有者",
|
||||
"Paper": "文檔",
|
||||
"Pending": "待定",
|
||||
"Pivots": "樞紐",
|
||||
"Please make sure you are online": "請確保您在線",
|
||||
"Publish": "發佈",
|
||||
"Publish to web": "發佈到網絡",
|
||||
"Published Description": "此 Workspace 已發佈到網絡,所有人均可透過連結查看內容。",
|
||||
"Published hint": "訪問者可透過提供的連結查看內容。",
|
||||
"Published to Web": "已發佈到網絡",
|
||||
"Publishing": "發佈到網絡需要 AFFiNE Cloud 服務。",
|
||||
"Publishing Description": "發佈到網絡後,所有人均可透過連結查看內容。",
|
||||
"Quick search": "快速搜尋",
|
||||
"Quick search placeholder": "快速搜尋⋯⋯",
|
||||
"Quick search placeholder2": "在 {{workspace}} 中搜尋",
|
||||
"Recent": "最近",
|
||||
"recommendBrowser": "我們建議使用 <1>Chrome</1> 瀏覽器以獲得最佳體驗。",
|
||||
"restored": "{{title}} 已恢復",
|
||||
"Remove from Pivots": "從樞紐中刪除",
|
||||
"Remove from workspace": "從 Workspace 中刪除",
|
||||
"Remove special filter": "移除特殊篩選器",
|
||||
"Rename": "重新命名",
|
||||
"Restart Install Client Update": "重啟以安裝更新",
|
||||
"Retain cached cloud data": "保留緩衝的雲數據",
|
||||
"Retain local cached data": "保留本機緩衝數據",
|
||||
"RFP": "頁面可在樞紐中自由添加或刪除,但仍可從「所有頁面」訪問。",
|
||||
"Saved then enable AFFiNE Cloud": "所有修訂已儲存在本機,點按以啟用 AFFiNE Cloud。",
|
||||
"Set up an AFFiNE account to sync data": "設定 AFFiNE 帳戶以同步數據",
|
||||
"Share Menu Public Workspace Description1": "邀請他人加入 Workshop 或將其發佈到網絡。",
|
||||
"Share Menu Public Workspace Description2": "當前 Workspace 已作為公共 Workspace 發佈到網絡。",
|
||||
"Share with link": "透過連結分享",
|
||||
"Shared Pages": "已分享頁面",
|
||||
"Shared Pages Description": "公開分享頁面需要 AFFiNE Cloud 服務。",
|
||||
"Shared Pages In Public Workspace Description": "整個 Workspace 已在網絡發布,可透過<1> Workspace 設置</1>進行編輯。",
|
||||
"Shortcuts": "快速鍵",
|
||||
"Sign in": "登入 AFFiNE Cloud",
|
||||
"Sign in and Enable": "登入並啟用",
|
||||
"Sign out": "登出",
|
||||
"Sign out description": "登出將使未同步內容丟失。",
|
||||
"Skip": "略過",
|
||||
"Stay logged out": "保持登出狀態",
|
||||
"Sticky": "Memo紙",
|
||||
"still designed": "(此頁面仍在設計中。 )",
|
||||
"system": "跟隨系統",
|
||||
"Stop publishing": "中止發佈",
|
||||
"Storage": "儲存",
|
||||
"Storage and Export": "存儲和匯出",
|
||||
"Storage Folder": "存儲資料夾",
|
||||
"Sync": "同步",
|
||||
"Synced with AFFiNE Cloud": "AFFiNE Cloud 同步完成",
|
||||
"Tags": "標籤",
|
||||
"Title": "標題",
|
||||
"UNKNOWN_ERROR": "未知錯誤",
|
||||
"Unpin": "取消固定",
|
||||
"Unpublished hint": "發布到網絡後,訪問者可透過提供的連結查看內容。",
|
||||
"Untitled": "未命名",
|
||||
"Update Available": "更新可用",
|
||||
"Update workspace name success": "成功更新 Workspace 名稱",
|
||||
"Updated": "更新時間",
|
||||
"upgradeBrowser": "更新至最新版本 Chrome,以享有更優質的使用體驗。",
|
||||
"will be moved to Trash": " {{title}} 將被移至廢紙簍",
|
||||
"will delete member": "將刪除成員"
|
||||
"Upload": "上傳",
|
||||
"Users": "使用者",
|
||||
"View Navigation Path": "查看導航路徑",
|
||||
"Wait for Sync": "等待同步",
|
||||
"will delete member": "將刪除成員",
|
||||
"Workspace Avatar": "Workspace 頭像",
|
||||
"Workspace Icon": "Workspace 圖示",
|
||||
"Workspace Name": "Workspace 名稱",
|
||||
"Workspace Not Found": "未找到 Workspace",
|
||||
"Workspace Owner": "Workspace 擁有者",
|
||||
"Workspace Profile": "Workspace 配置檔",
|
||||
"Workspace saved locally": "{{name}} 已保存在本機",
|
||||
"Workspace Settings": "Workspace 設定",
|
||||
"Workspace Settings with name": "{{name}} 的設定",
|
||||
"Workspace Type": "Workspace 類型",
|
||||
"You cannot delete the last workspace": "您不能刪除僅剩的 Workspace"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user